| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-12-23 | Merge pull request #1886 from FearlessTobi/port-4164 | bunnei | |
| Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality" | |||
| 2018-12-23 | Merge pull request #1930 from lioncash/common | bunnei | |
| common/quaternion: Ensure that w is always initialized | |||
| 2018-12-23 | Merge pull request #1781 from DarkLordZach/applet-profile-select | bunnei | |
| am: Implement HLE profile selector applet | |||
| 2018-12-23 | Merge pull request #1780 from DarkLordZach/controller-profiles | bunnei | |
| configure_input: Add Controller Setup Profiles and simplify input UI | |||
| 2018-12-22 | Includde saturation in the evaluation of the control code | Rodolfo Bogado | |
| 2018-12-22 | Handle RZ cases evaluating the expression instead of the register value. | Rodolfo Bogado | |
| 2018-12-22 | complete emulation of ZeroFlag | Rodolfo Bogado | |
| 2018-12-21 | common/quaternion: Ensure that w is always initialized | Lioncash | |
| Previously xyz was always being zero initialized due to its constructor, but w wasn't. Ensures that we always have a deterministic initial state. | |||
| 2018-12-21 | Merge pull request #1921 from ogniK5377/no-unit | bunnei | |
| Fixed uninitialized memory due to missing returns in canary | |||
| 2018-12-21 | Merge pull request #1920 from heapo/texture_format_selection | bunnei | |
| Texture format fixes for RGBA16UI for copies and R16U when used as depth | |||
| 2018-12-21 | Merge pull request #1925 from lioncash/pid | bunnei | |
| kernel/{process, thread}: Amend behavior related to IDs | |||
| 2018-12-21 | Merge pull request #1914 from lioncash/id | bunnei | |
| service/am: Unstub GetAppletResourceUserId | |||
| 2018-12-21 | hid: Fix SetNpadJoyHoldType and improve logging. | bunnei | |
| 2018-12-21 | kernel/process: Hook up the process capability parser to the process itself | Lioncash | |
| While we're at it, we can also toss out the leftover capability parsing from Citra. | |||
| 2018-12-21 | kernel/process_capability: Handle debug capability flags | Lioncash | |
| 2018-12-21 | kernel/process_capability: Handle handle table capability flags | Lioncash | |
| This just specifies the handle table size. There's also a section of reserved bits that are checked against. | |||
| 2018-12-21 | kernel/process_capability: Handle kernel version capability flags | Lioncash | |
| 2018-12-21 | kernel/process_capability: Handle program capability flags | Lioncash | |
| 2018-12-21 | kernel/process_capability: Handle interrupt capability flags | Lioncash | |
| Similar to the service capability flags, however, we currently don't emulate the GIC, so this currently handles all interrupts as being valid for the time being. | |||
| 2018-12-21 | kernel/process_capability: Handle syscall capability flags | Lioncash | |
| 2018-12-21 | kernel/process_capability: Handle the priority mask and core mask flags | Lioncash | |
| Handles the priority mask and core mask flags to allow building up the masks to determine the usable thread priorities and cores for a kernel process instance. | |||
| 2018-12-21 | kernel/process: Introduce process capability parsing skeleton | Lioncash | |
| We've had the old kernel capability parser from Citra, however, this is unused code and doesn't actually map to how the kernel on the Switch does it. This introduces the basic functional skeleton for parsing process capabilities. | |||
| 2018-12-21 | common: Add basic bit manipulation utility function to Common | Lioncash | |
| 2018-12-19 | Merge pull request #1923 from ogniK5377/nfp-device-list | bunnei | |
| Device handle should not be a random id, instead it's the current npad id | |||
| 2018-12-19 | Merge pull request #1909 from heapo/shadow_sampling_fixes | bunnei | |
| Fix arrayed texture LOD selection and depth comparison ordering | |||
| 2018-12-19 | Merge pull request #1915 from lioncash/sm | bunnei | |
| service/sm: Improve debug log for RegisterService | |||
| 2018-12-19 | kernel/svc: Handle thread handles within GetProcessId | Lioncash | |
| If a thread handle is passed to svcGetProcessId, the kernel attempts to access the process ID via the thread's instance's owning process. Technically, this function should also be handling the kernel debug objects as well, however we currently don't handle those kernel objects yet, so I've left a note via a comment about it to remind myself when implementing it in the future. | |||
| 2018-12-19 | Merge pull request #1907 from lioncash/attribute | bunnei | |
| kernel/svc: Implement svcSetMemoryAttribute | |||
| 2018-12-19 | svc: Implement svcSetMemoryAttribute | Lioncash | |
| With all the basic backing functionality implemented, we can now unstub svcSetMemoryAttribute. | |||
| 2018-12-19 | vm_manager: Add member function for setting memory attributes across an ↵ | Lioncash | |
| address range This puts the backing functionality for svcSetMemoryAttribute in place, which will be utilized in a following change. | |||
| 2018-12-19 | vm_manager: Add member function for checking a memory range adheres to ↵ | Lioncash | |
| certain attributes, permissions and states | |||
| 2018-12-18 | kernel/kernel: Use correct initial PID for userland Process instances | Lioncash | |
| Starts the process ID counter off at 81, which is what the kernel itself checks against internally when creating processes. It's actually supposed to panic if the PID is less than 81 for a userland process. | |||
| 2018-12-18 | kernel/svc: Correct output parameter for svcGetThreadId | Lioncash | |
| The service call uses a 64-bit value, just like svcGetProcessId. This amends the function signature accordingly. | |||
| 2018-12-18 | kernel/thread: Make thread_id a 64-bit value | Lioncash | |
| The kernel uses a 64-bit value for the thread ID, so we shouldn't be using a 32-bit value. | |||
| 2018-12-18 | kernel/svc: Correct output parameter for svcGetProcessId | Lioncash | |
| svcGetProcessId's out parameter is a pointer to a 64-bit value, not a 32-bit one. | |||
| 2018-12-18 | kernel/process: Make process_id a 64-bit value | Lioncash | |
| In the actual kernel, this is a 64-bit value, so we shouldn't be using a 32-bit type to handle it. | |||
| 2018-12-19 | Device handle should not be a random id, instead it's the current npad id | David Marcec | |
| Found during hardware testing | |||
| 2018-12-19 | Moved backtrace to ArmInterface | David Marcec | |
| 2018-12-19 | hopefully fix clang format issue | David Marcec | |
| 2018-12-19 | Fixed uninitialized memory due to missing returns in canary | David Marcec | |
| Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used. | |||
| 2018-12-18 | service/sm: Improve debug log for RegisterService | Lioncash | |
| Now it also indicates the name and max session count. This also gives a name to the unknown bool. This indicates if the created port is supposed to be using light handles or regular handles internally. This is passed to the respective svcCreatePort parameter internally. | |||
| 2018-12-18 | yuzu, video_core: Screenshot functionality | zhupengfei | |
| Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout. | |||
| 2018-12-18 | Texture format fixes: Flag RGBA16UI as GL_RGBA_INTEGER format, and interpret ↵ | heapo | |
| R16U as Z16 when depth_compare is enabled. | |||
| 2018-12-18 | Merge pull request #1913 from MerryMage/default-fpcr | bunnei | |
| kernel/thread: Set default fpcr | |||
| 2018-12-18 | Merge pull request #1918 from MerryMage/cntfrq | bunnei | |
| arm_dynarmic: Set CNTFRQ value | |||
| 2018-12-18 | kernel/thread: Set default fpcr | MerryMage | |
| 2018-12-18 | arm_dynarmic: Set CNTFRQ value | MerryMage | |
| 2018-12-18 | Merge pull request #1917 from ReinUsesLisp/fixup-half | bunnei | |
| shader_bytecode: Fixup half float's operator B encoding | |||
| 2018-12-18 | Merge pull request #1889 from DarkLordZach/swkbd-state-changed | bunnei | |
| applets: Correct usage of SignalStateChanged event | |||
| 2018-12-18 | shader_bytecode: Fixup half float's operator B encoding | ReinUsesLisp | |
