MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / LogText

Method LogText

plugins/Cardinal/src/DearImGui/imgui.cpp:10762–10772  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10760}
10761
10762void ImGui::LogText(const char* fmt, ...)
10763{
10764 ImGuiContext& g = *GImGui;
10765 if (!g.LogEnabled)
10766 return;
10767
10768 va_list args;
10769 va_start(args, fmt);
10770 LogTextV(g, fmt, args);
10771 va_end(args);
10772}
10773
10774void ImGui::LogTextV(const char* fmt, va_list args)
10775{

Callers

nothing calls this directly

Calls 1

LogTextVFunction · 0.85

Tested by

no test coverage detected