From 0abee468f8e198aa431dce326bc97d979af64ad8 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 13 Sep 2011 14:05:27 -0500 Subject: [PATCH] mesa: Advertise GL_OES_compressed_paletted_texture in OpenGL ES1.x Signed-off-by: Ian Romanick Reviewed-by: Brian Paul Tested-by: Jin Yang (cherry picked from commit 24a113093b9bf4620b35fe77f4a7cec47ad457c8) --- src/mesa/main/extensions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index bc61c50a90f..101452e39ad 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -221,7 +221,7 @@ static const struct extension extension_table[] = { { "GL_OES_blend_func_separate", o(EXT_blend_func_separate), ES1, 2009 }, { "GL_OES_blend_subtract", o(EXT_blend_subtract), ES1, 2009 }, { "GL_OES_byte_coordinates", o(dummy_true), ES1, 2002 }, - { "GL_OES_compressed_paletted_texture", o(dummy_false), DISABLE, 2003 }, + { "GL_OES_compressed_paletted_texture", o(dummy_true), ES1, 2003 }, { "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 },