summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2014-06-02 15:45:51 +0200
committerMarek Olšák <marek.olsak@amd.com>2014-06-03 13:33:14 +0200
commitbf701a84eb000910015a3c3ee9860141cde4990d (patch)
treeacd3104b57baac852a62ea8b20bf579f580932e8 /src/gallium/drivers/radeon
parente3e13d6b857b3083e2553457fe30ddfd4eddead4 (diff)
downloadexternal_mesa3d-bf701a84eb000910015a3c3ee9860141cde4990d.zip
external_mesa3d-bf701a84eb000910015a3c3ee9860141cde4990d.tar.gz
external_mesa3d-bf701a84eb000910015a3c3ee9860141cde4990d.tar.bz2
r600g,radeonsi: disable fast clear if render condition is on
For some reason, CP DMA doesn't follow the predicate bit if I enable it, so this is the only option. This fixes piglit: spec/NV_conditional_render/clear Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r--src/gallium/drivers/radeon/r600_texture.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c
index e30d933..3a37465 100644
--- a/src/gallium/drivers/radeon/r600_texture.c
+++ b/src/gallium/drivers/radeon/r600_texture.c
@@ -1235,6 +1235,9 @@ void evergreen_do_fast_color_clear(struct r600_common_context *rctx,
{
int i;
+ if (rctx->current_render_cond)
+ return;
+
for (i = 0; i < fb->nr_cbufs; i++) {
struct r600_texture *tex;
unsigned clear_bit = PIPE_CLEAR_COLOR0 << i;