diff options
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -354,22 +354,25 @@ core = Extension( Param("size_t*", "pDataSize"), Param("void*", "pData")]), - Proto("VkResult", "BindObjectMemory", - [Param("VkObject", "object"), + Proto("VkResult", "QueueBindObjectMemory", + [Param("VkQueue", "queue"), + Param("VkObject", "object"), Param("uint32_t", "allocationIdx"), Param("VkGpuMemory", "mem"), Param("VkGpuSize", "offset")]), - Proto("VkResult", "BindObjectMemoryRange", - [Param("VkObject", "object"), + Proto("VkResult", "QueueBindObjectMemoryRange", + [Param("VkQueue", "queue"), + Param("VkObject", "object"), Param("uint32_t", "allocationIdx"), Param("VkGpuSize", "rangeOffset"), Param("VkGpuSize", "rangeSize"), Param("VkGpuMemory", "mem"), Param("VkGpuSize", "memOffset")]), - Proto("VkResult", "BindImageMemoryRange", - [Param("VkImage", "image"), + Proto("VkResult", "QueueBindImageMemoryRange", + [Param("VkQueue", "queue"), + Param("VkImage", "image"), Param("uint32_t", "allocationIdx"), Param("const VkImageMemoryBindInfo*", "bindInfo"), Param("VkGpuMemory", "mem"), |
