aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 17:28:20 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-24 15:46:01 -0600
commita5fa53b8675cffc5d07450e6c8202f9821309385 (patch)
tree690f261c9e0935fedf4d9506f29efe283adcd208 /vulkan.py
parent9795a5629af84affc39cee421ecd35877948d91f (diff)
downloadusermoji-a5fa53b8675cffc5d07450e6c8202f9821309385.tar.xz
bug 14016: Make vkResetFences take const pFences
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14016
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vulkan.py b/vulkan.py
index 7fa074a1..e9905675 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -369,7 +369,7 @@ core = Extension(
Proto("VkResult", "ResetFences",
[Param("VkDevice", "device"),
Param("uint32_t", "fenceCount"),
- Param("VkFence*", "pFences")]),
+ Param("const VkFence*", "pFences")]),
Proto("VkResult", "GetFenceStatus",
[Param("VkDevice", "device"),