MCPcopy Create free account
hub / github.com/defold/defold / DeleteProfilerFrame

Function DeleteProfilerFrame

engine/profiler/src/profiler_render.cpp:915–924  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

913 }
914
915 void DeleteProfilerFrame(ProfilerFrame* frame)
916 {
917 if (!frame)
918 return;
919 for (uint32_t i = 0; i < frame->m_Threads.Size(); ++i)
920 {
921 DeleteProfilerThread(frame->m_Threads[i]);
922 }
923 delete frame;
924 }
925
926 static ProfilerThread* DuplicateProfilerThread(ProfilerThread* thread)
927 {

Callers 6

FlushRecordingFunction · 0.85
DeleteMethod · 0.85
UpdateRenderProfileFunction · 0.85
RenderProfilerFunction · 0.85
AppFinalizeProfilerFunction · 0.85
TEST_FFunction · 0.85

Calls 2

DeleteProfilerThreadFunction · 0.85
SizeMethod · 0.45

Tested by 1

TEST_FFunction · 0.68