| 14919 | } |
| 14920 | |
| 14921 | void VmaAllocator_T::DestroyPool(VmaPool pool) |
| 14922 | { |
| 14923 | // Remove from m_Pools. |
| 14924 | { |
| 14925 | VmaMutexLockWrite lock(m_PoolsMutex, m_UseMutex); |
| 14926 | m_Pools.Remove(pool); |
| 14927 | } |
| 14928 | |
| 14929 | vma_delete(this, pool); |
| 14930 | } |
| 14931 | |
| 14932 | void VmaAllocator_T::GetPoolStatistics(VmaPool pool, VmaStatistics* pPoolStats) |
| 14933 | { |
nothing calls this directly
no test coverage detected