Module: Mesa Branch: master Commit: 592ee249a139a46168cd8e3335039ce28e8a2c39 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=592ee249a139a46168cd8e3335039ce28e8a2c39
Author: Marek Olšák <[email protected]> Date: Thu Apr 9 23:26:14 2015 +0200 mesa: add GL_OES_EGL_sync This is an empty extension whose presence means that EGL sync objects can be used with ES contexts. --- src/mesa/main/extensions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 3d4965c..9be8993 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -298,6 +298,7 @@ static const struct extension extension_table[] = { { "GL_OES_depth_texture", o(ARB_depth_texture), ES2, 2006 }, { "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_external", o(OES_EGL_image_external), ES1 | ES2, 2010 }, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
