From: Marek Olšák Date: Mon, 26 Jun 2017 22:32:47 +0000 (+0200) Subject: radeonsi: check nr_cbufs in other places before flushing CB X-Git-Tag: upstream/18.1.0~8269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aef998fe4b7551faf8a44409aa74554b45d2b67c;p=platform%2Fupstream%2Fmesa.git radeonsi: check nr_cbufs in other places before flushing CB Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index b236bed..a674a60 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -3975,7 +3975,8 @@ static void si_texture_barrier(struct pipe_context *ctx, unsigned flags) struct si_context *sctx = (struct si_context *)ctx; /* Multisample surfaces are flushed in si_decompress_textures. */ - if (sctx->framebuffer.nr_samples <= 1) { + if (sctx->framebuffer.nr_samples <= 1 && + sctx->framebuffer.state.nr_cbufs) { sctx->b.flags |= SI_CONTEXT_INV_VMEM_L1 | SI_CONTEXT_INV_GLOBAL_L2 | SI_CONTEXT_FLUSH_AND_INV_CB; @@ -4021,7 +4022,8 @@ static void si_memory_barrier(struct pipe_context *ctx, unsigned flags) * si_decompress_textures when needed. */ if (flags & PIPE_BARRIER_FRAMEBUFFER && - sctx->framebuffer.nr_samples <= 1) { + sctx->framebuffer.nr_samples <= 1 && + sctx->framebuffer.state.nr_cbufs) { sctx->b.flags |= SI_CONTEXT_FLUSH_AND_INV_CB | SI_CONTEXT_WRITEBACK_GLOBAL_L2; }