- 23 Dec, 2018 4 commits
-
-
bunnei authored
Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality"
-
bunnei authored
common/quaternion: Ensure that w is always initialized
-
bunnei authored
am: Implement HLE profile selector applet
-
bunnei authored
configure_input: Add Controller Setup Profiles and simplify input UI
-
- 21 Dec, 2018 5 commits
-
-
Lioncash authored
Previously xyz was always being zero initialized due to its constructor, but w wasn't. Ensures that we always have a deterministic initial state.
-
bunnei authored
Fixed uninitialized memory due to missing returns in canary
-
bunnei authored
Texture format fixes for RGBA16UI for copies and R16U when used as depth
-
bunnei authored
kernel/{process, thread}: Amend behavior related to IDs
-
bunnei authored
service/am: Unstub GetAppletResourceUserId
-
- 19 Dec, 2018 16 commits
-
-
bunnei authored
Device handle should not be a random id, instead it's the current npad id
-
bunnei authored
Fix arrayed texture LOD selection and depth comparison ordering
-
bunnei authored
service/sm: Improve debug log for RegisterService
-
Lioncash authored
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.
-
bunnei authored
kernel/svc: Implement svcSetMemoryAttribute
-
Lioncash authored
With all the basic backing functionality implemented, we can now unstub svcSetMemoryAttribute.
-
Lioncash authored
This puts the backing functionality for svcSetMemoryAttribute in place, which will be utilized in a following change.
-
Lioncash authored
vm_manager: Add member function for checking a memory range adheres to certain attributes, permissions and states
-
Lioncash authored
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.
-
Lioncash authored
The service call uses a 64-bit value, just like svcGetProcessId. This amends the function signature accordingly.
-
Lioncash authored
The kernel uses a 64-bit value for the thread ID, so we shouldn't be using a 32-bit value.
-
Lioncash authored
svcGetProcessId's out parameter is a pointer to a 64-bit value, not a 32-bit one.
-
Lioncash authored
In the actual kernel, this is a 64-bit value, so we shouldn't be using a 32-bit type to handle it.
-
David Marcec authored
Found during hardware testing
-
David Marcec authored
-
David Marcec authored
Functions which are suppose to crash on non canary builds usually don't return anything which lead to uninitialized memory being used.
-
- 18 Dec, 2018 12 commits
-
-
Lioncash authored
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.
-
zhupengfei authored
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.
-
heapo authored
Texture format fixes: Flag RGBA16UI as GL_RGBA_INTEGER format, and interpret R16U as Z16 when depth_compare is enabled.
-
bunnei authored
kernel/thread: Set default fpcr
-
bunnei authored
arm_dynarmic: Set CNTFRQ value
-
MerryMage authored
-
MerryMage authored
-
bunnei authored
shader_bytecode: Fixup half float's operator B encoding
-
bunnei authored
applets: Correct usage of SignalStateChanged event
-
ReinUsesLisp authored
-
bunnei authored
Implement postfactor multiplication/division for fmul instructions
-
Lioncash authored
This is supposed to return the current process' ID. (0 indicates an invalid ID for both process IDs and ARU IDs).
-
- 17 Dec, 2018 2 commits
- 16 Dec, 2018 1 commit
-
-
Lioncash authored
This is shorter and more concise. This also removes the now-innaccurate comment, as it's not returned wholesale to svcQueryMemory anymore.
-