aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
authorCody Northrop <cody@lunarg.com>2015-08-03 12:47:29 -0600
committerCody Northrop <cody@lunarg.com>2015-08-04 17:37:03 -0600
commit15954693fd35d905b650bef4ec01c2dd216bde90 (patch)
tree999e5a0c6820c56e7a33b9db50d36279f909e0c9 /loader
parent33467cf073a664161edb1d27a87b3611d3b289ec (diff)
downloadusermoji-15954693fd35d905b650bef4ec01c2dd216bde90.tar.xz
v139: Bug 14257 - Remove pCount parameter from vkAllocDescriptorSets
Diffstat (limited to 'loader')
-rw-r--r--loader/trampoline.c4
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)