Mesa (master): panfrost: Add missing 0x in invocation_count

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Jun 20 14:49:18 UTC 2019


Module: Mesa
Branch: master
Commit: 8643b89c48c86a2a50361db113eceec9ba7b488a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8643b89c48c86a2a50361db113eceec9ba7b488a

Author: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
Date:   Wed Jun 19 09:31:49 2019 -0700

panfrost: Add missing 0x in invocation_count

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>

---

 src/gallium/drivers/panfrost/pandecode/decode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/panfrost/pandecode/decode.c b/src/gallium/drivers/panfrost/pandecode/decode.c
index 76baa06dda2..2c74d807d63 100644
--- a/src/gallium/drivers/panfrost/pandecode/decode.c
+++ b/src/gallium/drivers/panfrost/pandecode/decode.c
@@ -1158,7 +1158,7 @@ pandecode_replay_vertex_tiler_prefix(struct mali_vertex_tiler_prefix *p, int job
         pandecode_log_cont("{\n");
         pandecode_indent++;
 
-        pandecode_prop("invocation_count = %" PRIx32, p->invocation_count);
+        pandecode_prop("invocation_count = 0x%" PRIx32, p->invocation_count);
         pandecode_prop("size_y_shift = %d", p->size_y_shift);
         pandecode_prop("size_z_shift = %d", p->size_z_shift);
         pandecode_prop("workgroups_x_shift = %d", p->workgroups_x_shift);




More information about the mesa-commit mailing list