summaryrefslogtreecommitdiff
path: root/src/input_common/keyboard.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input_common: Rewrite keyboardGravatar german772021-11-241-121/+0
|
* input_common: Analog button, use time based position instead of frequent updatesGravatar german772021-05-301-0/+1
|
* Enable mouse toggle buttonsGravatar german772021-03-061-5/+7
|
* Enable button toggle for keyboard in the modifier buttonGravatar german2021-03-051-3/+26
|
* input_common/CMakeLists: Make some warnings errorsGravatar Lioncash2020-10-151-2/+3
| | | | | Makes the input_common code warnings consistent with the rest of the codebase.
* input_common/keyboard: Remove redundant moveGravatar MerryMage2020-06-191-1/+1
| | | | Named return value optimization automatically applies here.
* general: Use deducation guides for std::lock_guard and std::unique_lockGravatar Lioncash2019-04-011-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.
* input_common: Use std::move where applicableGravatar Lioncash2018-08-021-1/+2
| | | | Avoids unnecessary atomic reference count increments and decrements
* input_common: Add missing override specifiersGravatar Lioncash2018-08-021-1/+1
|
* citra-qt: release all buttons when render window focus is lostGravatar wwylele2017-03-171-0/+11
| | | | credit to @Hawkheart for the original idea
* InputCommon: add KeyboardGravatar wwylele2017-03-011-0/+82