summaryrefslogtreecommitdiff
path: root/src/input_common/keyboard.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-24input_common: Rewrite keyboardGravatar german771-121/+0
2021-05-30input_common: Analog button, use time based position instead of frequent updatesGravatar german771-0/+1
2021-03-06Enable mouse toggle buttonsGravatar german771-5/+7
2021-03-05Enable button toggle for keyboard in the modifier buttonGravatar german1-3/+26
2020-10-15input_common/CMakeLists: Make some warnings errorsGravatar Lioncash1-2/+3
Makes the input_common code warnings consistent with the rest of the codebase.
2020-07-02Fix unnecessary diffsGravatar Ameer1-2/+1
2020-06-23cleanup check access, read, and factory GetNextInput funcs. Use size rather ↵Gravatar Ameer1-1/+0
than magic number
2020-06-21Cleanup after linterGravatar Ameer1-6/+3
2020-06-21GC Adapter ImplementationGravatar Ameer1-4/+9
2020-06-19input_common/keyboard: Remove redundant moveGravatar MerryMage1-1/+1
Named return value optimization automatically applies here.
2019-04-01general: Use deducation guides for std::lock_guard and std::unique_lockGravatar Lioncash1-4/+4
Since C++17, the introduction of deduction guides for locking facilities means that we no longer need to hardcode the mutex type into the locks themselves, making it easier to switch mutex types, should it ever be necessary in the future.
2018-08-02input_common: Use std::move where applicableGravatar Lioncash1-1/+2
Avoids unnecessary atomic reference count increments and decrements
2018-08-02input_common: Add missing override specifiersGravatar Lioncash1-1/+1
2017-03-17citra-qt: release all buttons when render window focus is lostGravatar wwylele1-0/+11
credit to @Hawkheart for the original idea
2017-03-01InputCommon: add KeyboardGravatar wwylele1-0/+82