| 10082 | } |
| 10083 | |
| 10084 | void ImGui::LogText(const char* fmt, ...) |
| 10085 | { |
| 10086 | ImGuiContext& g = *GImGui; |
| 10087 | if (!g.LogEnabled) |
| 10088 | return; |
| 10089 | |
| 10090 | va_list args; |
| 10091 | va_start(args, fmt); |
| 10092 | LogTextV(g, fmt, args); |
| 10093 | va_end(args); |
| 10094 | } |
| 10095 | |
| 10096 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 10097 | { |
nothing calls this directly
no test coverage detected