summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pl_u.cpp (follow)
Commit message (Expand)AuthorAgeFilesLines
* hle: kernel: Refactor to allocate a ServiceThread per service handler.bunnei2021-06-051-2/+0
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-6/+6
* common: fs: Rework the Common Filesystem interface to make use of std::filesystem (#6270)Morph2021-05-261-2/+0
* fixup! hle: kernel: Migrate KSharedMemory to KAutoObject.bunnei2021-05-061-2/+2
* hle: kernel: Migrate KSharedMemory to KAutoObject.bunnei2021-05-061-6/+2
* hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei2021-05-061-1/+1
* pl_u: Update to 12.xgerman772021-04-091-0/+4
* hle: kernel: Rename SharedMemory to KSharedMemory.bunnei2021-02-191-2/+2
* pl_u: Fix read out of boundsAlessandro Astone2021-02-061-2/+7
* pl_u, applets/web: Decrypt shared fonts to TTF filesMorph2020-12-181-18/+12
* core: Remove unnecessary enum casts in log callsLioncash2020-12-081-6/+3
* service: Eliminate usages of the global system instanceLioncash2020-11-271-2/+2
* core: Fix clang build pt.3Lioncash2020-10-221-11/+1
* Revert "core: Fix clang build"bunnei2020-10-211-1/+11
* core: Fix clang buildLioncash2020-10-181-11/+1
* service: Update function tablesVolcaEM2020-06-291-1/+1
* service: Update function tablesLioncash2020-04-201-0/+1
* service: pl_u: Update for new shared memory layout.bunnei2020-04-171-7/+5
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-1/+7
|\
| * service: Update function tablesLioncash2019-11-121-1/+7
* | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-251-1/+1
* | service: Resolve sign conversion errorsLioncash2019-11-121-1/+1
|/
* pl_u: Fix mismatched rebase size error in font encryptionZach Hilman2019-10-131-10/+8
* pl_u: Remove excess static qualifierZach Hilman2019-10-131-1/+1
* pl_u: Use OSS system archives if real archives don't existZach Hilman2019-10-131-110/+47
* hle/service: Replace global system instance calls with instance-based onesLioncash2019-10-061-4/+4
* Merge pull request #2884 from ogniK5377/deglobal-sys-servicesFernando Sahmkow2019-09-221-3/+7
|\
| * RebaseDavid Marcec2019-09-221-1/+4
| * RebaseDavid Marcec2019-09-221-3/+4
* | Revert "Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1"David Marcec2019-09-221-47/+117
|/
* Merge pull request #2709 from DarkLordZach/oss-ext-fonts-1David2019-09-221-117/+47
|\
| * pl_u: Remove excess static qualifierZach Hilman2019-09-221-1/+1
| * pl_u: Use OSS system archives if real archives don't existZach Hilman2019-09-221-108/+40
| * pl_u: Expose method to encrypt TTF to BFTTFZach Hilman2019-09-221-14/+12
* | services: Pass FileSystemController as reference to services that need itZach Hilman2019-09-211-2/+3
|/
* VM_Manager: Align allocated memory to 256bytesFernando Sahmkow2019-07-191-6/+6
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-4/+6
* pl_u: Resize buffers in shared font data getter to what game requestsZach Hilman2018-11-151-0/+8
* file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicableLioncash2018-10-161-1/+1
* kernel/process: Make data member variables privateLioncash2018-09-301-3/+3
* Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi2018-09-151-6/+6
* services/pl_u: Add missing Korean font to the fallback case for shared fontsLioncash2018-09-131-2/+4
* pl_u: Eliminate mutable file-scope stateLioncash2018-09-121-60/+86
* Merge pull request #1291 from lioncash/defaultbunnei2018-09-111-0/+2
|\
| * hle/service: Default constructors and destructors in the cpp file where applicableLioncash2018-09-111-0/+2
* | externals: Place font data within cpp filesLioncash2018-09-111-6/+6
|/
* Use open-source shared fonts if no dumped file is available (#1269)Tobias2018-09-111-1/+25
* file_sys: Replace includes with forward declarations where applicableLioncash2018-09-041-1/+3
* kernel: Eliminate kernel global stateLioncash2018-08-291-1/+2
* Addressed plu TTF changesDavid Marcec2018-08-231-6/+7
* Added SharedFonts loading via TTFDavid Marcec2018-08-231-5/+50
* Added missing include for pl:uDavid Marcec2018-08-221-0/+1
* PL:U Added BFTTF loading(Loading from System NAND dumps) (#1088)David2018-08-221-25/+140
* file_util: Use an enum class for GetUserPath()Lioncash2018-07-211-1/+1
* pl_u: Simplify WriteBuffer() calls in GetSharedFontInOrderOfPriority()Lioncash2018-07-201-3/+3
* Merge pull request #725 from lioncash/bytesbunnei2018-07-201-3/+3
|\
| * pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()Lioncash2018-07-191-3/+3
* | pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()Lioncash2018-07-191-1/+1
|/
* Rename logging macro back to LOG_*James Rowe2018-07-031-7/+7
* GetSharedFontInOrderOfPriority (#381)David2018-05-011-1/+26
* ns: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-6/+6
* service: Use nested namespace specifiers where applicableLioncash2018-04-201-4/+2
* pl_u: Use empty shared font if none is available.bunnei2018-04-151-17/+14
* Updated pl:u with more service names.Hexagon122018-04-101-1/+3
* pl_u: Add RequestLoad.bunnei2018-03-251-0/+10
* core: Move process creation out of global state.bunnei2018-03-141-4/+5
* pl_u: Implement basic shared font loading from RAM dump.bunnei2018-02-151-0/+111