| 650 | } |
| 651 | |
| 652 | void 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 | |
| 665 | void TimerEx::Init( ID3D11Device* pDev ) |
| 666 | { |
nothing calls this directly
no outgoing calls
no test coverage detected