diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2015-05-29 09:32:35 -0500 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2015-06-02 09:03:26 -0500 |
| commit | 2dcdfd74f9efadad415fe0abbfecebc57a256ccc (patch) | |
| tree | 1a006f4f2b060fa23cf212e53c56956a579a06f1 /vulkan.py | |
| parent | 3ee11a2b2cb98bcc6af65eb87b867a27ad7c5715 (diff) | |
| download | usermoji-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-x | vulkan.py | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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")]), |
