aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-11-12 06:09:22 +0800
committerJon Ashburn <jon@lunarg.com>2015-11-12 13:21:09 -0700
commit5041e3ccf68c17b0e0be2ad566c68a24a64c969b (patch)
treeb921087041c4e61d2166d784267f8cc1db66fe32 /vulkan.py
parentf0573749f3cea114072e7e54df15667ea2640ea2 (diff)
downloadusermoji-5041e3ccf68c17b0e0be2ad566c68a24a64c969b.tar.xz
bug 15120: rename vkCmdPushConstants "values" to "pValues"
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=15120
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/vulkan.py b/vulkan.py
index 918351a1..fb2c4c97 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -192,7 +192,7 @@ class Extension(object):
# VK core API
core = Extension(
name="VK_CORE",
- headers=["vulkan/vulkan.h", "vulkan/vk_debug_report_lunarg.h"],
+ headers=["vulkan/vulkan.h", "vk_debug_report_lunarg.h"],
objects=[
"VkInstance",
"VkPhysicalDevice",
@@ -989,7 +989,7 @@ core = Extension(
Param("VkShaderStageFlags", "stageFlags"),
Param("uint32_t", "offset"),
Param("uint32_t", "size"),
- Param("const void*", "values")]),
+ Param("const void*", "pValues")]),
Proto("void", "CmdBeginRenderPass",
[Param("VkCommandBuffer", "commandBuffer"),