MCPcopy Create free account
hub / github.com/RenderKit/embree / LogText

Method LogText

tutorials/common/imgui/imgui.cpp:12065–12075  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12063}
12064
12065void ImGui::LogText(const char* fmt, ...)
12066{
12067 ImGuiContext& g = *GImGui;
12068 if (!g.LogEnabled)
12069 return;
12070
12071 va_list args;
12072 va_start(args, fmt);
12073 LogTextV(g, fmt, args);
12074 va_end(args);
12075}
12076
12077void ImGui::LogTextV(const char* fmt, va_list args)
12078{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected