Module: Mesa Branch: master Commit: 514c5b5f4b692e2596341e08797c4f6dc8cdfe00 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=514c5b5f4b692e2596341e08797c4f6dc8cdfe00
Author: Oded Gabbay <[email protected]> Date: Tue Apr 26 13:47:28 2016 +0300 radeonsi: fix build error because of missing param Signed-off-by: Oded Gabbay <[email protected]> Cc: "11.1 11.2" <[email protected]> --- 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 + _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
