| 11809 | } |
| 11810 | |
| 11811 | void ImGui::LogText(const char* fmt, ...) |
| 11812 | { |
| 11813 | ImGuiContext& g = *GImGui; |
| 11814 | if (!g.LogEnabled) |
| 11815 | return; |
| 11816 | |
| 11817 | va_list args; |
| 11818 | va_start(args, fmt); |
| 11819 | LogTextV(g, fmt, args); |
| 11820 | va_end(args); |
| 11821 | } |
| 11822 | |
| 11823 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 11824 | { |
nothing calls this directly
no test coverage detected