mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 09:22:43 +00:00
Fix a thinko
Wrong var for computing number of slots used.
This commit is contained in:
parent
61036378e2
commit
69c110193a
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ QFV_CreateDescriptorPool (qfv_device_t *device,
|
||||||
|
|
||||||
VkDescriptorPoolCreateInfo createInfo = {
|
VkDescriptorPoolCreateInfo createInfo = {
|
||||||
VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO, 0,
|
VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO, 0,
|
||||||
flags, maxSets, ps - poolsize_pool, poolsize_pool,
|
flags, maxSets, poolsize_next - poolsize_pool, poolsize_pool,
|
||||||
};
|
};
|
||||||
|
|
||||||
qfv_descriptorpool_t *descriptorpool = malloc (sizeof (descriptorpool));
|
qfv_descriptorpool_t *descriptorpool = malloc (sizeof (descriptorpool));
|
||||||
|
|
Loading…
Reference in a new issue