| 12127 | } |
| 12128 | |
| 12129 | void ImGui::EndTooltip() |
| 12130 | { |
| 12131 | IM_ASSERT(GetCurrentWindowRead()->Flags & ImGuiWindowFlags_Tooltip); // Mismatched BeginTooltip()/EndTooltip() calls |
| 12132 | End(); |
| 12133 | } |
| 12134 | |
| 12135 | void ImGui::SetTooltip(const char* fmt, ...) |
| 12136 | { |
nothing calls this directly
no test coverage detected