mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
pan/decode: Fix tiler weights printing
Theoretical - still always zero. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4025>
This commit is contained in:
parent
3f5cd446b2
commit
acd140c2e2
1 changed files with 2 additions and 2 deletions
|
|
@ -613,10 +613,10 @@ pandecode_midgard_tiler_descriptor(
|
|||
}
|
||||
|
||||
if (nonzero_weights) {
|
||||
pandecode_log(".weights = {");
|
||||
pandecode_log(".weights = { ");
|
||||
|
||||
for (unsigned w = 0; w < ARRAY_SIZE(t->weights); ++w) {
|
||||
pandecode_log("%d, ", t->weights[w]);
|
||||
pandecode_log_cont("%d, ", t->weights[w]);
|
||||
}
|
||||
|
||||
pandecode_log("},");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue