Module: Mesa Branch: staging/22.1 Commit: e181c92bf265484e2011ec213cce86f9fd4067d4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e181c92bf265484e2011ec213cce86f9fd4067d4
Author: Mike Blumenkrantz <[email protected]> Date: Thu Apr 21 21:34:20 2022 -0400 zink: bump number of image binds that can be batched to 50 this is big enough to batch all the cts binds into a single submit Reviewed-by: Dave Airlie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16100> --- src/gallium/drivers/zink/zink_bo.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/zink/zink_bo.c b/src/gallium/drivers/zink/zink_bo.c index 4b1260f637f..b5f6fda5d67 100644 --- a/src/gallium/drivers/zink/zink_bo.c +++ b/src/gallium/drivers/zink/zink_bo.c @@ -912,9 +912,10 @@ zink_bo_commit(struct zink_screen *screen, struct zink_resource *res, unsigned l }; /* TODO: msaa needs miptail */ //VkSparseImageOpaqueMemoryBindInfo sparse_obind; - VkSparseImageMemoryBind ibind[10]; - uint32_t backing_start[10], backing_size[10]; - struct zink_sparse_backing *backing[10]; +#define NUM_BATCHED_BINDS 50 + VkSparseImageMemoryBind ibind[NUM_BATCHED_BINDS]; + uint32_t backing_start[NUM_BATCHED_BINDS], backing_size[NUM_BATCHED_BINDS]; + struct zink_sparse_backing *backing[NUM_BATCHED_BINDS]; unsigned i = 0; bool commits_pending = false; uint32_t va_page_offset = 0;
