diff options
| author | Cody Northrop <cody@lunarg.com> | 2015-08-03 12:47:29 -0600 |
|---|---|---|
| committer | Cody Northrop <cody@lunarg.com> | 2015-08-04 17:37:03 -0600 |
| commit | 15954693fd35d905b650bef4ec01c2dd216bde90 (patch) | |
| tree | 999e5a0c6820c56e7a33b9db50d36279f909e0c9 /loader | |
| parent | 33467cf073a664161edb1d27a87b3611d3b289ec (diff) | |
| download | usermoji-15954693fd35d905b650bef4ec01c2dd216bde90.tar.xz | |
v139: Bug 14257 - Remove pCount parameter from vkAllocDescriptorSets
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/trampoline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/trampoline.c b/loader/trampoline.c index 2224ce2e..2a236e42 100644 --- a/loader/trampoline.c +++ b/loader/trampoline.c @@ -960,13 +960,13 @@ LOADER_EXPORT VkResult VKAPI vkResetDescriptorPool(VkDevice device, VkDescriptor return disp->ResetDescriptorPool(device, descriptorPool); } -LOADER_EXPORT VkResult VKAPI vkAllocDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorSetUsage setUsage, uint32_t count, const VkDescriptorSetLayout* pSetLayouts, VkDescriptorSet* pDescriptorSets, uint32_t* pCount) +LOADER_EXPORT VkResult VKAPI vkAllocDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorSetUsage setUsage, uint32_t count, const VkDescriptorSetLayout* pSetLayouts, VkDescriptorSet* pDescriptorSets) { const VkLayerDispatchTable *disp; disp = loader_get_dispatch(device); - return disp->AllocDescriptorSets(device, descriptorPool, setUsage, count, pSetLayouts, pDescriptorSets, pCount); + return disp->AllocDescriptorSets(device, descriptorPool, setUsage, count, pSetLayouts, pDescriptorSets); } LOADER_EXPORT VkResult VKAPI vkFreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, uint32_t count, const VkDescriptorSet* pDescriptorSets) |
