Module: Mesa Branch: master Commit: db73264e1471a594d49ca0bc397cbb6746ee1dce URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=db73264e1471a594d49ca0bc397cbb6746ee1dce
Author: Chia-I Wu <[email protected]> Date: Sun Oct 23 18:51:13 2011 +0800 mesa: add GL_OES_EGL_image_external to the extension list Reviewed-by: Brian Paul <[email protected]> Acked-by: Jakob Bornecrantz <[email protected]> --- src/mesa/main/extensions.c | 1 + src/mesa/main/mtypes.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 7a9fce8..d5a8914 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -229,6 +229,7 @@ static const struct extension extension_table[] = { #if FEATURE_OES_EGL_image /* 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_external", o(OES_EGL_image_external), ES1 | ES2, 2010 }, #endif { "GL_OES_element_index_uint", o(dummy_true), ES1 | ES2, 2005 }, { "GL_OES_fbo_render_mipmap", o(EXT_framebuffer_object), ES1 | ES2, 2005 }, diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 3f3bc4e..9a0f3cf 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2920,6 +2920,7 @@ struct gl_extensions GLboolean S3_s3tc; GLboolean OES_EGL_image; GLboolean OES_draw_texture; + GLboolean OES_EGL_image_external; GLboolean extension_sentinel; /** The extension string */ const GLubyte *String; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
