diff options
| author | Cody Northrop <cody@lunarg.com> | 2015-04-16 13:41:56 -0600 |
|---|---|---|
| committer | Cody Northrop <cody@lunarg.com> | 2015-04-17 12:37:47 -0600 |
| commit | fb5185a983807d44bb7b1b7389c44eda7b33bcf0 (patch) | |
| tree | 65918a8c26a063d40598d3111c77b282d275f9dc /vulkan.py | |
| parent | e5dfd21ca1a9ff58bde948f1c52bbbf2c674ba67 (diff) | |
| download | usermoji-fb5185a983807d44bb7b1b7389c44eda7b33bcf0.tar.xz | |
vulkan: Update vulkan.h for revision 88 -- Bug #13744
Rename some vkCmdBindDescriptorSets parameters and add a dynamic offset count.
v2: Add a check against dynamicOffsetCount before copying dset data.
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -632,10 +632,11 @@ core = Extension( Proto("void", "CmdBindDescriptorSets", [Param("VkCmdBuffer", "cmdBuffer"), Param("VkPipelineBindPoint", "pipelineBindPoint"), - Param("uint32_t", "layoutChainSlot"), - Param("uint32_t", "count"), + Param("uint32_t", "firstSet"), + Param("uint32_t", "setCount"), Param("const VkDescriptorSet*", "pDescriptorSets"), - Param("const uint32_t*", "pUserData")]), + Param("uint32_t", "dynamicOffsetCount"), + Param("const uint32_t*", "pDynamicOffsets")]), Proto("void", "CmdBindVertexBuffers", [Param("VkCmdBuffer", "cmdBuffer"), |
