| 9792 | } |
| 9793 | |
| 9794 | bool ImGui::IsKeyPressed(ImGuiKey key, bool repeat) |
| 9795 | { |
| 9796 | return IsKeyPressed(key, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); |
| 9797 | } |
| 9798 | |
| 9799 | // Important: unlike legacy IsKeyPressed(ImGuiKey, bool repeat=true) which DEFAULT to repeat, this requires EXPLICIT repeat. |
| 9800 | bool ImGui::IsKeyPressed(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id) |
nothing calls this directly
no test coverage detected