| 10760 | } |
| 10761 | |
| 10762 | void ImGui::LogText(const char* fmt, ...) |
| 10763 | { |
| 10764 | ImGuiContext& g = *GImGui; |
| 10765 | if (!g.LogEnabled) |
| 10766 | return; |
| 10767 | |
| 10768 | va_list args; |
| 10769 | va_start(args, fmt); |
| 10770 | LogTextV(g, fmt, args); |
| 10771 | va_end(args); |
| 10772 | } |
| 10773 | |
| 10774 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 10775 | { |
nothing calls this directly
no test coverage detected