| 10094 | } |
| 10095 | |
| 10096 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 10097 | { |
| 10098 | ImGuiContext& g = *GImGui; |
| 10099 | if (!g.LogEnabled) |
| 10100 | return; |
| 10101 | |
| 10102 | LogTextV(g, fmt, args); |
| 10103 | } |
| 10104 | |
| 10105 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 10106 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected