| 10573 | } |
| 10574 | |
| 10575 | int ImGui::GetMouseClickedCount(ImGuiMouseButton button) |
| 10576 | { |
| 10577 | ImGuiContext& g = *GImGui; |
| 10578 | IM_ASSERT(button >= 0 && button < IM_COUNTOF(g.IO.MouseDown)); |
| 10579 | return g.IO.MouseClickedCount[button]; |
| 10580 | } |
| 10581 | |
| 10582 | // Test if mouse cursor is hovering given rectangle |
| 10583 | // NB- Rectangle is clipped by our current clip setting |
nothing calls this directly
no outgoing calls
no test coverage detected