| 16559 | } |
| 16560 | |
| 16561 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaMapMemory( |
| 16562 | VmaAllocator allocator, |
| 16563 | VmaAllocation allocation, |
| 16564 | void** ppData) |
| 16565 | { |
| 16566 | VMA_ASSERT(allocator && allocation && ppData); |
| 16567 | |
| 16568 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16569 | |
| 16570 | return allocator->Map(allocation, ppData); |
| 16571 | } |
| 16572 | |
| 16573 | VMA_CALL_PRE void VMA_CALL_POST vmaUnmapMemory( |
| 16574 | VmaAllocator allocator, |
no outgoing calls