From 3235442c3b2b7a472fd8aed08131f507f7b94d20 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 20 Mar 2016 13:27:45 +0100 Subject: [PATCH 3/4] evergreen big endian Signed-off-by: Igor Gnatenko --- src/gallium/drivers/r600/r600_state_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/r600_state_common.c b/src/gallium/drivers/r600/r600_state_common.c index df41d3f..856b276 100644 --- a/src/gallium/drivers/r600/r600_state_common.c +++ b/src/gallium/drivers/r600/r600_state_common.c @@ -2726,7 +2726,7 @@ uint32_t r600_translate_colorformat(enum chip_class chip, enum pipe_format forma uint32_t r600_colorformat_endian_swap(uint32_t colorformat) { - if (R600_BIG_ENDIAN) { + if (0 && R600_BIG_ENDIAN) { switch(colorformat) { /* 8-bit buffers. */ case V_0280A0_COLOR_4_4: -- 2.7.4