summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-11-23 23:28:53 +0100
committerMarek Olšák <[email protected]>2016-11-29 23:52:31 +0100
commitea43d0b5e81e2368ca75199afbcb73e74cc6aa54 (patch)
tree7afa8a78d2a06a0a551b6d4828f623ae5e990506 /src/gallium
parent7abd94c9b0e3cde383c03cb0b7fa254575ac88e2 (diff)
radeonsi: don't print bodies of header-only packets
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/radeonsi/si_debug.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c
index 26763a873e0..b2c3574f1f2 100644
--- a/src/gallium/drivers/radeonsi/si_debug.c
+++ b/src/gallium/drivers/radeonsi/si_debug.c
@@ -368,6 +368,10 @@ static uint32_t *si_parse_packet3(FILE *f, uint32_t *ib, int *num_dw,
si_dump_reg(f, R_3F1_IB_BASE_HI, ib[2], ~0);
si_dump_reg(f, R_3F2_CONTROL, ib[3], ~0);
break;
+ case PKT3_CLEAR_STATE:
+ case PKT3_INCREMENT_DE_COUNTER:
+ case PKT3_PFP_SYNC_ME:
+ break;
case PKT3_NOP:
if (ib[0] == 0xffff1000) {
count = -1; /* One dword NOP. */