MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / LogText

Method LogText

extern/imgui/imgui.cpp:12801–12811  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12799}
12800
12801void ImGui::LogText(const char* fmt, ...)
12802{
12803 ImGuiContext& g = *GImGui;
12804 if (!g.LogEnabled)
12805 return;
12806
12807 va_list args;
12808 va_start(args, fmt);
12809 LogTextV(g, fmt, args);
12810 va_end(args);
12811}
12812
12813void ImGui::LogTextV(const char* fmt, va_list args)
12814{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected