| 974 | #ifndef _D3D12MA_STATISTICS_FUNCTIONS |
| 975 | |
| 976 | static void ClearStatistics(Statistics& outStats) |
| 977 | { |
| 978 | outStats.BlockCount = 0; |
| 979 | outStats.AllocationCount = 0; |
| 980 | outStats.BlockBytes = 0; |
| 981 | outStats.AllocationBytes = 0; |
| 982 | } |
| 983 | |
| 984 | static void ClearDetailedStatistics(DetailedStatistics& outStats) |
| 985 | { |
no outgoing calls
no test coverage detected