| 1343 | } |
| 1344 | |
| 1345 | static void DestroyAllocation(const AllocInfo& allocation) |
| 1346 | { |
| 1347 | if(allocation.m_Buffer) |
| 1348 | vmaDestroyBuffer(g_hAllocator, allocation.m_Buffer, allocation.m_Allocation); |
| 1349 | else |
| 1350 | vmaDestroyImage(g_hAllocator, allocation.m_Image, allocation.m_Allocation); |
| 1351 | } |
| 1352 | |
| 1353 | static void DestroyAllAllocations(std::vector<AllocInfo>& allocations) |
| 1354 | { |
no test coverage detected