| 3040 | } |
| 3041 | |
| 3042 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 3043 | { |
| 3044 | va_list args; |
| 3045 | va_start(args, fmt); |
| 3046 | appendfv(fmt, args); |
| 3047 | va_end(args); |
| 3048 | } |
| 3049 | |
| 3050 | // Helper: Text buffer for logging/accumulating text |
| 3051 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected