Module: Mesa Branch: master Commit: 662db03577377cd0acca279ca482ea8e9a4e1704 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=662db03577377cd0acca279ca482ea8e9a4e1704
Author: Marek Olšák <[email protected]> Date: Tue Aug 28 14:59:25 2018 -0400 radeonsi: fix printing a BO list into ddebug reports important for debugging Cc: 18.1 18.2 <[email protected]> Tested-by: Dieter Nützel <[email protected]> --- src/gallium/drivers/radeonsi/si_gfx_cs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_gfx_cs.c b/src/gallium/drivers/radeonsi/si_gfx_cs.c index c39564ecbe..38b85ce624 100644 --- a/src/gallium/drivers/radeonsi/si_gfx_cs.c +++ b/src/gallium/drivers/radeonsi/si_gfx_cs.c @@ -133,12 +133,13 @@ void si_flush_gfx_cs(struct si_context *ctx, unsigned flags, if (ctx->current_saved_cs) { si_trace_emit(ctx); - si_log_hw_flush(ctx); /* Save the IB for debug contexts. */ si_save_cs(ws, cs, &ctx->current_saved_cs->gfx, true); ctx->current_saved_cs->flushed = true; ctx->current_saved_cs->time_flush = os_time_get_nano(); + + si_log_hw_flush(ctx); } /* Flush the CS. */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
