diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-06-29 16:20:35 -0600 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2015-07-01 13:05:16 -0600 |
| commit | 50bbca4293c3d2ee5b87fedb824e71f0f19e0c46 (patch) | |
| tree | 3ab83c8db0587ff66ec67c1b6bce44571fc4a318 /vulkan.py | |
| parent | 08ca8c9558891e43cb0431872ea188f1de3d39af (diff) | |
| download | usermoji-50bbca4293c3d2ee5b87fedb824e71f0f19e0c46.tar.xz | |
vulkan.h: Bug 14181 - Barriers need to be more precise
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -754,26 +754,27 @@ core = Extension( Proto("void", "CmdSetEvent", [Param("VkCmdBuffer", "cmdBuffer"), Param("VkEvent", "event"), - Param("VkPipeEvent", "pipeEvent")]), + Param("VkPipelineStageFlags", "stageMask")]), Proto("void", "CmdResetEvent", [Param("VkCmdBuffer", "cmdBuffer"), Param("VkEvent", "event"), - Param("VkPipeEvent", "pipeEvent")]), + Param("VkPipelineStageFlags", "stageMask")]), Proto("void", "CmdWaitEvents", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkWaitEvent", "waitEvent"), Param("uint32_t", "eventCount"), Param("const VkEvent*", "pEvents"), + Param("VkPipelineStageFlags", "sourceStageMask"), + Param("VkPipelineStageFlags", "destStageMask"), Param("uint32_t", "memBarrierCount"), Param("const void**", "ppMemBarriers")]), Proto("void", "CmdPipelineBarrier", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkWaitEvent", "waitEvent"), - Param("uint32_t", "pipeEventCount"), - Param("const VkPipeEvent*", "pPipeEvents"), + Param("VkPipelineStageFlags", "sourceStageMask"), + Param("VkPipelineStageFlags", "destStageMask"), + Param("bool32_t", "byRegion"), Param("uint32_t", "memBarrierCount"), Param("const void**", "ppMemBarriers")]), |
