mesa: Only advertise GL_ETC1_RGB8_OES in ES contexts
There is no extension for this format in desktop GL, so an application can't give the format back to glCompressedTexImage2D. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Cc: "9.2" <mesa-stable@lists.freedesktop.org>
This commit is contained in:
@@ -277,7 +277,15 @@ _mesa_get_compressed_formats(struct gl_context *ctx, GLint *formats)
|
||||
}
|
||||
}
|
||||
|
||||
if (ctx->Extensions.OES_compressed_ETC1_RGB8_texture) {
|
||||
/* The GL_OES_compressed_ETC1_RGB8_texture spec says:
|
||||
*
|
||||
* "New State
|
||||
*
|
||||
* The queries for NUM_COMPRESSED_TEXTURE_FORMATS and
|
||||
* COMPRESSED_TEXTURE_FORMATS include ETC1_RGB8_OES."
|
||||
*/
|
||||
if (_mesa_is_gles(ctx)
|
||||
&& ctx->Extensions.OES_compressed_ETC1_RGB8_texture) {
|
||||
if (formats) {
|
||||
formats[n++] = GL_ETC1_RGB8_OES;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user