diff options
author | Plamena Manolova <[email protected]> | 2017-01-24 12:39:06 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-02-02 12:28:31 +0000 |
commit | 96123dbad9f0de74e9b08d08df9e2e75cbfcd745 (patch) | |
tree | afa028e4b83bc08bd10958e66cf123b08e4f25b9 /src/mesa/main/teximage.c | |
parent | 6ee4665a774fa423ab53df9d59dc72227e6dec6a (diff) |
mesa: Enable EXT_compressed_ETC1_RGB8_sub_texture
Since we already have the functionality in place and games
like Game of Thrones seem to depend on this extension, I
think it makes sense to enable it by making it part of
the extension string even though it's still a draft:
https://www.khronos.org/registry/gles/extensions/EXT/EXT_compressed_ETC1_RGB8_sub_texture.txt
Note: OES_compressed_ETC1_RGB8_sub_texture seems to be listed
in gl2ext.h, but there's no documentation for it in the KHR
registry
Signed-off-by: Plamena Manolova <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r-- | src/mesa/main/teximage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 2dc657bcc34..25c5f82a6c6 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1322,7 +1322,6 @@ static bool compressedteximage_only_format(const struct gl_context *ctx, GLenum format) { switch (format) { - case GL_ETC1_RGB8_OES: case GL_PALETTE4_RGB8_OES: case GL_PALETTE4_RGBA8_OES: case GL_PALETTE4_R5_G6_B5_OES: |