summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/image.c
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2011-11-28 16:57:02 +0800
committerChia-I Wu <olv@lunarg.com>2011-12-02 08:43:46 +0800
commitd4a38e86d4b4d66cca20ee63222f940cb73fa709 (patch)
tree059bf69787804996049163ffa2ee809560bfc04a /src/mesa/main/image.c
parent51f4d2725417088c75d512b69a31a26ae5cb3ef2 (diff)
downloadexternal_mesa3d-d4a38e86d4b4d66cca20ee63222f940cb73fa709.zip
external_mesa3d-d4a38e86d4b4d66cca20ee63222f940cb73fa709.tar.gz
external_mesa3d-d4a38e86d4b4d66cca20ee63222f940cb73fa709.tar.bz2
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 <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/image.c')
-rw-r--r--src/mesa/main/image.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c
index 446d52e..b266e26 100644
--- a/src/mesa/main/image.c
+++ b/src/mesa/main/image.c
@@ -741,6 +741,7 @@ _mesa_is_color_format(GLenum format)
case GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT:
case GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT:
case GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI:
+ case GL_ETC1_RGB8_OES:
/* generic integer formats */
case GL_RED_INTEGER_EXT:
case GL_GREEN_INTEGER_EXT:
@@ -1050,6 +1051,8 @@ _mesa_is_compressed_format(struct gl_context *ctx, GLenum format)
return ctx->Extensions.EXT_texture_compression_latc;
case GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI:
return ctx->Extensions.ATI_texture_compression_3dc;
+ case GL_ETC1_RGB8_OES:
+ return ctx->Extensions.OES_compressed_ETC1_RGB8_texture;
#if FEATURE_ES
case GL_PALETTE4_RGB8_OES:
case GL_PALETTE4_RGBA8_OES: