| 165 | |
| 166 | #ifdef USE_TRACY_MEMORY_PLOTS |
| 167 | FORCE_INLINE void UpdateGroupTracyPlot(ProfilerMemory::Groups group) |
| 168 | { |
| 169 | // Track only selected groups in Tracy |
| 170 | uint32 bit = (uint32)(1 << ((int32)group & 31)); |
| 171 | if ((GroupTracyPlotEnable[(int32)group / 32] & bit) == bit) |
| 172 | { |
| 173 | TracyPlot(GroupNames[(int32)group].Ansi, (int64_t)GroupMemory[(int32)group]); |
| 174 | } |
| 175 | } |
| 176 | #else |
| 177 | #define UpdateGroupTracyPlot(group) |
| 178 | #endif |
no outgoing calls
no test coverage detected