diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-10-27 19:00:15 +0800 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-11-02 15:04:09 -0700 |
| commit | b6d30c6bceeb157b4941c22e5db957c3fb241136 (patch) | |
| tree | 0ff68d786a65ec9b59651a29188e9a3aea25fec0 /vulkan.py | |
| parent | f051d26df506cae72e56acd2517790209e47a895 (diff) | |
| download | usermoji-b6d30c6bceeb157b4941c22e5db957c3fb241136.tar.xz | |
bug 14918 part 4: more cleanups (WIP)
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -954,13 +954,13 @@ core = Extension( Proto("void", "CmdBeginQuery", [Param("VkCommandBuffer", "commandBuffer"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "slot"), + Param("uint32_t", "entry"), Param("VkQueryControlFlags", "flags")]), Proto("void", "CmdEndQuery", [Param("VkCommandBuffer", "commandBuffer"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "slot")]), + Param("uint32_t", "entry")]), Proto("void", "CmdResetQueryPool", [Param("VkCommandBuffer", "commandBuffer"), @@ -972,7 +972,7 @@ core = Extension( [Param("VkCommandBuffer", "commandBuffer"), Param("VkPipelineStageFlagBits", "pipelineStage"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "slot")]), + Param("uint32_t", "entry")]), Proto("void", "CmdCopyQueryPoolResults", [Param("VkCommandBuffer", "commandBuffer"), |
