aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorTony Barbour <tony@LunarG.com>2015-06-29 16:20:35 -0600
committerTony Barbour <tony@LunarG.com>2015-07-01 13:05:16 -0600
commit50bbca4293c3d2ee5b87fedb824e71f0f19e0c46 (patch)
tree3ab83c8db0587ff66ec67c1b6bce44571fc4a318 /vulkan.py
parent08ca8c9558891e43cb0431872ea188f1de3d39af (diff)
downloadusermoji-50bbca4293c3d2ee5b87fedb824e71f0f19e0c46.tar.xz
vulkan.h: Bug 14181 - Barriers need to be more precise
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/vulkan.py b/vulkan.py
index 4b23a3aa..6d457fb6 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -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")]),