| 8324 | } |
| 8325 | |
| 8326 | bool ImGui::IsMouseDoubleClicked(ImGuiMouseButton button) |
| 8327 | { |
| 8328 | ImGuiContext& g = *GImGui; |
| 8329 | IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); |
| 8330 | return g.IO.MouseClickedCount[button] == 2 && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); |
| 8331 | } |
| 8332 | |
| 8333 | int ImGui::GetMouseClickedCount(ImGuiMouseButton button) |
| 8334 | { |
nothing calls this directly
no test coverage detected