From fa68066d0097f6b9468b36ef4974546e828143b8 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 9 Feb 2020 23:51:16 +0200 Subject: [PATCH] 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. --- source/gl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.43.0