| 9619 | } |
| 9620 | |
| 9621 | bool ImGui::IsKeyPressed(ImGuiKey key, bool repeat) |
| 9622 | { |
| 9623 | return IsKeyPressed(key, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); |
| 9624 | } |
| 9625 | |
| 9626 | // Important: unlike legacy IsKeyPressed(ImGuiKey, bool repeat=true) which DEFAULT to repeat, this requires EXPLICIT repeat. |
| 9627 | bool ImGui::IsKeyPressed(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id) |
nothing calls this directly
no test coverage detected