From 514c5b5f4b692e2596341e08797c4f6dc8cdfe00 Mon Sep 17 00:00:00 2001 From: Oded Gabbay Date: Tue, 26 Apr 2016 13:47:28 +0300 Subject: [PATCH] radeonsi: fix build error because of missing param Signed-off-by: Oded Gabbay Cc: "11.1 11.2" --- 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 ae87a596398..6017383a675 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 + -- 2.30.2