| 13564 | } |
| 13565 | |
| 13566 | void ImGui::LogText(const char* fmt, ...) |
| 13567 | { |
| 13568 | ImGuiContext& g = *GImGui; |
| 13569 | if (!g.LogEnabled) |
| 13570 | return; |
| 13571 | |
| 13572 | va_list args; |
| 13573 | va_start(args, fmt); |
| 13574 | LogTextV(g, fmt, args); |
| 13575 | va_end(args); |
| 13576 | } |
| 13577 | |
| 13578 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 13579 | { |
nothing calls this directly
no test coverage detected