| 11821 | } |
| 11822 | |
| 11823 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 11824 | { |
| 11825 | ImGuiContext& g = *GImGui; |
| 11826 | if (!g.LogEnabled) |
| 11827 | return; |
| 11828 | |
| 11829 | LogTextV(g, fmt, args); |
| 11830 | } |
| 11831 | |
| 11832 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 11833 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected