summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/extensions.c
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2015-09-10 10:48:46 -0700
committerNanley Chery <nanley.g.chery@intel.com>2015-09-15 10:00:00 -0700
commit48961fa3ba37999a6f8fd812458b735e39604a95 (patch)
treea7e069243058fcfa18bd00caf12396a3e2238376 /src/mesa/main/extensions.c
parentfe796a18319d791f3ed3865761452474b1c0477f (diff)
downloadexternal_mesa3d-48961fa3ba37999a6f8fd812458b735e39604a95.zip
external_mesa3d-48961fa3ba37999a6f8fd812458b735e39604a95.tar.gz
external_mesa3d-48961fa3ba37999a6f8fd812458b735e39604a95.tar.bz2
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 <chad.versace@intel.com> Signed-off-by: Nanley Chery <nanley.g.chery@intel.com>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r--src/mesa/main/extensions.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index b2c88c3..767c50e 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 },