| 2150 | } |
| 2151 | |
| 2152 | void 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 |
| 2161 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected