summaryrefslogtreecommitdiff
path: root/src/input_common/motion_emu.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Implement full mouse supportGravatar german2020-11-251-179/+0
|
* input_common/CMakeLists: Make some warnings errorsGravatar Lioncash2020-10-151-20/+21
| | | | | Makes the input_common code warnings consistent with the rest of the codebase.
* Remove RealMotionDeviceGravatar german2020-09-041-4/+13
|
* input_common/motion_emu: 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-5/+5
| | | | | | | 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.
* common/math_util: Move contents into the Common namespaceGravatar Lioncash2019-02-271-2/+2
| | | | | These types are within the common library, so they should be within the Common namespace.
* common/vector_math: Move Vec[x] types into the Common namespaceGravatar Lioncash2019-02-261-11/+11
| | | | | These types are within the common library, so they should be using the Common namespace.
* common/quaternion: Move Quaternion into the Common namespaceGravatar Lioncash2019-02-261-4/+4
| | | | | Quaternion is within the common library, so it should be using the Common namespace.
* input_common: Add missing override specifiersGravatar Lioncash2018-08-021-1/+1
|
* math_util: Remove the Clamp() functionGravatar Lioncash2018-04-201-2/+3
| | | | | C++17 adds clamp() to the standard library, so we can remove ours in favor of it.
* motion_emu: fix initialization orderGravatar wwylele2017-08-221-1/+4
|
* motion_emu: no need to include thread in headerGravatar wwylele2017-08-191-0/+6
|
* move MotionEmu from core/frontend to input_common as a InputDeviceGravatar wwylele2017-08-111-0/+159