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:
Alyssa Rosenzweig 2020-02-28 07:25:07 -05:00 committed by Marge Bot
parent 3f5cd446b2
commit acd140c2e2

View file

@ -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("},");