Module: Mesa Branch: master Commit: 4f7fe2cf2cb16ac27ea0f6cc0da84ee2c64c3754 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4f7fe2cf2cb16ac27ea0f6cc0da84ee2c64c3754
Author: Tom Stellard <[email protected]> Date: Wed Mar 13 12:59:33 2013 -0400 radeonsi: Set TCL1_ACTION_ENA when invalidating the texture cache Reviewed-by: Alex Deucher <[email protected]> Reviewed-by: Michel Dänzer <[email protected] --- src/gallium/drivers/radeonsi/radeonsi_pm4.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/gallium/drivers/radeonsi/radeonsi_pm4.c b/src/gallium/drivers/radeonsi/radeonsi_pm4.c index e7441fe..526f087 100644 --- a/src/gallium/drivers/radeonsi/radeonsi_pm4.c +++ b/src/gallium/drivers/radeonsi/radeonsi_pm4.c @@ -137,6 +137,7 @@ void si_pm4_inval_shader_cache(struct si_pm4_state *state) void si_pm4_inval_texture_cache(struct si_pm4_state *state) { state->cp_coher_cntl |= S_0085F0_TC_ACTION_ENA(1); + state->cp_coher_cntl |= S_0085F0_TCL1_ACTION_ENA(1); } void si_pm4_inval_fb_cache(struct si_pm4_state *state, unsigned nr_cbufs) _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
