| 16700 | } |
| 16701 | |
| 16702 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaCheckCorruption( |
| 16703 | VmaAllocator allocator, |
| 16704 | uint32_t memoryTypeBits) |
| 16705 | { |
| 16706 | VMA_ASSERT(allocator); |
| 16707 | |
| 16708 | VMA_DEBUG_LOG("vmaCheckCorruption"); |
| 16709 | |
| 16710 | VMA_DEBUG_GLOBAL_MUTEX_LOCK |
| 16711 | |
| 16712 | return allocator->CheckCorruption(memoryTypeBits); |
| 16713 | } |
| 16714 | |
| 16715 | VMA_CALL_PRE VkResult VMA_CALL_POST vmaBeginDefragmentation( |
| 16716 | VmaAllocator allocator, |
no outgoing calls