| 12799 | } |
| 12800 | |
| 12801 | void ImGui::LogText(const char* fmt, ...) |
| 12802 | { |
| 12803 | ImGuiContext& g = *GImGui; |
| 12804 | if (!g.LogEnabled) |
| 12805 | return; |
| 12806 | |
| 12807 | va_list args; |
| 12808 | va_start(args, fmt); |
| 12809 | LogTextV(g, fmt, args); |
| 12810 | va_end(args); |
| 12811 | } |
| 12812 | |
| 12813 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12814 | { |
nothing calls this directly
no test coverage detected