MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / LogText

Method LogText

TheForceEngine/TFE_Ui/imGUI/imgui.cpp:13566–13576  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13564}
13565
13566void ImGui::LogText(const char* fmt, ...)
13567{
13568 ImGuiContext& g = *GImGui;
13569 if (!g.LogEnabled)
13570 return;
13571
13572 va_list args;
13573 va_start(args, fmt);
13574 LogTextV(g, fmt, args);
13575 va_end(args);
13576}
13577
13578void ImGui::LogTextV(const char* fmt, va_list args)
13579{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected