MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / LogText

Method LogText

KBotExt/imgui/imgui.cpp:12638–12648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12636}
12637
12638void ImGui::LogText(const char* fmt, ...)
12639{
12640 ImGuiContext& g = *GImGui;
12641 if (!g.LogEnabled)
12642 return;
12643
12644 va_list args;
12645 va_start(args, fmt);
12646 LogTextV(g, fmt, args);
12647 va_end(args);
12648}
12649
12650void ImGui::LogTextV(const char* fmt, va_list args)
12651{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected