| 17803 | //----------------------------------------------------------------------------- |
| 17804 | |
| 17805 | void ImGui::DebugLog(const char* fmt, ...) |
| 17806 | { |
| 17807 | va_list args; |
| 17808 | va_start(args, fmt); |
| 17809 | DebugLogV(fmt, args); |
| 17810 | va_end(args); |
| 17811 | } |
| 17812 | |
| 17813 | void ImGui::DebugLogV(const char* fmt, va_list args) |
| 17814 | { |
nothing calls this directly
no outgoing calls
no test coverage detected