MCPcopy Create free account
hub / github.com/Wemino/MarkerPatch / GetMouseClickedCount

Method GetMouseClickedCount

include/imgui/imgui.cpp:9998–10003  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9996}
9997
9998int 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected