| 1045 | } |
| 1046 | |
| 1047 | void DumpFrame(ProfilerFrame* frame) |
| 1048 | { |
| 1049 | dmLogInfo("**********************************************************************"); |
| 1050 | dmLogInfo("**********************************************************************"); |
| 1051 | dmLogInfo("Profiler threads:"); |
| 1052 | for (uint32_t i = 0; i < frame->m_Threads.Size(); ++i) |
| 1053 | { |
| 1054 | DumpThread(frame->m_Threads[i]); |
| 1055 | } |
| 1056 | |
| 1057 | dmLogInfo(""); |
| 1058 | dmLogInfo("Profiler properties:"); |
| 1059 | |
| 1060 | DumpProperties(frame); |
| 1061 | dmLogInfo("**********************************************************************"); |
| 1062 | } |
| 1063 | |
| 1064 | } // namespace dmProfileRender |
no test coverage detected