From d6ae44b1d05d338ee5ea43e455268b983d546a59 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Fri, 22 Jun 2018 22:40:55 +1000 Subject: [PATCH] glcontextegl: Fix android build without ES3 tokens --- gst-libs/gst/gl/egl/gstglcontext_egl.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/gl/egl/gstglcontext_egl.c b/gst-libs/gst/gl/egl/gstglcontext_egl.c index a4d015f893..e5011033c8 100644 --- a/gst-libs/gst/gl/egl/gstglcontext_egl.c +++ b/gst-libs/gst/gl/egl/gstglcontext_egl.c @@ -192,8 +192,10 @@ gst_gl_context_egl_dump_config (GstGLContextEGL * egl, EGLConfig config) conformant_values[i++] = "OpenGL ES"; if (conformant & EGL_OPENGL_ES2_BIT) conformant_values[i++] = "OpenGL ES 2.x"; - if (conformant & EGL_OPENGL_ES3_BIT) +#if defined(EGL_KHR_create_context) + if (conformant & EGL_OPENGL_ES3_BIT_KHR) conformant_values[i++] = "OpenGL ES 3.x"; +#endif if (conformant & EGL_OPENVG_BIT) conformant_values[i++] = "OpenVG"; @@ -223,8 +225,10 @@ gst_gl_context_egl_dump_config (GstGLContextEGL * egl, EGLConfig config) renderable_values[i++] = "OpenGL ES"; if (renderable & EGL_OPENGL_ES2_BIT) renderable_values[i++] = "OpenGL ES 2.x"; - if (renderable & EGL_OPENGL_ES3_BIT) +#if defined(EGL_KHR_create_context) + if (renderable & EGL_OPENGL_ES3_BIT_KHR) renderable_values[i++] = "OpenGL ES 3.x"; +#endif if (renderable & EGL_OPENVG_BIT) renderable_values[i++] = "OpenVG";