MCPcopy Create free account
hub / github.com/GPUOpen-Effects/GeometryFX / DeleteTimerTree

Method DeleteTimerTree

framework/d3d11/amd_sdk/src/Timer.cpp:652–663  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

650}
651
652void TimerEx::DeleteTimerTree( TimingEvent* te )
653{
654 // first delete all children
655 while (NULL != te)
656 {
657 DeleteTimerTree( te->m_firstChild );
658
659 TimingEvent* tmp = te;
660 te = te->m_next;
661 delete tmp;
662 }
663}
664
665void TimerEx::Init( ID3D11Device* pDev )
666{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected