freedreno/decode: Increase size of offsets table

The offsets table stores offsets of a buffer (such as cmdstream) that
we've already dumped.  The suballoc pool results in more suballocated
cmdstream allocated from a single backing buffer, meaning that we need
to increase the size of this table.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20975>
This commit is contained in:
Rob Clark
2023-01-14 07:10:11 -08:00
committed by Marge Bot
parent 2b264455b5
commit 5eb85ef756
+1 -1
View File
@@ -45,7 +45,7 @@ struct buffer {
struct {
unsigned offset;
unsigned dumped_mask;
} offsets[64];
} offsets[256];
unsigned noffsets;
};