diff options
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pm4.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pm4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pm4.c b/src/gallium/drivers/radeonsi/si_pm4.c index 5b132850272..c8769370db0 100644 --- a/src/gallium/drivers/radeonsi/si_pm4.c +++ b/src/gallium/drivers/radeonsi/si_pm4.c @@ -202,7 +202,7 @@ unsigned si_pm4_dirty_dw(struct si_context *sctx) count += state->ndw; #if SI_TRACE_CS /* for tracing each states */ - if (sctx->screen->trace_bo) { + if (sctx->screen->b.trace_bo) { count += SI_TRACE_CS_DWORDS; } #endif @@ -228,7 +228,7 @@ void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state) cs->cdw += state->ndw; #if SI_TRACE_CS - if (sctx->screen->trace_bo) { + if (sctx->screen->b.trace_bo) { si_trace_emit(sctx); } #endif |