| 12063 | } |
| 12064 | |
| 12065 | void ImGui::LogText(const char* fmt, ...) |
| 12066 | { |
| 12067 | ImGuiContext& g = *GImGui; |
| 12068 | if (!g.LogEnabled) |
| 12069 | return; |
| 12070 | |
| 12071 | va_list args; |
| 12072 | va_start(args, fmt); |
| 12073 | LogTextV(g, fmt, args); |
| 12074 | va_end(args); |
| 12075 | } |
| 12076 | |
| 12077 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12078 | { |
nothing calls this directly
no test coverage detected