MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / LogText

Method LogText

include/imgui/imgui.cpp:15250–15260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15248}
15249
15250void ImGui::LogText(const char* fmt, ...)
15251{
15252 ImGuiContext& g = *GImGui;
15253 if (!g.LogEnabled)
15254 return;
15255
15256 va_list args;
15257 va_start(args, fmt);
15258 LogTextV(g, fmt, args);
15259 va_end(args);
15260}
15261
15262void ImGui::LogTextV(const char* fmt, va_list args)
15263{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected