summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lbl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: Convert source file copyright comments over to SPDXMorph2022-04-232-6/+4
| | | | | 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.
* service: Reduce header include overheadMorph2021-10-071-1/+0
|
* common/logging: Move Log::Entry declaration to a separate headerameerj2021-10-021-0/+1
| | | | This reduces the load of requiring to include std::chrono in all files which include log.h
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-25/+25
| | | | Transition to PascalCase for result names.
* service: Remove unused class variablesLioncash2021-05-051-1/+0
| | | | Prevents some warnings from occurring.
* acc/lbl: Remove unused variablesLioncash2021-04-231-2/+0
|
* lbl: Implement most of lblChloe Marcec2021-01-201-22/+261
| | | | Pretty basic service, only thing left to do is handle setting applying once set:sys is implemented
* service: Eliminate usages of the global system instanceLioncash2020-11-272-4/+8
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* lbl: Update function tableVolcaEM2020-06-271-0/+1
| | | This was based on Switchbrew page: https://switchbrew.org/wiki/Backlight_services
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-6/+6
|
* lbl: Update service function table namesLioncash2018-10-211-28/+28
| | | | Updated based off information provided by Switchbrew.
* service/lbl: Update service function tableLioncash2018-10-031-19/+19
| | | | | Amends the lbl service table to include new names of functions that were added to Switchbrew.
* service/lbl: Implement EnableVrMode, DisableVrMode and GetVrModeLioncash2018-07-271-3/+35
| | | | | Implements these functions according to the information available on Switch Brew.
* service: Add the lbl serviceLioncash2018-07-272-0/+73
Adds the skeleton of the lbl service based off the information provided by Switch Brew.