MCPcopy Create free account
hub / github.com/VictorGordan/opengl-tutorials / TextV

Method TextV

ImGUI GLFW Tutorial/imgui/imgui_widgets.cpp:266–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264}
265
266void 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
277void ImGui::TextColored(const ImVec4& col, const char* fmt, ...)
278{

Callers

nothing calls this directly

Calls 2

GetCurrentWindowFunction · 0.70
ImFormatStringVFunction · 0.70

Tested by

no test coverage detected