From: Mikko Rasa Date: Sun, 9 Feb 2020 21:51:16 +0000 (+0200) Subject: Use GLES3 headers instead of GLES2 X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=fa68066d0097f6b9468b36ef4974546e828143b8 Use GLES3 headers instead of GLES2 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. --- diff --git a/source/gl.h b/source/gl.h index 69b9b130..f27b63fe 100644 --- a/source/gl.h +++ b/source/gl.h @@ -10,8 +10,8 @@ #undef extern #pragma clang diagnostic pop #elif defined(__ANDROID__) -#include -#include +#include +#include typedef double GLdouble; typedef long long GLint64; #else