Mesa (master): mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Jan 18 23:13:48 UTC 2021


Module: Mesa
Branch: master
Commit: 290dcb26aec583eb00be611b7b69e3f3f9667781
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=290dcb26aec583eb00be611b7b69e3f3f9667781

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Fri Jan 15 16:43:57 2021 -0500

mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra

If software decompression is used for ETC2, the alpha channel
for sRGB8 textures would be set only if BGRA is true.

Fixes: e5604ef78bd "st/mesa/i965: Allow decompressing ETC2 to GL_RGBA"

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>
Reviewed-by: Adam Jackson <ajax at redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8529>

---

 src/mesa/main/texcompress_etc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/main/texcompress_etc.c b/src/mesa/main/texcompress_etc.c
index 32464f3ca9e..f14b1670728 100644
--- a/src/mesa/main/texcompress_etc.c
+++ b/src/mesa/main/texcompress_etc.c
@@ -750,8 +750,8 @@ etc2_unpack_srgb8(uint8_t *dst_row,
 		  tmp = dst[0];
 		  dst[0] = dst[2];
 		  dst[2] = tmp;
-		  dst[3] = 255;
 	       }
+               dst[3] = 255;
 
                dst += comps;
             }



More information about the mesa-commit mailing list