aboutsummaryrefslogtreecommitdiff
path: root/src/input_common/sdl/sdl_impl.h
AgeCommit message (Collapse)Author
2021-11-24input_common: Rewrite SDLgerman77
2021-07-16sdl_impl, emu_window: Remove clang ignorelat9nq
Fixed upstream by libsdl-org/SDL@25fc40b0bd44c484051064bc6b945ea9943f88dd
2021-05-22input_common: Add dual joycon supportgerman77
2021-05-15input_common: Implement SDL motiongerman77
2021-03-30InputCommon: Name properly xbox 360 and one controllers, Fix mappings for ↵german77
Nintendo Pro controllers
2020-11-15input_common: Add VibrationDevice and VibrationDeviceFactoryMorph
A vibration device is an input device that returns an unsigned byte as status. It represents whether the vibration device supports vibration or not. If the status returns 1, it supports vibration. Otherwise, it does not support vibration.
2020-09-25Add random motion input to SDLgerman
2020-08-26Project Mjölnir: Part 1Morph
Co-authored-by: James Rowe <jroweboy@gmail.com> Co-authored-by: Its-Rei <kupfel@gmail.com>
2019-06-03input_common/sdl/sdl_impl: Move documentation comments to header where ↵Lioncash
applicable Places the documentation comments with the rest of SDLState's member function documentation.
2019-06-03input_common/sdl: Remove unused header includes and forward declarationsLioncash
Gets rid of a few unnecessary inclusion dependencies. It also uncovered a few indirect inclusion dependencies being relied upon.
2019-03-18input_common/sdl: Use a type alias to shorten declaration of GetPollersLioncash
Just makes the definitions a little bit more tidy.
2019-03-02Input: Remove global variables from SDL InputJames Rowe
Changes the interface as well to remove any unique methods that frontends needed to call such as StartJoystickEventHandler by conditionally starting the polling thread only if the frontend hasn't started it already. Additionally, moves all global state into a single SDLState class in order to guarantee that the destructors are called in the proper order
2019-03-02Input: Copy current SDL.h/cpp files to implJames Rowe
This should make reviewing much easier as you can then see what changed happened between the old file and the new one