| 16809 | } |
| 16810 | |
| 16811 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaBindImageMemory( |
| 16812 | VmaAllocator allocator, |
| 16813 | VmaAllocation allocation, |
| 16814 | VkImage image) |
| 16815 | { |
| 16816 | VMA_ASSERT(allocator && allocation && image); |
| 16817 | |
| 16818 | VMA_DEBUG_LOG("vmaBindImageMemory"); |
| 16819 | |
| 16820 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16821 | |
| 16822 | return allocator->BindImageMemory(allocation, 0, image, VMA_NULL); |
| 16823 | } |
| 16824 | |
| 16825 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaBindImageMemory2( |
| 16826 | VmaAllocator allocator, |
no outgoing calls