mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 13:40:16 +01:00
pan/decode: Properly print tripped zeroes
The "%" got lost.
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Fixes: 6148d1be4b ("panfrost: Fix size of bifrost sampler descriptor")
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4832>
This commit is contained in:
parent
3a81abf3b2
commit
7eb2bc8f52
1 changed files with 1 additions and 1 deletions
|
|
@ -2443,7 +2443,7 @@ pandecode_samplers(mali_ptr samplers, unsigned sampler_count, int job_no, bool i
|
||||||
|
|
||||||
if (s->zero1 || s->zero2 || s->zero3 || s->zero4) {
|
if (s->zero1 || s->zero2 || s->zero3 || s->zero4) {
|
||||||
pandecode_msg("XXX: sampler zero tripped\n");
|
pandecode_msg("XXX: sampler zero tripped\n");
|
||||||
pandecode_prop("zero = 0x" PRIx64 ", 0x" PRIx64 ", 0x" PRIx64 ", 0x" PRIx64 "\n", s->zero1, s->zero2, s->zero3, s->zero4);
|
pandecode_prop("zero = 0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRIx64 ", 0x%" PRIx64 "\n", s->zero1, s->zero2, s->zero3, s->zero4);
|
||||||
}
|
}
|
||||||
|
|
||||||
pandecode_indent--;
|
pandecode_indent--;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue