| 12636 | } |
| 12637 | |
| 12638 | void ImGui::LogText(const char* fmt, ...) |
| 12639 | { |
| 12640 | ImGuiContext& g = *GImGui; |
| 12641 | if (!g.LogEnabled) |
| 12642 | return; |
| 12643 | |
| 12644 | va_list args; |
| 12645 | va_start(args, fmt); |
| 12646 | LogTextV(g, fmt, args); |
| 12647 | va_end(args); |
| 12648 | } |
| 12649 | |
| 12650 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12651 | { |
nothing calls this directly
no test coverage detected