MCPcopy Create free account
hub / github.com/BoomingTech/Piccolo / LogText

Method LogText

engine/3rdparty/imgui/imgui.cpp:11811–11821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11809}
11810
11811void ImGui::LogText(const char* fmt, ...)
11812{
11813 ImGuiContext& g = *GImGui;
11814 if (!g.LogEnabled)
11815 return;
11816
11817 va_list args;
11818 va_start(args, fmt);
11819 LogTextV(g, fmt, args);
11820 va_end(args);
11821}
11822
11823void ImGui::LogTextV(const char* fmt, va_list args)
11824{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected