[Mesa-dev] [PATCH 6/6] mesa: fix NUM_COMPRESSED_TEXTURE_FORMATS query
Marek Olšák
maraeo at gmail.com
Thu Oct 31 16:42:27 CET 2013
From: Marek Olšák <marek.olsak at amd.com>
Cc: mesa-stable at lists.freedesktop.org
---
src/mesa/main/texcompress.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c
index e71d0c4..7393d3f 100644
--- a/src/mesa/main/texcompress.c
+++ b/src/mesa/main/texcompress.c
@@ -257,11 +257,12 @@ _mesa_get_compressed_formats(struct gl_context *ctx, GLint *formats)
if (ctx->Extensions.EXT_texture_compression_s3tc) {
if (formats) {
formats[n++] = GL_COMPRESSED_RGB_S3TC_DXT1_EXT;
+ formats[n++] = GL_COMPRESSED_RGBA_S3TC_DXT1_EXT;
formats[n++] = GL_COMPRESSED_RGBA_S3TC_DXT3_EXT;
formats[n++] = GL_COMPRESSED_RGBA_S3TC_DXT5_EXT;
}
else {
- n += 3;
+ n += 4;
}
}
--
1.8.1.2
More information about the mesa-dev
mailing list