| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-08-01 | kernel: Move object class to its own source files | Lioncash | |
| General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code. | |||
| 2018-08-01 | logging/log: Remove incorrect description in PCV doc comment | Lioncash | |
| PCV isn't the parental control service. | |||
| 2018-08-01 | service: Add psc services | Lioncash | |
| Adds the basic skeleton for the psc services based off the information provided by Switch Brew. | |||
| 2018-08-01 | video_core: Make global EmuWindow instance part of the base renderer class | Lioncash | |
| Makes the global a member of the RendererBase class. We also change this to be a reference. Passing any form of null pointer to these functions is incorrect entirely, especially given the code itself assumes that the pointer would always be in a valid state. This also makes it easier to follow the lifecycle of instances being used, as we explicitly interact the renderer with the rasterizer, rather than it just operating on a global pointer. | |||
| 2018-08-01 | Merge pull request #888 from lioncash/caps | bunnei | |
| service: Add capture services | |||
| 2018-08-01 | Merge pull request #890 from lioncash/logger | bunnei | |
| lm: Amend name of ILogger | |||
| 2018-08-01 | Merge pull request #889 from lioncash/fsp | bunnei | |
| service/filesystem: Add fsp:ldr and fsp:pr services | |||
| 2018-08-01 | Merge pull request #887 from lioncash/pcv | bunnei | |
| service: Add bpc and pcv services | |||
| 2018-08-01 | service/ns: Add missing ns services | Lioncash | |
| Implements the basic skeleton of ns:am2, ns:ec, ns:rid, ns:rt, ns:su, ns:vm, and ns:web based off the information provided by Switch Brew and SwIPC. | |||
| 2018-08-01 | lm: Amend name of ILogger | Lioncash | |
| Previously this was being registered with the name "Logger". While we're at it, also change the name of the class to match it. | |||
| 2018-08-01 | service/filesystem: Add fsp:ldr and fsp:pr services | Lioncash | |
| Adds the basic skeleton for the remaining fsp services based off information provided by Switch Brew. | |||
| 2018-08-01 | service: Add capture services | Lioncash | |
| Adds the basic skeleton for the capture services based off information provided by Switch Brew. | |||
| 2018-08-01 | service: Add bpc and pcv services | Lioncash | |
| Adds the basic skeleton for the remaining pcv-related services based off information on Switch Brew. | |||
| 2018-08-01 | Merge pull request #885 from greggameplayer/R32-Float | bunnei | |
| Implement R32_FLOAT RenderTargetFormat | |||
| 2018-08-01 | Implement R32_FLOAT RenderTargetFormat | Unknown | |
| 2018-07-31 | Merge pull request #882 from lioncash/unused | bunnei | |
| kernel/thread: Remove unimplemented function prototype | |||
| 2018-08-01 | Add missing parameter to files.push_back() | Zach Hilman | |
| 2018-08-01 | Fix merge conflicts with opus and update docs | Zach Hilman | |
| 2018-08-01 | Use more descriptive error codes and messages | Zach Hilman | |
| 2018-08-01 | Use static const instead of const static | Zach Hilman | |
| 2018-08-01 | Use ErrorEncrypted where applicable and fix no keys crash | Zach Hilman | |
| 2018-08-01 | Add missing includes and use const where applicable | Zach Hilman | |
| 2018-08-01 | Allow key loading from %YUZU_DIR%/keys in addition to ~/.switch | Zach Hilman | |
| 2018-08-01 | Use SHGetKnownFolderPath instead of SHGetFolderPathA | Zach Hilman | |
| 2018-08-01 | Make XCI comply to review and style guidelines | Zach Hilman | |
| 2018-08-01 | Extract mbedtls to cpp file | Zach Hilman | |
| 2018-08-01 | Add missing string.h include | Zach Hilman | |
| 2018-08-01 | Update mbedtls and fix compile error | Zach Hilman | |
| 2018-08-01 | Remove files that are not used | Zach Hilman | |
| 2018-07-31 | Merge pull request #871 from bunnei/audio-config | bunnei | |
| audio_core: Add configuration settings. | |||
| 2018-07-31 | kernel/thread: Remove unimplemented function prototype | Lioncash | |
| Given there's no implementation, we may as well remove the code entirely. | |||
| 2018-07-31 | Merge pull request #877 from lioncash/remove | bunnei | |
| kernel: Remove unused object_address_table.cpp/.h | |||
| 2018-07-31 | Merge pull request #880 from lioncash/audio | bunnei | |
| service/audio: Add missing services | |||
| 2018-07-31 | audio_core: Add configuration settings. | bunnei | |
| 2018-07-31 | Merge pull request #876 from lioncash/include | bunnei | |
| kernel: Remove unnecessary includes | |||
| 2018-07-31 | service/audio: Add missing services | Lioncash | |
| Adds the missing audctl service, as well as the :a and :d services for audin, audout, audrec, and audren. | |||
| 2018-07-31 | Merge pull request #879 from lioncash/audio | bunnei | |
| audout_u: Remove std::move in OpenAudioOutImpl() | |||
| 2018-07-31 | Merge pull request #864 from FearlessTobi/port-3973 | bunnei | |
| Port #3973 from Citra: "Remove polymorphism issue" | |||
| 2018-07-31 | Merge pull request #869 from Subv/ubsan | bunnei | |
| Corrected a few error cases detected by asan/ubsan | |||
| 2018-07-31 | Merge pull request #875 from lioncash/fgm | bunnei | |
| service: Add fgm services | |||
| 2018-07-31 | Merge pull request #874 from lioncash/am | bunnei | |
| service/am: Add missing am services | |||
| 2018-07-31 | kernel: Remove unused object_address_table.cpp/.h | Lioncash | |
| These source files were entirely unused throughout the rest of the codebase. This also has the benefit of getting rid of a global variable as well. | |||
| 2018-07-31 | audout_u: Remove std::move in OpenAudioOutImpl() | Lioncash | |
| Previously the code was using the values from params further below after it was std::moved. Thankfully, given AudoutParams is a trivially copyable struct, the values would have simply been copied in this instance and not invalidated to garbage values. | |||
| 2018-07-31 | kernel: Remove unnecessary includes | Lioncash | |
| Removes unnecessary direct dependencies in some headers and also gets rid of indirect dependencies that were being relied on to be included. | |||
| 2018-07-31 | Merge pull request #870 from lioncash/init | bunnei | |
| arm_dynarmic: Correct initializer list order | |||
| 2018-07-31 | Merge pull request #872 from lioncash/pcie | bunnei | |
| service: Add the pcie service | |||
| 2018-07-31 | service/am: Add missing am services | Lioncash | |
| Adds the basic skeleton for missing am services idle:sys, omm, and spsm based off the information provided by Switch Brew. | |||
| 2018-07-31 | service: Add fgm services | Lioncash | |
| Adds the basic skeleton for the fgm services based off the information provided by Switch Brew. | |||
| 2018-07-31 | arm_dynarmic: Make SetTlsAddress() prototype and definition consistent | Lioncash | |
| Makes the definition use the same type aliases as in its prototype. | |||
| 2018-07-31 | arm_dynarmic: Remove unnecessary qualifying of ThreadContext | Lioncash | |
| Given the ARM_Dynarmic class inherits from ARM_Interface, we don't need to qualify here. | |||
