MCPcopy Create free account
hub / github.com/Aegel5/SimpleSwitcher / LogText

Method LogText

imgui_tiny_app/imgui/imgui.cpp:15912–15922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15910}
15911
15912void ImGui::LogText(const char* fmt, ...)
15913{
15914 ImGuiContext& g = *GImGui;
15915 if (!g.LogEnabled)
15916 return;
15917
15918 va_list args;
15919 va_start(args, fmt);
15920 LogTextV(g, fmt, args);
15921 va_end(args);
15922}
15923
15924void ImGui::LogTextV(const char* fmt, va_list args)
15925{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected