Mesa (master): r600g: flush FMASK and CMASK at the end of CS

Marek Olšák mareko at kemper.freedesktop.org
Sun Jan 6 21:11:04 UTC 2013


Module: Mesa
Branch: master
Commit: afec10df373f342f058aab66c622237964a4a147
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=afec10df373f342f058aab66c622237964a4a147

Author: Marek Olšák <maraeo at gmail.com>
Date:   Sun Jan  6 20:28:03 2013 +0100

r600g: flush FMASK and CMASK at the end of CS

---

 src/gallium/drivers/r600/r600_hw_context.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/r600/r600_hw_context.c b/src/gallium/drivers/r600/r600_hw_context.c
index 163917e..1506b39 100644
--- a/src/gallium/drivers/r600/r600_hw_context.c
+++ b/src/gallium/drivers/r600/r600_hw_context.c
@@ -707,7 +707,9 @@ void r600_context_flush(struct r600_context *ctx, unsigned flags)
 	/* flush is needed to avoid lockups on some chips with user fences
 	 * this will also flush the framebuffer cache
 	 */
-	ctx->flags |= R600_CONTEXT_WAIT_IDLE | R600_CONTEXT_FLUSH_AND_INV;
+	ctx->flags |= R600_CONTEXT_FLUSH_AND_INV |
+		      R600_CONTEXT_FLUSH_AND_INV_CB_META |
+		      R600_CONTEXT_WAIT_IDLE;
 
 	r600_flush_emit(ctx);
 




More information about the mesa-commit mailing list