aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-10-27 18:59:16 +0800
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-11-02 14:57:10 -0700
commite6ac313a33113e8422f2d01827d9b63860fed4d7 (patch)
tree860fafdf6824a2d0a36b2dc1072a17e6d0012440 /vulkan.py
parentafd0386f54fff5d93f546a19a4f385b896009dff (diff)
downloadusermoji-e6ac313a33113e8422f2d01827d9b63860fed4d7.tar.xz
bug 14921 part 3: typos
Nothing to do. https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14921
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/vulkan.py b/vulkan.py
index 73134d05..93367137 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -694,12 +694,12 @@ core = Extension(
Proto("void", "DestroyCommandPool",
[Param("VkDevice", "device"),
- Param("VkCommandPool", "CommandPool"),
+ Param("VkCommandPool", "commandPool"),
Param("const VkAllocationCallbacks*", "pAllocator")]),
Proto("VkResult", "ResetCommandPool",
[Param("VkDevice", "device"),
- Param("VkCommandPool", "CommandPool"),
+ Param("VkCommandPool", "commandPool"),
Param("VkCommandPoolResetFlags", "flags")]),
Proto("VkResult", "AllocateCommandBuffers",
@@ -709,7 +709,7 @@ core = Extension(
Proto("void", "FreeCommandBuffers",
[Param("VkDevice", "device"),
- Param("VkCommandPool", "CommandPool"),
+ Param("VkCommandPool", "commandPool"),
Param("uint32_t", "commandBufferCount"),
Param("const VkCommandBuffer*", "pCommandBuffers")]),