| 15248 | } |
| 15249 | |
| 15250 | void ImGui::LogText(const char* fmt, ...) |
| 15251 | { |
| 15252 | ImGuiContext& g = *GImGui; |
| 15253 | if (!g.LogEnabled) |
| 15254 | return; |
| 15255 | |
| 15256 | va_list args; |
| 15257 | va_start(args, fmt); |
| 15258 | LogTextV(g, fmt, args); |
| 15259 | va_end(args); |
| 15260 | } |
| 15261 | |
| 15262 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 15263 | { |
nothing calls this directly
no test coverage detected