| 4512 | { |
| 4513 | |
| 4514 | void VmaClearStatistics(VmaStatistics& outStats) |
| 4515 | { |
| 4516 | outStats.blockCount = 0; |
| 4517 | outStats.allocationCount = 0; |
| 4518 | outStats.blockBytes = 0; |
| 4519 | outStats.allocationBytes = 0; |
| 4520 | } |
| 4521 | |
| 4522 | void VmaAddStatistics(VmaStatistics& inoutStats, const VmaStatistics& src) |
| 4523 | { |
no outgoing calls
no test coverage detected