| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-17 | kernel: memory: Add MemoryManager class, to manage page heaps. | bunnei | |
| 2020-04-17 | kernel: memory: Add MemoryBlockManager class, to manage memory blocks. | bunnei | |
| 2020-04-17 | kernel: memory: Add PageHeap class, to manage a heap of pages. | bunnei | |
| 2020-04-17 | kernel: memory: Add PageLinkedList class, to manage a list of pages. | bunnei | |
| 2020-04-17 | kernel: memory: Add system_control code, which will be used for ASLR support. | bunnei | |
| 2020-04-17 | physical_memory: Add missing include for <vector>. | bunnei | |
| 2020-04-17 | kernel: memory: Add MemoryBlock class, for managing memory blocks and their ↵ | bunnei | |
| state. | |||
| 2020-04-17 | kernel: memory: Add memory_types.h, for things that are commonly used in ↵ | bunnei | |
| memory code. | |||
| 2020-04-17 | kernel: memory: Add SlabHeap class, for managing memory heaps. | bunnei | |
| - This will be used for TLS pages, among other things. | |||
| 2020-04-17 | kernel: memory: Add AddressSpaceInfo class, for managing the memory address ↵ | bunnei | |
| space. | |||
| 2020-04-17 | core: device_manager: Add a simple class to manage device RAM. | bunnei | |
| 2020-04-17 | dynarmic: Enable strict alignment checks. | bunnei | |
| - Also add a missing include. | |||
| 2020-04-17 | core: memory: Move to Core::Memory namespace. | bunnei | |
| - helpful to disambiguate Kernel::Memory namespace. | |||
| 2020-04-17 | core: kernel: Add svc_types header to include SVC-specific types. | bunnei | |
| 2020-04-17 | core: kernel: Move SVC to its own namesapce. | bunnei | |
| 2020-04-17 | kernel: resource_limit: Improvements to implementation. | bunnei | |
| 2020-04-17 | loader: nso: Fix loading of static objects to be properly sized and aligned. | bunnei | |
| 2020-04-17 | process: SetupMainThread: Zero out argument on process start. | bunnei | |
| 2020-04-17 | arm_interface: Ensure ThreadContext is zero'd out. | bunnei | |
| 2020-04-16 | Merge pull request #3671 from lioncash/switch | bunnei | |
| kernel/thread: Resolve -Wswitch warnings | |||
| 2020-04-16 | Merge pull request #3673 from lioncash/extra | bunnei | |
| CMakeLists: Specify -Wextra on linux builds | |||
| 2020-04-16 | externals: Move LibreSSL linking to httplib. | Markus Wick | |
| Neither core nor web_services use OpenSSL nor LibreSSL. However they need to link them as it's a requirement of httplib. So let's declare this within httplib instead of core and web_services. | |||
| 2020-04-16 | Merge pull request #3659 from bunnei/time-calc-standard-user | Rodrigo Locatti | |
| service: time: Implement CalculateStandardUserSystemClockDifferenceByUser. | |||
| 2020-04-15 | CMakeLists: Specify -Wextra on linux builds | Lioncash | |
| Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well. | |||
| 2020-04-15 | CMakeLists: Make -Wreorder a compile-time error | Lioncash | |
| This can result in silent logic bugs within code, and given the amount of times these kind of warnings are caused, they should be flagged at compile-time so no new code is submitted with them. | |||
| 2020-04-15 | kernel/thread: Resolve -Wswitch warnings | Lioncash | |
| 2020-04-14 | service: time: Implement CalculateStandardUserSystemClockDifferenceByUser. | bunnei | |
| - Used by Animal Crossing: New Horizons. | |||
| 2020-04-14 | Merge pull request #3660 from bunnei/friend-blocked-users | Zach Hilman | |
| service: friend: Stub IFriendService::GetBlockedUserListIds. | |||
| 2020-04-14 | file_sys: patch_manager: Return early when there are no layers to apply. | bunnei | |
| 2020-04-14 | service: friend: Stub IFriendService::GetBlockedUserListIds. | bunnei | |
| - This is safe to stub, as there should be no adverse consequences from reporting no blocked users. | |||
| 2020-04-12 | Merge pull request #3606 from ReinUsesLisp/nvflinger | bunnei | |
| service/vi: Partially implement BufferQueue disconnect | |||
| 2020-04-11 | Merge pull request #3635 from FernandoS27/buffer-free | Rodrigo Locatti | |
| Buffer queue: Correct behavior of free buffer. | |||
| 2020-04-10 | Merge pull request #3594 from ReinUsesLisp/vk-instance | bunnei | |
| yuzu: Drop SDL2 and Qt frontend Vulkan requirements | |||
| 2020-04-10 | Buffer queue: Correct behavior of free buffer. | Fernando Sahmkow | |
| This corrects the behavior of free buffer after witnessing it in an unrelated hardware test. I haven't found any games affected by it but in name of better accuracy we'll correct such behavior. | |||
| 2020-04-10 | service/vi: Partially implement BufferQueue disconnect | ReinUsesLisp | |
| 2020-04-09 | Merge pull request #3610 from FernandoS27/gpu-caches | Rodrigo Locatti | |
| Refactor all the GPU Caches to use VAddr for cache addressing | |||
| 2020-04-08 | Memory: Address Feedback. | Fernando Sahmkow | |
| 2020-04-07 | yuzu: Drop SDL2 and Qt frontend Vulkan requirements | ReinUsesLisp | |
| Create Vulkan instances and surfaces from the Vulkan backend. | |||
| 2020-04-07 | file_sys: fix LayeredFS error when loading some games made with… (#3602) | enler | |
| * fix LayeredFS error when loading some games made with the Unity | |||
| 2020-04-06 | Buffer Cache: Use vAddr instead of physical memory. | Fernando Sahmkow | |
| 2020-04-06 | GPU: Setup Flush/Invalidate to use VAddr instead of CacheAddr | Fernando Sahmkow | |
| 2020-04-03 | Merge pull request #3563 from bunnei/fix-ldr-memstate | Fernando Sahmkow | |
| services: ldr: Fix MemoryState for read/write regions of NROs. | |||
| 2020-04-02 | Merge pull request #3552 from jroweboy/single-context | Rodrigo Locatti | |
| Refactor Context management (Fixes renderdoc on opengl issues) | |||
| 2020-03-31 | capsrv: Split Capture services into individual files and stub ↵ | Morph | |
| GetAlbumContentsFileListForApplication (#3571) * Organize capture services into individual files * Stub GetAlbumContentsFileListForApplication * Address feedback | |||
| 2020-03-29 | Merge pull request #3568 from bunnei/time-calcspan | bunnei | |
| services: time: Implement CalculateSpanBetween. | |||
| 2020-03-28 | Merge pull request #3562 from perillamint/vrsvc | bunnei | |
| am: Implement VR related APIs | |||
| 2020-03-27 | services: hid: Stub InitializeSevenSixAxisSensor. | bunnei | |
| - Used by Super Smash Bros. Ultimate v7.0.0. | |||
| 2020-03-27 | services: time: Implement CalculateSpanBetween. | bunnei | |
| - Used by Super Smash Bros. Ultimate. | |||
| 2020-03-27 | am: Implement VR related APIs | perillamint | |
| Implement (and stub) VR related APIs in AM sysmodule. This fixes issue #2938 | |||
| 2020-03-26 | services: ldr: Fix MemoryState for read/write regions of NROs. | bunnei | |
| - Fixes #3541, used by Final Fantasy VIII Remastered. | |||
