| 12811 | } |
| 12812 | |
| 12813 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12814 | { |
| 12815 | ImGuiContext& g = *GImGui; |
| 12816 | if (!g.LogEnabled) |
| 12817 | return; |
| 12818 | |
| 12819 | LogTextV(g, fmt, args); |
| 12820 | } |
| 12821 | |
| 12822 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 12823 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected