| 3149 | } |
| 3150 | |
| 3151 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 3152 | { |
| 3153 | va_list args; |
| 3154 | va_start(args, fmt); |
| 3155 | appendfv(fmt, args); |
| 3156 | va_end(args); |
| 3157 | } |
| 3158 | |
| 3159 | // Helper: Text buffer for logging/accumulating text |
| 3160 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected