[Mesa-dev] [PATCH 1/4] mesa: Add extension bit tracking for GL_OES_depth_texture_cube_map
Kenneth Graunke
kenneth at whitecape.org
Fri Jan 18 17:46:42 PST 2013
On 01/18/2013 04:01 PM, Ian Romanick wrote:
> From: Ian Romanick <ian.d.romanick at intel.com>
>
> Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
> ---
> src/mesa/main/extensions.c | 1 +
> src/mesa/main/mtypes.h | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
> index 23b4948..9c7b700 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 },
> diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
> index d0c0e24..c2f4845 100644
> --- a/src/mesa/main/mtypes.h
> +++ b/src/mesa/main/mtypes.h
> @@ -3134,6 +3134,7 @@ struct gl_extensions
> GLboolean S3_s3tc;
> GLboolean OES_EGL_image;
> GLboolean OES_draw_texture;
> + GLboolean OES_depth_texture_cube_map;
> GLboolean OES_EGL_image_external;
> GLboolean OES_compressed_ETC1_RGB8_texture;
> GLboolean extension_sentinel;
For the series:
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
More information about the mesa-dev
mailing list