diff options
author | Ian Romanick <[email protected]> | 2013-01-18 15:41:50 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-01-20 20:56:01 -0500 |
commit | 0f899c2da8b5c1ee305b80e9053447d9663b98b2 (patch) | |
tree | bbf7a2fef5ab68dfd8a62a9e1966cf1ef81841b8 /src/mesa/main/extensions.c | |
parent | 30530ee9acc356ea94466e9d71661068f4787433 (diff) |
mesa: Add extension bit tracking for GL_OES_depth_texture_cube_map
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 23b494836db..9c7b700743c 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -243,6 +243,7 @@ static const struct extension extension_table[] = { { "GL_OES_depth24", o(EXT_framebuffer_object), ES1 | ES2, 2005 }, { "GL_OES_depth32", o(dummy_false), DISABLE, 2005 }, { "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 }, /* 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 }, |