| 3170 | } |
| 3171 | |
| 3172 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 3173 | { |
| 3174 | va_list args; |
| 3175 | va_start(args, fmt); |
| 3176 | appendfv(fmt, args); |
| 3177 | va_end(args); |
| 3178 | } |
| 3179 | |
| 3180 | // Helper: Text buffer for logging/accumulating text |
| 3181 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected