MCPcopy Create free account
hub / github.com/RenderKit/embree / TextV

Method TextV

tutorials/common/imgui/imgui_widgets.cpp:272–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272void 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
284void ImGui::TextColored(const ImVec4& col, const char* fmt, ...)
285{

Callers

nothing calls this directly

Calls 2

GetCurrentWindowFunction · 0.85

Tested by

no test coverage detected