aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/pandecode
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-08-20 13:21:28 -0700
committerAlyssa Rosenzweig <[email protected]>2019-08-21 08:40:54 -0700
commitc0642ebca1a8aa7fa34eb5c5205babf9e9a7b6a2 (patch)
treec3b566b461d935225a2df07e6b244b39bfa6a0b0 /src/panfrost/pandecode
parent00be5d7b82763040cc79770b12d0b6e8d47e684d (diff)
panfrost: Don't trip the prefix magic field
What *is* this? Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/panfrost/pandecode')
-rw-r--r--src/panfrost/pandecode/decode.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c
index fe0c33048c3..8fc18b2ee74 100644
--- a/src/panfrost/pandecode/decode.c
+++ b/src/panfrost/pandecode/decode.c
@@ -1532,10 +1532,8 @@ pandecode_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job_no, bo
if (p->offset_bias_correction)
pandecode_prop("offset_bias_correction = %d", p->offset_bias_correction);
- if (p->zero1) {
- pandecode_msg("XXX: payload zero tripped\n");
- pandecode_prop("zero1 = 0x%" PRIx32, p->zero1);
- }
+ /* TODO: Figure out what this is. It's not zero */
+ pandecode_prop("zero1 = 0x%" PRIx32, p->zero1);
pandecode_indent--;
pandecode_log("},\n");