Mesa (master): gallivm: fix srgb format fetch

Jose Fonseca jrfonseca at kemper.freedesktop.org
Mon Dec 3 14:10:55 UTC 2012


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

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Sat Dec  1 17:04:54 2012 +0100

gallivm: fix srgb format fetch

we need to rely on util code for fetching those, just like before
9f06061d50f90bf425a5337cea1b0adb94a46d25.
Fixes bugs 57699 and 57756.

Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: José Fonseca <jfonseca at vmware.com>

---

 src/gallium/auxiliary/gallivm/lp_bld_format_aos.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c b/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
index 0b54ba4..c7fdb6e 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
@@ -481,7 +481,8 @@ lp_build_fetch_rgba_aos(struct gallivm_state *gallivm,
    }
 
    /* If all channels are of same type and we are not using half-floats */
-   if (format_desc->is_array) {
+   if (format_desc->is_array &&
+       format_desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB) {
       assert(!format_desc->is_mixed);
       return lp_build_fetch_rgba_aos_array(gallivm, format_desc, type, base_ptr, offset);
    }




More information about the mesa-commit mailing list