| 9932 | } |
| 9933 | |
| 9934 | int ImGui::GetMouseClickedCount(ImGuiMouseButton button) |
| 9935 | { |
| 9936 | ImGuiContext& g = *GImGui; |
| 9937 | IM_ASSERT(button >= 0 && button < IM_COUNTOF(g.IO.MouseDown)); |
| 9938 | return g.IO.MouseClickedCount[button]; |
| 9939 | } |
| 9940 | |
| 9941 | // Test if mouse cursor is hovering given rectangle |
| 9942 | // NB- Rectangle is clipped by our current clip setting |
nothing calls this directly
no outgoing calls
no test coverage detected