| 9720 | } |
| 9721 | |
| 9722 | bool ImGui::IsMouseReleased(ImGuiMouseButton button) |
| 9723 | { |
| 9724 | ImGuiContext& g = *GImGui; |
| 9725 | IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); |
| 9726 | return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // Should be same as IsKeyReleased(MouseButtonToKey(button), ImGuiKeyOwner_Any) |
| 9727 | } |
| 9728 | |
| 9729 | bool ImGui::IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id) |
| 9730 | { |
nothing calls this directly
no test coverage detected