| 2501 | } |
| 2502 | |
| 2503 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 2504 | { |
| 2505 | va_list args; |
| 2506 | va_start(args, fmt); |
| 2507 | appendfv(fmt, args); |
| 2508 | va_end(args); |
| 2509 | } |
| 2510 | |
| 2511 | // Helper: Text buffer for logging/accumulating text |
| 2512 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected