summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/swkbd.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add all services to the Service namespaceLioncash2016-12-111-2/+2
| | | | | Previously there was a split where some of the services were in the Service namespace and others were not.
* applet: Move common IsRunning underlying variable to the Applet classLioncash2016-12-071-2/+2
| | | | Gets rid of basic duplication.
* APT/Applets: Renamed the members of the SignalType enum.Subv2016-11-191-3/+3
| | | | Names now make sense and match 3dbrew.
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-211-4/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-181-9/+11
|
* APT: Remove use of Memory::GetPointerMerryMage2016-05-211-8/+7
|
* Applets/swkdb: Remove use of Memory::GetPointerMerryMage2016-05-211-1/+1
|
* HLE/Applets: Give each applet its own block of heap memory, and use that when creating the framebuffer shared memory block.Subv2016-05-131-2/+6
|
* Kernel/SharedMemory: Properly implemented shared memory support.Subv2016-05-131-2/+2
| | | | | | | Applications can request the kernel to allocate a piece of the linear heap for them when creating a shared memory object. Shared memory areas are now properly mapped into the target processes when calling svcMapMemoryBlock. Removed the APT Shared Font hack as it is no longer needed.
* HLE/Applets: Use the correct size for the framebuffer SharedMemory in the swkbd and MiiSelector applets.Subv2016-05-071-8/+12
|
* Core: Fix applet includes using iwyu.Emmanuel Gil Peyrot2015-07-121-0/+8
|
* Applets: Reworked how the Applet update event is handled.Subv2015-07-121-7/+6
| | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* Applets: Add infrastructure to allow custom drawing and input handling in Applets.Subv2015-07-121-6/+39
|
* HLE/APT: Initial HLE support for applets.Subv2015-07-121-0/+73
Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.