MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / TextV

Method TextV

lib/imgui/imgui_widgets.cpp:252–261  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

250}
251
252void 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
263void ImGui::TextColored(const ImVec4& col, const char* fmt, ...)
264{

Callers

nothing calls this directly

Calls 2

GetCurrentWindowFunction · 0.85
ImFormatStringVFunction · 0.85

Tested by

no test coverage detected