summaryrefslogtreecommitdiffstats
path: root/opengl/libs/EGL/trace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'opengl/libs/EGL/trace.cpp')
-rw-r--r--opengl/libs/EGL/trace.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/opengl/libs/EGL/trace.cpp b/opengl/libs/EGL/trace.cpp
index a51b086..bac6ba8 100644
--- a/opengl/libs/EGL/trace.cpp
+++ b/opengl/libs/EGL/trace.cpp
@@ -21,8 +21,6 @@
#include <EGL/egl.h>
#include <EGL/eglext.h>
-#include <GLES/gl.h>
-#include <GLES/glext.h>
#include <cutils/log.h>
@@ -39,7 +37,8 @@ namespace android {
// ----------------------------------------------------------------------------
struct GLenumString {
- GLenum e;
+ // The GL_TIMEOUT_IGNORED "enum" doesn't fit in a GLenum, so use GLuint64
+ GLuint64 e;
const char* s;
};