Increase number of Vulkan sets
This commit is contained in:
parent
8ea112e26c
commit
68916bdee2
1 changed files with 1 additions and 1 deletions
|
@ -2043,7 +2043,7 @@ void GFXVulkan::createDescriptorPool() {
|
|||
poolInfo.flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT;
|
||||
poolInfo.poolSizeCount = static_cast<uint32_t>(poolSizes.size());
|
||||
poolInfo.pPoolSizes = poolSizes.data();
|
||||
poolInfo.maxSets = 5000;
|
||||
poolInfo.maxSets = 15000;
|
||||
|
||||
vkCreateDescriptorPool(device, &poolInfo, nullptr, &descriptorPool);
|
||||
}
|
||||
|
|
Reference in a new issue