MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / UpdateGroupTracyPlot

Function UpdateGroupTracyPlot

Source/Engine/Profiler/ProfilerMemory.cpp:167–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

AddGroupMemoryFunction · 0.85
SubGroupMemoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected