From 68916bdee28b9a6b6599283afe49821319d52849 Mon Sep 17 00:00:00 2001 From: redstrate Date: Tue, 12 Oct 2021 10:26:53 -0400 Subject: [PATCH] Increase number of Vulkan sets --- engine/gfx/vulkan/src/gfx_vulkan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/gfx/vulkan/src/gfx_vulkan.cpp b/engine/gfx/vulkan/src/gfx_vulkan.cpp index e9a37e5..f7b9be7 100755 --- a/engine/gfx/vulkan/src/gfx_vulkan.cpp +++ b/engine/gfx/vulkan/src/gfx_vulkan.cpp @@ -2043,7 +2043,7 @@ void GFXVulkan::createDescriptorPool() { poolInfo.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT; poolInfo.poolSizeCount = static_cast(poolSizes.size()); poolInfo.pPoolSizes = poolSizes.data(); - poolInfo.maxSets = 5000; + poolInfo.maxSets = 15000; vkCreateDescriptorPool(device, &poolInfo, nullptr, &descriptorPool); }