| 12648 | } |
| 12649 | |
| 12650 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12651 | { |
| 12652 | ImGuiContext& g = *GImGui; |
| 12653 | if (!g.LogEnabled) |
| 12654 | return; |
| 12655 | |
| 12656 | LogTextV(g, fmt, args); |
| 12657 | } |
| 12658 | |
| 12659 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 12660 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected