| 8260 | } |
| 8261 | |
| 8262 | bool ImGui::IsMouseReleased(ImGuiMouseButton button) |
| 8263 | { |
| 8264 | ImGuiContext& g = *GImGui; |
| 8265 | IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); |
| 8266 | return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // Should be same as IsKeyReleased(MouseButtonToKey(button), ImGuiKeyOwner_Any) |
| 8267 | } |
| 8268 | |
| 8269 | bool ImGui::IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id) |
| 8270 | { |
nothing calls this directly
no test coverage detected