| 15910 | } |
| 15911 | |
| 15912 | void ImGui::LogText(const char* fmt, ...) |
| 15913 | { |
| 15914 | ImGuiContext& g = *GImGui; |
| 15915 | if (!g.LogEnabled) |
| 15916 | return; |
| 15917 | |
| 15918 | va_list args; |
| 15919 | va_start(args, fmt); |
| 15920 | LogTextV(g, fmt, args); |
| 15921 | va_end(args); |
| 15922 | } |
| 15923 | |
| 15924 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 15925 | { |
nothing calls this directly
no test coverage detected