From 9a53e3b1fd2db1cdc83531e54b4775b6f071c615 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 5 Mar 2024 13:05:37 -0500 Subject: [PATCH] nvk: bump NVK_PUSH_MAX_SYNCS to 256 technically this needs to be MUCH higher since there's no limitation on the number of semaphore waits that can be submitted, but this is enough to handle zink usage fixes KHR-GL46.sparse_buffer_tests.BufferStorageTest cc: mesa-stable Part-of: --- src/nouveau/vulkan/nvk_queue_drm_nouveau.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_queue_drm_nouveau.c b/src/nouveau/vulkan/nvk_queue_drm_nouveau.c index 8881d51b3ae..8ecc976ab68 100644 --- a/src/nouveau/vulkan/nvk_queue_drm_nouveau.c +++ b/src/nouveau/vulkan/nvk_queue_drm_nouveau.c @@ -20,7 +20,7 @@ #include -#define NVK_PUSH_MAX_SYNCS 16 +#define NVK_PUSH_MAX_SYNCS 256 #define NVK_PUSH_MAX_BINDS 4096 #define NVK_PUSH_MAX_PUSH 1024