Parts of this class are a modification of the one that ships with Dear ImGui. The DearImGui licence (MIT) may be found in the txt file Licence_DearImGui_MIT.txt in the Data folder.
| 435 | // Parts of this class are a modification of the one that ships with Dear ImGui. The DearImGui |
| 436 | // licence (MIT) may be found in the txt file Licence_DearImGui_MIT.txt in the Data folder. |
| 437 | void Viewer::OutputLog::ClearLog() |
| 438 | { |
| 439 | LogBuf.clear(); |
| 440 | LogLineOffsets.clear(); |
| 441 | LogLineOffsets.push_back(0); |
| 442 | } |
| 443 | |
| 444 | |
| 445 | void Viewer::OutputLog::AddLog(const char* fmt, ...) |