| 4300 | } |
| 4301 | |
| 4302 | static void VmaAddStatistics(VmaStatistics& inoutStats, const VmaStatistics& src) |
| 4303 | { |
| 4304 | inoutStats.blockCount += src.blockCount; |
| 4305 | inoutStats.allocationCount += src.allocationCount; |
| 4306 | inoutStats.blockBytes += src.blockBytes; |
| 4307 | inoutStats.allocationBytes += src.allocationBytes; |
| 4308 | } |
| 4309 | |
| 4310 | static void VmaClearDetailedStatistics(VmaDetailedStatistics& outStats) |
| 4311 | { |
no outgoing calls
no test coverage detected