| 2623 | } |
| 2624 | |
| 2625 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 2626 | { |
| 2627 | va_list args; |
| 2628 | va_start(args, fmt); |
| 2629 | appendfv(fmt, args); |
| 2630 | va_end(args); |
| 2631 | } |
| 2632 | |
| 2633 | // Helper: Text buffer for logging/accumulating text |
| 2634 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected