| 16571 | } |
| 16572 | |
| 16573 | VMA_CALL_PRE void VMA_CALL_POST vmaUnmapMemory( |
| 16574 | VmaAllocator allocator, |
| 16575 | VmaAllocation allocation) |
| 16576 | { |
| 16577 | VMA_ASSERT(allocator && allocation); |
| 16578 | |
| 16579 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16580 | |
| 16581 | allocator->Unmap(allocation); |
| 16582 | } |
| 16583 | |
| 16584 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaFlushAllocation( |
| 16585 | VmaAllocator allocator, |
no outgoing calls