From: Mike Blumenkrantz Date: Fri, 22 Apr 2022 01:34:20 +0000 (-0400) Subject: zink: bump number of image binds that can be batched to 50 X-Git-Tag: upstream/22.3.5~9251 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c637c5a894220a7a60616f5ecd31e200448dee91;p=platform%2Fupstream%2Fmesa.git 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 Part-of: --- diff --git a/src/gallium/drivers/zink/zink_bo.c b/src/gallium/drivers/zink/zink_bo.c index 4b1260f..b5f6fda 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;