| 250 | } |
| 251 | |
| 252 | void ImGui::TextV(const char* fmt, va_list args) |
| 253 | { |
| 254 | ImGuiWindow* window = GetCurrentWindow(); |
| 255 | if (window->SkipItems) |
| 256 | return; |
| 257 | |
| 258 | ImGuiContext& g = *GImGui; |
| 259 | const char* text_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); |
| 260 | TextEx(g.TempBuffer, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); |
| 261 | } |
| 262 | |
| 263 | void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) |
| 264 | { |
nothing calls this directly
no test coverage detected