| 13576 | } |
| 13577 | |
| 13578 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 13579 | { |
| 13580 | ImGuiContext& g = *GImGui; |
| 13581 | if (!g.LogEnabled) |
| 13582 | return; |
| 13583 | |
| 13584 | LogTextV(g, fmt, args); |
| 13585 | } |
| 13586 | |
| 13587 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 13588 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected