aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/vulkan.py b/vulkan.py
index 5112e367..9301b512 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -319,6 +319,11 @@ core = Extension(
Proto("VkResult", "UnmapMemory",
[Param("VkDeviceMemory", "mem")]),
+ Proto("VkResult", "FlushMappedMemory",
+ [Param("VkDeviceMemory", "mem"),
+ Param("VkDeviceSize", "offset"),
+ Param("VkDeviceSize", "size")]),
+
Proto("VkResult", "PinSystemMemory",
[Param("VkDevice", "device"),
Param("const void*", "pSysMem"),