From: Marek Olšák Date: Mon, 2 Jun 2014 13:45:51 +0000 (+0200) Subject: r600g,radeonsi: disable fast clear if render condition is on X-Git-Tag: upstream/10.3~1731 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf701a84eb000910015a3c3ee9860141cde4990d;p=platform%2Fupstream%2Fmesa.git 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 --- 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;