diff options
author | Marek Olšák <[email protected]> | 2015-08-17 19:17:16 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-08-26 19:25:19 +0200 |
commit | 189953ee13ad7d6b5d9d04ac21a230e8137a700d (patch) | |
tree | e3115009d0bddd97484a07e5f4b07ae93e9096b5 /src/gallium/drivers/radeonsi/si_pm4.c | |
parent | df6a5666b6398613e552f66cd092369b12cce9ed (diff) |
radeonsi: remove old CS tracing code
Some of it is left there and it will be re-used in the next commit.
Acked-by: Christian König <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pm4.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pm4.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pm4.c b/src/gallium/drivers/radeonsi/si_pm4.c index e9b9a5f556a..036d90cabb1 100644 --- a/src/gallium/drivers/radeonsi/si_pm4.c +++ b/src/gallium/drivers/radeonsi/si_pm4.c @@ -135,12 +135,6 @@ unsigned si_pm4_dirty_dw(struct si_context *sctx) continue; count += state->ndw; -#if SI_TRACE_CS - /* for tracing each states */ - if (sctx->screen->b.trace_bo) { - count += SI_TRACE_CS_DWORDS; - } -#endif } return count; @@ -161,12 +155,6 @@ void si_pm4_emit(struct si_context *sctx, struct si_pm4_state *state) } cs->cdw += state->ndw; - -#if SI_TRACE_CS - if (sctx->screen->b.trace_bo) { - si_trace_emit(sctx); - } -#endif } void si_pm4_emit_dirty(struct si_context *sctx) |