diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-03-31 04:15:46 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-03-31 04:41:06 +0000 |
commit | 4fcd3189aea22d3384a7d9b4920b2e0202e69594 (patch) | |
tree | 09c9a5a3d6878ac0c06a8752ba0f6a9d7a0678ec /src/gallium/drivers/panfrost/pandecode | |
parent | 923720440098075ec1deb6171ff96bd92c4cc34d (diff) |
panfrost/decode: Print negative_start
This property slipped through..
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost/pandecode')
-rw-r--r-- | src/gallium/drivers/panfrost/pandecode/decode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/panfrost/pandecode/decode.c b/src/gallium/drivers/panfrost/pandecode/decode.c index 966bce6ebd7..20f789dc9f8 100644 --- a/src/gallium/drivers/panfrost/pandecode/decode.c +++ b/src/gallium/drivers/panfrost/pandecode/decode.c @@ -985,6 +985,8 @@ pandecode_replay_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job if (p->index_count) pandecode_prop("index_count = MALI_POSITIVE(%" PRId32 ")", p->index_count + 1); + pandecode_prop("negative_start = %d", p->negative_start); + DYN_MEMORY_PROP(p, job_no, indices); if (p->zero1) { |