mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-23 23:30:22 +01:00
mesa: add GL_EXT_texture_rg extension for OpenGL ES 2.x.
This commit is contained in:
parent
3ed8d42853
commit
69f031cc19
3 changed files with 10 additions and 0 deletions
|
|
@ -634,4 +634,12 @@
|
|||
</function>
|
||||
</category>
|
||||
|
||||
<!-- 103. GL_EXT_texture_rg -->
|
||||
<category name="GL_EXT_texture_rg" number="103">
|
||||
<enum name="RED_EXT" value="0x1903"/>
|
||||
<enum name="RG_EXT" value="0x8227"/>
|
||||
<enum name="R8_EXT" value="0x8229"/>
|
||||
<enum name="RG8_EXT" value="0x822B"/>
|
||||
</category>
|
||||
|
||||
</OpenGLAPI>
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
|
|
@ -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 },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue