| 270 | } |
| 271 | |
| 272 | void ImGui::TextV(const char* fmt, va_list args) |
| 273 | { |
| 274 | ImGuiWindow* window = GetCurrentWindow(); |
| 275 | if (window->SkipItems) |
| 276 | return; |
| 277 | |
| 278 | // FIXME-OPT: Handle the %s shortcut? |
| 279 | const char* text, *text_end; |
| 280 | ImFormatStringToTempBufferV(&text, &text_end, fmt, args); |
| 281 | TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); |
| 282 | } |
| 283 | |
| 284 | void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) |
| 285 | { |
nothing calls this directly
no test coverage detected