summaryrefslogtreecommitdiff
path: root/src/input_common/motion_emu.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-11-25Implement full mouse supportGravatar german1-179/+0
2020-10-15input_common/CMakeLists: Make some warnings errorsGravatar Lioncash1-20/+21
Makes the input_common code warnings consistent with the rest of the codebase.
2020-09-04Remove RealMotionDeviceGravatar german1-4/+13
2020-06-21Cleanup after linterGravatar Ameer1-3/+2
2020-06-21GC Adapter ImplementationGravatar Ameer1-2/+3
2020-06-19input_common/motion_emu: 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-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.
2019-02-27common/math_util: Move contents into the Common namespaceGravatar Lioncash1-2/+2
These types are within the common library, so they should be within the Common namespace.
2019-02-26common/vector_math: Move Vec[x] types into the Common namespaceGravatar Lioncash1-11/+11
These types are within the common library, so they should be using the Common namespace.
2019-02-26common/quaternion: Move Quaternion into the Common namespaceGravatar Lioncash1-4/+4
Quaternion is within the common library, so it should be using the Common namespace.
2018-08-02input_common: Add missing override specifiersGravatar Lioncash1-1/+1
2018-04-20math_util: Remove the Clamp() functionGravatar Lioncash1-2/+3
C++17 adds clamp() to the standard library, so we can remove ours in favor of it.
2017-08-22motion_emu: fix initialization orderGravatar wwylele1-1/+4
2017-08-19motion_emu: no need to include thread in headerGravatar wwylele1-0/+6
2017-08-11move MotionEmu from core/frontend to input_common as a InputDeviceGravatar wwylele1-0/+159