summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorGwenole Beauchesne <[email protected]>2012-04-18 16:38:47 +0200
committerKristian Høgsberg <[email protected]>2012-07-04 15:26:22 -0400
commit69f031cc198b2ce3095cde3f8e00dcd2eed39301 (patch)
treed4985d3f83f2860de288dc42793d5e41a52356bf /src/mesa
parent3ed8d4285360047d78cfd3218ac4f8f325ae5d6e (diff)
mesa: add GL_EXT_texture_rg extension for OpenGL ES 2.x.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/APIspec.xml1
-rw-r--r--src/mesa/main/extensions.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml
index f870cf7db64..b6cf52d074a 100644
--- a/src/mesa/main/APIspec.xml
+++ b/src/mesa/main/APIspec.xml
@@ -4150,6 +4150,7 @@
<category name="OES_packed_depth_stencil"/>
<category name="OES_standard_derivatives"/>
<category name="EXT_texture_format_BGRA8888"/>
+ <category name="EXT_texture_rg"/>
<category name="EXT_read_format_bgra"/>
<category name="EXT_texture_compression_dxt1"/>
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c
index e4fe73307ad..793cc4e24e0 100644
--- a/src/mesa/main/extensions.c
+++ b/src/mesa/main/extensions.c
@@ -200,6 +200,7 @@ static const struct extension extension_table[] = {
{ "GL_EXT_texture_env_dot3", o(EXT_texture_env_dot3), GL, 2000 },
{ "GL_EXT_texture_filter_anisotropic", o(EXT_texture_filter_anisotropic), GL | ES1 | ES2, 1999 },
{ "GL_EXT_texture_format_BGRA8888", o(dummy_true), ES1 | ES2, 2005 },
+ { "GL_EXT_texture_rg", o(ARB_texture_rg), ES2, 2011 },
{ "GL_EXT_read_format_bgra", o(dummy_true), ES1 | ES2, 2009 },
{ "GL_EXT_texture_integer", o(EXT_texture_integer), GL, 2006 },
{ "GL_EXT_texture_lod_bias", o(dummy_true), GL | ES1, 1999 },