nv2a/vk: Fix compute descriptor pool size

This commit is contained in:
mborgerson 2024-07-26 17:21:02 -07:00
parent 36e7cca1e9
commit ebe3ee155b
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ static void create_descriptor_pool(PGRAPHState *pg)
VkDescriptorPoolSize pool_sizes[] = {
{
.type = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER,
.descriptorCount = 3,
.descriptorCount = 3 * ARRAY_SIZE(r->compute.descriptor_sets),
},
};