MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / LogText

Method LogText

Dependencies/ImGui/src/imgui.cpp:15058–15068  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15056}
15057
15058void ImGui::LogText(const char* fmt, ...)
15059{
15060 ImGuiContext& g = *GImGui;
15061 if (!g.LogEnabled)
15062 return;
15063
15064 va_list args;
15065 va_start(args, fmt);
15066 LogTextV(g, fmt, args);
15067 va_end(args);
15068}
15069
15070void ImGui::LogTextV(const char* fmt, va_list args)
15071{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected