aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
Diffstat (limited to 'vulkan.py')
-rwxr-xr-xvulkan.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/vulkan.py b/vulkan.py
index 16b06040..9aab9148 100755
--- a/vulkan.py
+++ b/vulkan.py
@@ -359,12 +359,12 @@ core = Extension(
Proto("VkResult", "DestroyObject",
[Param("VkDevice", "device"),
- Param("VkObjectType", "objType"),
+ Param("VkObjectType", "objType"),
Param("VkObject", "object")]),
Proto("VkResult", "GetObjectInfo",
[Param("VkDevice", "device"),
- Param("VkObjectType", "objType"),
+ Param("VkObjectType", "objType"),
Param("VkObject", "object"),
Param("VkObjectInfoType", "infoType"),
Param("size_t*", "pDataSize"),
@@ -372,16 +372,14 @@ core = Extension(
Proto("VkResult", "BindObjectMemory",
[Param("VkDevice", "device"),
- Param("VkObjectType", "objType"),
+ Param("VkObjectType", "objType"),
Param("VkObject", "object"),
- Param("uint32_t", "allocationIdx"),
Param("VkDeviceMemory", "mem"),
Param("VkDeviceSize", "offset")]),
Proto("VkResult", "QueueBindSparseBufferMemory",
[Param("VkQueue", "queue"),
Param("VkBuffer", "buffer"),
- Param("uint32_t", "allocationIdx"),
Param("VkDeviceSize", "rangeOffset"),
Param("VkDeviceSize", "rangeSize"),
Param("VkDeviceMemory", "mem"),
@@ -390,7 +388,6 @@ core = Extension(
Proto("VkResult", "QueueBindSparseImageMemory",
[Param("VkQueue", "queue"),
Param("VkImage", "image"),
- Param("uint32_t", "allocationIdx"),
Param("const VkImageMemoryBindInfo*", "pBindInfo"),
Param("VkDeviceMemory", "mem"),
Param("VkDeviceSize", "memOffset")]),