| 15056 | } |
| 15057 | |
| 15058 | void ImGui::LogText(const char* fmt, ...) |
| 15059 | { |
| 15060 | ImGuiContext& g = *GImGui; |
| 15061 | if (!g.LogEnabled) |
| 15062 | return; |
| 15063 | |
| 15064 | va_list args; |
| 15065 | va_start(args, fmt); |
| 15066 | LogTextV(g, fmt, args); |
| 15067 | va_end(args); |
| 15068 | } |
| 15069 | |
| 15070 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 15071 | { |
nothing calls this directly
no test coverage detected