| 484 | } |
| 485 | |
| 486 | void ProfilerMemory::OnGroupUpdate(Groups group, int64 sizeDelta, int64 countDelta) |
| 487 | { |
| 488 | Platform::InterlockedAdd(&GroupMemory[(int32)group], sizeDelta); |
| 489 | Platform::InterlockedAdd(&GroupMemoryCount[(int32)group], countDelta); |
| 490 | UPDATE_PEEK(group); |
| 491 | } |
| 492 | |
| 493 | void ProfilerMemory::OnGroupSet(Groups group, int64 size, int64 count) |
| 494 | { |
nothing calls this directly
no test coverage detected