From: Marek Olšák Date: Sun, 6 Nov 2016 18:25:12 +0000 (+0100) Subject: radeonsi/gfx9: emit BREAK_BATCH in emit_framebuffer_state X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ad93d72c340fc41263d1fa6790ab56c4e10e6244;p=mesa.git radeonsi/gfx9: emit BREAK_BATCH in emit_framebuffer_state Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 1a42ad84f68..1b7aaa9a690 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2804,6 +2804,11 @@ static void si_emit_framebuffer_state(struct si_context *sctx, struct r600_atom radeon_set_context_reg(cs, R_028208_PA_SC_WINDOW_SCISSOR_BR, S_028208_BR_X(state->width) | S_028208_BR_Y(state->height)); + if (sctx->b.chip_class >= GFX9) { + radeon_emit(cs, PKT3(PKT3_EVENT_WRITE, 0, 0)); + radeon_emit(cs, EVENT_TYPE(V_028A90_BREAK_BATCH) | EVENT_INDEX(0)); + } + sctx->framebuffer.dirty_cbufs = 0; sctx->framebuffer.dirty_zsbuf = false; }