Mesa (master): r600g: invalidate caches at the beginning of CS

Marek Olšák mareko at kemper.freedesktop.org
Wed Apr 4 11:15:01 UTC 2012


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Mon Apr  2 05:01:20 2012 +0200

r600g: invalidate caches at the beginning of CS

Reviewed-by: Alex Deucher <alexander.deucher at amd.com>

---

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

diff --git a/src/gallium/drivers/r600/r600_hw_context.c b/src/gallium/drivers/r600/r600_hw_context.c
index 46c8c04..e898a59 100644
--- a/src/gallium/drivers/r600/r600_hw_context.c
+++ b/src/gallium/drivers/r600/r600_hw_context.c
@@ -1197,7 +1197,16 @@ void r600_context_flush(struct r600_context *ctx, unsigned flags)
 	ctx->pm4_dirty_cdwords = 0;
 	ctx->flags = 0;
 
+	/* Begin a new CS. */
 	r600_emit_atom(ctx, &ctx->start_cs_cmd.atom);
+
+	/* Invalidate caches. */
+	r600_inval_vertex_cache(ctx);
+	r600_inval_texture_cache(ctx);
+	r600_inval_shader_cache(ctx);
+	r600_flush_framebuffer(ctx, false);
+
+	/* Re-emit states. */
 	r600_atom_dirty(ctx, &ctx->db_misc_state.atom);
 	r600_atom_dirty(ctx, &ctx->vertex_buffer_state);
 




More information about the mesa-commit mailing list