diff options
author | Brian Paul <[email protected]> | 2012-12-21 13:41:23 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-12-26 15:23:05 -0700 |
commit | 7c35521295e647978ed8e7ab9f490ef70d672cd3 (patch) | |
tree | 21def8155deb9355c1e20286a64b4b49e1e75140 /src/mesa/main/texcompress.c | |
parent | 5791c56811ae261b0596d088e99933eb5e24206d (diff) |
mesa: add missing texel fetch code for sRGB DXT formats
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=58548
Diffstat (limited to 'src/mesa/main/texcompress.c')
-rw-r--r-- | src/mesa/main/texcompress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c index 33c580a88f0..077a967da7e 100644 --- a/src/mesa/main/texcompress.c +++ b/src/mesa/main/texcompress.c @@ -533,6 +533,10 @@ _mesa_get_compressed_fetch_func(gl_format format) case MESA_FORMAT_RGBA_DXT1: case MESA_FORMAT_RGBA_DXT3: case MESA_FORMAT_RGBA_DXT5: + case MESA_FORMAT_SRGB_DXT1: + case MESA_FORMAT_SRGBA_DXT1: + case MESA_FORMAT_SRGBA_DXT3: + case MESA_FORMAT_SRGBA_DXT5: return _mesa_get_dxt_fetch_func(format); case MESA_FORMAT_RGB_FXT1: case MESA_FORMAT_RGBA_FXT1: |