aboutsummaryrefslogtreecommitdiff
path: root/vulkan.py
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2015-05-29 09:32:35 -0500
committerMark Lobodzinski <mark@lunarg.com>2015-06-02 09:03:26 -0500
commit2dcdfd74f9efadad415fe0abbfecebc57a256ccc (patch)
tree1a006f4f2b060fa23cf212e53c56956a579a06f1 /vulkan.py
parent3ee11a2b2cb98bcc6af65eb87b867a27ad7c5715 (diff)
downloadusermoji-2dcdfd74f9efadad415fe0abbfecebc57a256ccc.tar.xz
vulkan.h: V97 -- Remove multiple allocations. Bug# 13948.
Remove multiple memory allocation requirements from API, and supporting changes in driver, demos, layers, and tests.
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")]),