MCPcopy Create free account
hub / github.com/VictorGordan/opengl-tutorials / LogText

Method LogText

ImGUI GLFW Tutorial/imgui/imgui.cpp:10084–10094  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10082}
10083
10084void ImGui::LogText(const char* fmt, ...)
10085{
10086 ImGuiContext& g = *GImGui;
10087 if (!g.LogEnabled)
10088 return;
10089
10090 va_list args;
10091 va_start(args, fmt);
10092 LogTextV(g, fmt, args);
10093 va_end(args);
10094}
10095
10096void ImGui::LogTextV(const char* fmt, va_list args)
10097{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.70

Tested by

no test coverage detected