| 2089 | } |
| 2090 | |
| 2091 | void ImGuiTextBuffer::appendf(const char* fmt, ...) |
| 2092 | { |
| 2093 | va_list args; |
| 2094 | va_start(args, fmt); |
| 2095 | appendfv(fmt, args); |
| 2096 | va_end(args); |
| 2097 | } |
| 2098 | |
| 2099 | // Helper: Text buffer for logging/accumulating text |
| 2100 | void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) |
no outgoing calls
no test coverage detected