| 2563 | } |
| 2564 | |
| 2565 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 2566 | { |
| 2567 | va_list args; |
| 2568 | va_start(args, fmt); |
| 2569 | appendfv(fmt, args); |
| 2570 | va_end(args); |
| 2571 | } |
| 2572 | |
| 2573 | // Helper: Text buffer for logging/accumulating text |
| 2574 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected