| 15068 | } |
| 15069 | |
| 15070 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 15071 | { |
| 15072 | ImGuiContext& g = *GImGui; |
| 15073 | if (!g.LogEnabled) |
| 15074 | return; |
| 15075 | |
| 15076 | LogTextV(g, fmt, args); |
| 15077 | } |
| 15078 | |
| 15079 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 15080 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected