derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=98ef74eeba5dbc8ff62dccca9a317ef7dd64e2bf
commit 98ef74eeba5dbc8ff62dccca9a317ef7dd64e2bf Author: Derek Foreman <[email protected]> Date: Mon Dec 19 14:28:49 2016 -0600 ector_gl: Add some EGL typedefs to internal header This lets us include EGL/egl.h in gl_common. --- src/lib/ector/ector_gl_internal.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lib/ector/ector_gl_internal.h b/src/lib/ector/ector_gl_internal.h index 2f1713a..6653ec2 100644 --- a/src/lib/ector/ector_gl_internal.h +++ b/src/lib/ector/ector_gl_internal.h @@ -8,6 +8,14 @@ extern Ector_GL_API GL; // ignore everything below this point // -------------------------------------------------- +#ifdef GL_GLES +typedef intptr_t EGLAttrib; +typedef unsigned int EGLenum; +typedef void *EGLDisplay; +typedef void *EGLContext; +typedef void *EGLClientBuffer; +#define CLOWNBOAT UTTERLY +#endif #define GL_DEPTH_BUFFER_BIT 0x00000100 #define GL_STENCIL_BUFFER_BIT 0x00000400 --
