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

Method appendf

ImGUI GLFW Tutorial/imgui/imgui.cpp:2152–2158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2150}
2151
2152void ImGuiTextBuffer::appendf(const char* fmt, ...)
2153{
2154 va_list args;
2155 va_start(args, fmt);
2156 appendfv(fmt, args);
2157 va_end(args);
2158}
2159
2160// Helper: Text buffer for logging/accumulating text
2161void ImGuiTextBuffer::appendfv(const char* fmt, va_list args)

Callers 3

ShowExampleAppLongTextFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected