| 16045 | } |
| 16046 | |
| 16047 | VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString( |
| 16048 | VmaAllocator allocator, |
| 16049 | char* pStatsString) |
| 16050 | { |
| 16051 | if(pStatsString != VMA_NULL) |
| 16052 | { |
| 16053 | VMA_ASSERT(allocator); |
| 16054 | VmaFreeString(allocator->GetAllocationCallbacks(), pStatsString); |
| 16055 | } |
| 16056 | } |
| 16057 | |
| 16058 | #endif // VMA_STATS_STRING_ENABLED |
| 16059 |