| 12133 | } |
| 12134 | |
| 12135 | void ImGui::SetTooltip(const char* fmt, ...) |
| 12136 | { |
| 12137 | va_list args; |
| 12138 | va_start(args, fmt); |
| 12139 | SetTooltipV(fmt, args); |
| 12140 | va_end(args); |
| 12141 | } |
| 12142 | |
| 12143 | void ImGui::SetTooltipV(const char* fmt, va_list args) |
| 12144 | { |
nothing calls this directly
no outgoing calls
no test coverage detected