]> git.tdb.fi Git - libs/gl.git/commitdiff
Use GLES3 headers instead of GLES2
authorMikko Rasa <tdb@tdb.fi>
Sun, 9 Feb 2020 21:51:16 +0000 (23:51 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 9 Feb 2020 21:51:16 +0000 (23:51 +0200)
A few constants are not available in GLES2 and would be bothersome to
introduce through a fake extension.  I'll bring back compatibility if
some relevant hardware turns out to only support GLES2.

source/gl.h

index 69b9b130adb8f537d93a1ed32c5a7655974dcec3..f27b63fe8cf68c1ff302511907be0984fa9eb9e8 100644 (file)
@@ -10,8 +10,8 @@
 #undef extern
 #pragma clang diagnostic pop
 #elif defined(__ANDROID__)
-#include <GLES2/gl2.h>
-#include <GLES2/gl2ext.h>
+#include <GLES3/gl3.h>
+#include <GLES3/gl3ext.h>
 typedef double GLdouble;
 typedef long long GLint64;
 #else