From 2dcdfd74f9efadad415fe0abbfecebc57a256ccc Mon Sep 17 00:00:00 2001 From: Mark Lobodzinski Date: Fri, 29 May 2015 09:32:35 -0500 Subject: vulkan.h: V97 -- Remove multiple allocations. Bug# 13948. Remove multiple memory allocation requirements from API, and supporting changes in driver, demos, layers, and tests. --- vulkan.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'vulkan.py') 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")]), -- cgit v1.2.3