| 10772 | } |
| 10773 | |
| 10774 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 10775 | { |
| 10776 | ImGuiContext& g = *GImGui; |
| 10777 | if (!g.LogEnabled) |
| 10778 | return; |
| 10779 | |
| 10780 | LogTextV(g, fmt, args); |
| 10781 | } |
| 10782 | |
| 10783 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 10784 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected