summaryrefslogtreecommitdiffstats
path: root/src/core/hid/emulated_console.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2022-04-07core: hid: Reduce the amount of dataracesgerman771-0/+1
2022-02-02general: Move deleted copy/move constructor/assignment operators to public interfaceLioncash1-0/+1
This allows for better compiler errors, where the compiler will state a copy or move couldn't occur due to the relevant function being deleted. Previously a compiler would warn about the relevant function not being accessible (which, while true, isn't as informative as it could be).
2021-12-14common/input: Avoid numerous large copies of CallbackStatusLioncash1-2/+2
CallbackStatus instances aren't the cheapest things to copy around (relative to everything else), given that they're currently 520 bytes in size and are currently copied numerous times when callbacks are invoked. Instead, we can pass the status by const reference to avoid all the copying.
2021-12-13service/hid: Improve console motion accuracyNarr the Reg1-0/+2
2021-11-29core: hid: Mark constructors as explicitMorph1-1/+1
2021-11-29core: hid: Cleanup and amend documentationMorph1-12/+14
2021-11-25service/hid: Remove includes of core.h and settings.hgerman771-1/+0
2021-11-25kraken: Address comments from reviewgerman771-6/+9
start lion review
2021-11-25Morph review first wavegerman771-5/+5
2021-11-25service/hid: Fix gesture inputgerman771-0/+3
2021-11-25core/hid: Documment some filesgerman771-14/+55
2021-11-25core/hid: Add emulated controllersgerman771-0/+142