mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 15:48:36 +02:00
mesa: add GL_OES_EGL_image_external to the extension list
Reviewed-by: Brian Paul <brianp@vmware.com> Acked-by: Jakob Bornecrantz <jakob@vmware.com>
This commit is contained in:
parent
1b1af84149
commit
db73264e14
2 changed files with 2 additions and 0 deletions
|
|
@ -229,6 +229,7 @@ static const struct extension extension_table[] = {
|
||||||
#if FEATURE_OES_EGL_image
|
#if FEATURE_OES_EGL_image
|
||||||
/* FIXME: Mesa expects GL_OES_EGL_image to be available in OpenGL contexts. */
|
/* 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), GL | ES1 | ES2, 2006 },
|
||||||
|
{ "GL_OES_EGL_image_external", o(OES_EGL_image_external), ES1 | ES2, 2010 },
|
||||||
#endif
|
#endif
|
||||||
{ "GL_OES_element_index_uint", o(dummy_true), ES1 | ES2, 2005 },
|
{ "GL_OES_element_index_uint", o(dummy_true), ES1 | ES2, 2005 },
|
||||||
{ "GL_OES_fbo_render_mipmap", o(EXT_framebuffer_object), ES1 | ES2, 2005 },
|
{ "GL_OES_fbo_render_mipmap", o(EXT_framebuffer_object), ES1 | ES2, 2005 },
|
||||||
|
|
|
||||||
|
|
@ -2920,6 +2920,7 @@ struct gl_extensions
|
||||||
GLboolean S3_s3tc;
|
GLboolean S3_s3tc;
|
||||||
GLboolean OES_EGL_image;
|
GLboolean OES_EGL_image;
|
||||||
GLboolean OES_draw_texture;
|
GLboolean OES_draw_texture;
|
||||||
|
GLboolean OES_EGL_image_external;
|
||||||
GLboolean extension_sentinel;
|
GLboolean extension_sentinel;
|
||||||
/** The extension string */
|
/** The extension string */
|
||||||
const GLubyte *String;
|
const GLubyte *String;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue