From: Nanley Chery Date: Thu, 10 Sep 2015 17:48:46 +0000 (-0700) Subject: mesa/extensions: restrict GL_OES_EGL_image to GLES X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48961fa3ba37999a6f8fd812458b735e39604a95;p=mesa.git mesa/extensions: restrict GL_OES_EGL_image to GLES Driver vendors do this as well. The extension specification lists GLES 1.1 or 2.0 as requirements. Reviewed-by: Chad Versace Signed-off-by: Nanley Chery --- diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index b2c88c37366..767c50e28c0 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -307,8 +307,7 @@ static const struct extension extension_table[] = { { "GL_OES_depth_texture_cube_map", o(OES_depth_texture_cube_map), ES2, 2012 }, { "GL_OES_draw_texture", o(OES_draw_texture), ES1, 2004 }, { "GL_OES_EGL_sync", o(dummy_true), ES1 | ES2, 2010 }, - /* FIXME: Mesa expects GL_OES_EGL_image to be available in OpenGL contexts. */ - { "GL_OES_EGL_image", o(OES_EGL_image), GL | ES1 | ES2, 2006 }, + { "GL_OES_EGL_image", o(OES_EGL_image), ES1 | ES2, 2006 }, { "GL_OES_EGL_image_external", o(OES_EGL_image_external), ES1 | ES2, 2010 }, { "GL_OES_element_index_uint", o(dummy_true), ES1 | ES2, 2005 }, { "GL_OES_fbo_render_mipmap", o(dummy_true), ES1 | ES2, 2005 },