| 264 | } |
| 265 | |
| 266 | void ImGui::TextV(const char* fmt, va_list args) |
| 267 | { |
| 268 | ImGuiWindow* window = GetCurrentWindow(); |
| 269 | if (window->SkipItems) |
| 270 | return; |
| 271 | |
| 272 | ImGuiContext& g = *GImGui; |
| 273 | const char* text_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); |
| 274 | TextEx(g.TempBuffer, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); |
| 275 | } |
| 276 | |
| 277 | void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) |
| 278 | { |
nothing calls this directly
no test coverage detected