Mesa (master): radeonsi: fix build error because of missing param

Oded Gabbay gabbayo at kemper.freedesktop.org
Tue Apr 26 10:48:49 UTC 2016


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

Author: Oded Gabbay <oded.gabbay at gmail.com>
Date:   Tue Apr 26 13:47:28 2016 +0300

radeonsi: fix build error because of missing param

Signed-off-by: Oded Gabbay <oded.gabbay at gmail.com>
Cc: "11.1 11.2" <mesa-stable at lists.freedesktop.org>

---

 src/gallium/drivers/radeonsi/si_state.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c
index ae87a59..6017383 100644
--- a/src/gallium/drivers/radeonsi/si_state.c
+++ b/src/gallium/drivers/radeonsi/si_state.c
@@ -2949,7 +2949,7 @@ si_make_texture_descriptor(struct si_screen *screen,
 		    S_008F24_LAST_ARRAY(last_layer));
 
 	if (tex->dcc_offset) {
-		unsigned swap = r600_translate_colorswap(pipe_format);
+		unsigned swap = r600_translate_colorswap(pipe_format, FALSE);
 
 		state[6] = S_008F28_COMPRESSION_EN(1) | S_008F28_ALPHA_IS_ON_MSB(swap <= 1);
 		state[7] = (tex->resource.gpu_address +




More information about the mesa-commit mailing list