diff options
author | Jonathan Marek <[email protected]> | 2020-02-27 14:30:28 -0500 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-02-28 14:04:20 +0000 |
commit | c7ac1bcea0198c86a1e208ece50c1af5da2cb339 (patch) | |
tree | 9e74d39cc76d8e3f4ce9ffb25535b1cb4a3e337f /src/freedreno | |
parent | d195eef05d2eb063ab82d680950b40eb9127265e (diff) |
turnip: increase array sizes in tu_descriptor_map
Pending the descriptor rework, this allows running the follow test:
dEQP-VK.renderpass.suballocation.attachment_sparse_filling.input_attachment_127
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3979>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3979>
Diffstat (limited to 'src/freedreno')
-rw-r--r-- | src/freedreno/vulkan/tu_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/freedreno/vulkan/tu_private.h b/src/freedreno/vulkan/tu_private.h index d076df1fdbc..dd0107bb6f5 100644 --- a/src/freedreno/vulkan/tu_private.h +++ b/src/freedreno/vulkan/tu_private.h @@ -1076,10 +1076,10 @@ struct tu_descriptor_map /* TODO: avoid fixed size array/justify the size */ unsigned num; /* number of array entries */ unsigned num_desc; /* Number of descriptors (sum of array_size[]) */ - int set[64]; - int binding[64]; - int value[64]; - int array_size[64]; + int set[128]; + int binding[128]; + int value[128]; + int array_size[128]; }; struct tu_shader |