diff options
author | Chia-I Wu <[email protected]> | 2011-11-28 16:57:02 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-12-02 08:43:46 +0800 |
commit | d4a38e86d4b4d66cca20ee63222f940cb73fa709 (patch) | |
tree | 059bf69787804996049163ffa2ee809560bfc04a /src/mesa/main/APIspec.xml | |
parent | 51f4d2725417088c75d512b69a31a26ae5cb3ef2 (diff) |
mesa: add support for GL_OES_compressed_ETC1_RGB8_texture
Add support for GL_OES_compressed_ETC1_RGB8_texture to core mesa. There is no
driver support yet.
Unlike desktop GL compressed texture formats, GLES compressed texture formats
usually can only be used with glCompressedTexImage2D. All other gl*Tex*Image*
functions are updated to check for that.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/APIspec.xml')
-rw-r--r-- | src/mesa/main/APIspec.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/APIspec.xml b/src/mesa/main/APIspec.xml index 99c726c83ad..eeae599298f 100644 --- a/src/mesa/main/APIspec.xml +++ b/src/mesa/main/APIspec.xml @@ -3806,6 +3806,7 @@ <category name="OES_matrix_get"/> <category name="OES_read_format"/> <category name="OES_compressed_paletted_texture"/> + <category name="OES_compressed_ETC1_RGB8_texture"/> <category name="OES_point_size_array"/> <category name="OES_point_sprite"/> <category name="OES_query_matrix"/> @@ -4105,6 +4106,7 @@ <category name="GLES2.0"/> <category name="OES_compressed_paletted_texture"/> + <category name="OES_compressed_ETC1_RGB8_texture"/> <category name="OES_depth24"/> <category name="OES_depth32"/> <category name="OES_fbo_render_mipmap"/> |