| 2802 | } |
| 2803 | |
| 2804 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 2805 | { |
| 2806 | va_list args; |
| 2807 | va_start(args, fmt); |
| 2808 | appendfv(fmt, args); |
| 2809 | va_end(args); |
| 2810 | } |
| 2811 | |
| 2812 | // Helper: Text buffer for logging/accumulating text |
| 2813 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected