Module: Mesa Branch: 9.2 Commit: cf537c405b76c4720648985258160263fe97f410 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cf537c405b76c4720648985258160263fe97f410
Author: Ian Romanick <[email protected]> Date: Mon Aug 19 14:27:31 2013 -0700 mesa: Never advertise _S3TC compressed formats The NVIDIA driver doesn't expose them, and piglit's arb_texture_compression-invalid-formats expects them to not be there. This, with the previous commit, fixes piglit arb_texture_compression-invalid-formats. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> Cc: "9.2" <[email protected]> (cherry picked from commit f53b634807140268b40b063a2a966ad2701df7be) --- src/mesa/main/texcompress.c | 12 ------------ 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c index 334ea40..e71d0c4 100644 --- a/src/mesa/main/texcompress.c +++ b/src/mesa/main/texcompress.c @@ -264,18 +264,6 @@ _mesa_get_compressed_formats(struct gl_context *ctx, GLint *formats) n += 3; } } - if (_mesa_is_desktop_gl(ctx) - && ctx->Extensions.ANGLE_texture_compression_dxt) { - if (formats) { - formats[n++] = GL_RGB_S3TC; - formats[n++] = GL_RGB4_S3TC; - formats[n++] = GL_RGBA_S3TC; - formats[n++] = GL_RGBA4_S3TC; - } - else { - n += 4; - } - } /* The GL_OES_compressed_ETC1_RGB8_texture spec says: * _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
