mirror of https://github.com/xemu-project/xemu.git
nv2a/vk: Fix compute descriptor pool size
This commit is contained in:
parent
36e7cca1e9
commit
ebe3ee155b
|
@ -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),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue