summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOded Gabbay <oded.gabbay@gmail.com>2016-02-25 22:36:38 +0200
committerOded Gabbay <oded.gabbay@gmail.com>2016-02-29 12:26:27 +0200
commita640ad15e1fff3eb51f42bf30c31eafe02a921e2 (patch)
tree5ca866612d52aa0b90acdad9dfa121c83f63cb71 /src
parente3dfc0e095bba74aaaea4d6f994c29fdf954cbad (diff)
downloadexternal_mesa3d-a640ad15e1fff3eb51f42bf30c31eafe02a921e2.zip
external_mesa3d-a640ad15e1fff3eb51f42bf30c31eafe02a921e2.tar.gz
external_mesa3d-a640ad15e1fff3eb51f42bf30c31eafe02a921e2.tar.bz2
gallium/radeon: disable evergreen_do_fast_color_clear for BE
This function is currently broken for BE. I assume it's because of util_pack_color(). Until I fix this path, I prefer to disable it so users would be able to see correct colors on their desktop and applications. Together with the two following patches: - gallium/r600: Don't let h/w do endian swap for colorformat - gallium/radeon: remove separate BE path in r600_translate_colorswap it fixes BZ#72877 and BZ#92039 Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com> Cc: "11.1 11.2" <mesa-stable@lists.freedesktop.org> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/radeon/r600_texture.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c
index 454d0f1..0b31d0a 100644
--- a/src/gallium/drivers/radeon/r600_texture.c
+++ b/src/gallium/drivers/radeon/r600_texture.c
@@ -1408,6 +1408,11 @@ void evergreen_do_fast_color_clear(struct r600_common_context *rctx,
{
int i;
+ /* This function is broken in BE, so just disable this path for now */
+#ifdef PIPE_ARCH_BIG_ENDIAN
+ return;
+#endif
+
if (rctx->render_cond)
return;