draw/readBuffer are available in GL 2.0 and higher on desktop

This commit is contained in:
codeanticode
2015-10-12 16:59:42 +01:00
parent 6444ee35dc
commit 851aeddf7d

View File

@@ -2193,7 +2193,7 @@ public abstract class PGL {
if (isES()) {
return version[0] >= 3;
}
return version[0] > 2;
return version[0] >= 2;
}
@@ -2202,7 +2202,7 @@ public abstract class PGL {
if (isES()) {
return version[0] >= 3;
}
return version[0] > 2;
return version[0] >= 2;
}