| 12075 | } |
| 12076 | |
| 12077 | void ImGui::LogTextV(const char* fmt, va_list args) |
| 12078 | { |
| 12079 | ImGuiContext& g = *GImGui; |
| 12080 | if (!g.LogEnabled) |
| 12081 | return; |
| 12082 | |
| 12083 | LogTextV(g, fmt, args); |
| 12084 | } |
| 12085 | |
| 12086 | // Internal version that takes a position to decide on newline placement and pad items according to their depth. |
| 12087 | // We split text into individual lines to add current tree level padding |
nothing calls this directly
no test coverage detected