| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-08-10 | Merge pull request #4491 from lioncash/unused-vars | bunnei | |
| kernel: Remove unused variables | |||
| 2020-08-07 | Merge pull request #4457 from ogniK5377/SetScreenShotPermission | bunnei | |
| am: Unstub SetScreenShotPermission | |||
| 2020-08-07 | common/concepts: Rename IsBaseOf to DerivedFrom | Lioncash | |
| This makes it more inline with its currently unavailable standardized analogue std::derived_from. While we're at it, we can also make the template match the requirements of the standardized variant as well. | |||
| 2020-08-06 | Merge pull request #4490 from lioncash/arbiter | bunnei | |
| address_arbiter/scheduler: Resolve sign conversion warnings | |||
| 2020-08-05 | Merge pull request #4489 from lioncash/typesafe | bunnei | |
| ipc_helpers: Only allow trivially copyable objects with PushRaw() and PopRaw() | |||
| 2020-08-05 | Merge pull request #4475 from lioncash/bqueue | bunnei | |
| buffer_queue: Make use of designated initializers/std::nullopt where applicable | |||
| 2020-08-05 | kernel: Remove unused variables | Lioncash | |
| Resolves a few compiler warnings. | |||
| 2020-08-05 | scheduler: Resolve sign conversion warning | Lioncash | |
| 2020-08-05 | address_arbiter: Resolve sign conversion warning | Lioncash | |
| Makes our type conversion explicit. | |||
| 2020-08-05 | ipc_helpers: Only allow trivially copyable objects with PushRaw() and PopRaw() | Lioncash | |
| It's undefined behavior to use non-trivially copyable objects with std::memcpy, so we can add asserts to catch usages of these at compile-time. | |||
| 2020-08-04 | Merge pull request #4401 from ogniK5377/GetIndirectLayerImageRequiredMemoryInfo | bunnei | |
| vi: IApplicationDisplayService:GetIndirectLayerImageRequiredMemoryInfo | |||
| 2020-08-04 | Merge pull request #4430 from bunnei/new-gpu-vmm | bunnei | |
| hle: nvdrv: Rewrite of GPU memory management. | |||
| 2020-08-04 | Merge pull request #4481 from lioncash/cpp-dep | David | |
| yuzu: Resolve C++20 deprecation warnings related to lambda captures | |||
| 2020-08-04 | Merge pull request #4474 from lioncash/hle-profile | David | |
| profile_manager: Make use of designated initializers | |||
| 2020-08-03 | Merge pull request #4456 from Morph1984/stub-really-long-fs-func | bunnei | |
| fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute | |||
| 2020-08-03 | Merge pull request #4482 from lioncash/ldr-sign | bunnei | |
| service/ldr: Resolve sign mismatch warnings | |||
| 2020-08-03 | yuzu: Resolve C++20 deprecation warnings related to lambda captures | Lioncash | |
| C++20 deprecates capturing the this pointer via the '=' capture. Instead, we replace it or extend the capture specification. | |||
| 2020-08-03 | service/ldr: Resolve sign mismatch warnings | Lioncash | |
| We were performing an int < size_t comparison. We can just correct the type of the induction variable. | |||
| 2020-08-03 | buffer_queue: Make use of std::nullopt | Lioncash | |
| Allows compilers to eliminate unnecessary zeroing out of the optional's buffer. | |||
| 2020-08-03 | buffer_queue: Make use of designated initializers | Lioncash | |
| 2020-08-03 | profile_manager: Make use of std::nullopt | Lioncash | |
| Allows some implementations to completely avoid unnecessarily zeroing out the internal buffer. | |||
| 2020-08-03 | profile_manager: Make use of designated initializers | Lioncash | |
| More compact code. | |||
| 2020-08-03 | sm: Make use of IsBaseOf for GetService | David Marcec | |
| 2020-08-03 | ipc: Allow all trivially copyable objects to be passed directly into ↵ | David | |
| WriteBuffer (#4465) * ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf | |||
| 2020-07-31 | minor nits | Morph | |
| 2020-08-01 | am: Unstub SetScreenShotPermission | David Marcec | |
| 2020-07-30 | fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute | Morph | |
| Stub these 2 service commands required for Animal Crossing: New Horizons Update 1.4.0 | |||
| 2020-07-30 | fs: Rename SaveDataDescriptor to SaveDataAttribute | Morph | |
| 2020-07-27 | Update src/core/hle/service/nvdrv/devices/nvmap.cpp | bunnei | |
| Co-authored-by: LC <mathew1800@gmail.com> | |||
| 2020-07-27 | core_timing: Make use of uintptr_t to represent user_data | Lioncash | |
| Makes the interface future-proofed for supporting other platforms in the event we ever support platforms with differing pointer sizes. This way, we have a type in place that is always guaranteed to be able to represent a pointer exactly. | |||
| 2020-07-27 | remove unused variable; | CrazyMax | |
| 2020-07-26 | hle: nvdrv: Rewrite of GPU memory management. | bunnei | |
| 2020-07-25 | nvflinger: Mark interface functions with return values as [[nodiscard]] | Lioncash | |
| Not using the return value of these functions are undeniably the source of a bug. This way we allow compilers to loudly make any future misuses evident. | |||
| 2020-07-25 | nvflinger: Use return value of Lock() | Lioncash | |
| comex reported in #4424 that we were incorrectly discarding the return value of Lock() which is correct. | |||
| 2020-07-25 | Merge pull request #4350 from ogniK5377/hid-update-connected | bunnei | |
| hid: Only update keyboard & debug pad inputs if enabled | |||
| 2020-07-21 | vi: IApplicationDisplayService:GetIndirectLayerImageRequiredMemoryInfo | David Marcec | |
| Needed for dark souls and monster hunter | |||
| 2020-07-20 | Address issues | David Marcec | |
| 2020-07-19 | swkbd: Return result for Calc request for inlined swkbd | David Marcec | |
| Fixes random swkbd popups in monster hunter | |||
| 2020-07-18 | Merge pull request #4348 from lioncash/nano | bunnei | |
| core_timing: Make usage of nanoseconds more consistent in the interface | |||
| 2020-07-18 | Merge pull request #4345 from Morph1984/fix-createfile | bunnei | |
| filesystem: Create subdirectories prior to creating a file | |||
| 2020-07-17 | Merge pull request #4365 from lioncash/mii | bunnei | |
| mii/manager: Make use of designated initializers | |||
| 2020-07-17 | Merge pull request #4366 from lioncash/mii-sign | bunnei | |
| mii/manager: Resolve sign mismatch warnings | |||
| 2020-07-17 | Merge pull request #4357 from lioncash/unused4 | David | |
| kernel: Remove unused variables | |||
| 2020-07-17 | Merge pull request #4358 from lioncash/unused5 | David | |
| kernel/thread: Remove unimplemented function prototype | |||
| 2020-07-16 | mii/manager: Resolve sign mismatch warnings | Lioncash | |
| Previously the loop termination condition was testing variables of different signedness. | |||
| 2020-07-16 | mii/manager: Make use of designated initializers | Lioncash | |
| Allows returning the structure in a more concise manner. | |||
| 2020-07-16 | Merge pull request #4292 from bunnei/mii-rewrite | bunnei | |
| hle: service: mii: Rewrite service to properly support creation of random and default miis. | |||
| 2020-07-16 | Merge pull request #4327 from lioncash/desig2 | Rodrigo Locatti | |
| address_space_info: Make use of designated initializers | |||
| 2020-07-16 | kernel/thread: Remove unimplemented function prototype | Lioncash | |
| This isn't used, so it can be removed. | |||
| 2020-07-16 | kernel: Remove unused variables | Lioncash | |
| Resolves some compiler warnings in the Linux build. | |||
