| 9996 | } |
| 9997 | |
| 9998 | int ImGui::GetMouseClickedCount(ImGuiMouseButton button) |
| 9999 | { |
| 10000 | ImGuiContext& g = *GImGui; |
| 10001 | IM_ASSERT(button >= 0 && button < IM_COUNTOF(g.IO.MouseDown)); |
| 10002 | return g.IO.MouseClickedCount[button]; |
| 10003 | } |
| 10004 | |
| 10005 | // Test if mouse cursor is hovering given rectangle |
| 10006 | // NB- Rectangle is clipped by our current clip setting |
nothing calls this directly
no outgoing calls
no test coverage detected