Mesa (staging/20.3): mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jan 19 17:49:23 UTC 2021


Module: Mesa
Branch: staging/20.3
Commit: 0d1920b6c57ba1959d872bc57f28059bb8914f0d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0d1920b6c57ba1959d872bc57f28059bb8914f0d

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>
(cherry picked from commit 290dcb26aec583eb00be611b7b69e3f3f9667781)

---

 .pick_status.json               | 2 +-
 src/mesa/main/texcompress_etc.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.pick_status.json b/.pick_status.json
index 6afddcf97be..f4ce86a1435 100644
--- a/.pick_status.json
+++ b/.pick_status.json
@@ -130,7 +130,7 @@
         "description": "mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra",
         "nominated": true,
         "nomination_type": 1,
-        "resolution": 0,
+        "resolution": 1,
         "master_sha": null,
         "because_sha": "e5604ef78bd56fc136f00ee39003e3996bf23c80"
     },
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