- Jul 11, 2019
-
-
Michael Scire authored
Prior to PR, Yuzu did not restore memory to RW- on unmap of mirrored memory or unloading of NRO. (In fact, in the NRO case, the memory was unmapped instead of reprotected to --- on Load, so it was actually lost entirely...) This PR addresses that, and restores memory to RW- as it should. This fixes a crash in Super Smash Bros when creating a World of Light save for the first time, and possibly other games/circumstances.
-
Flame Sage authored
Add Repository Sync Pipeline
-
Zach Hilman authored
-
- Jul 10, 2019
-
-
bunnei authored
gl_rasterizer: Amend documentation comment for ConfigureFramebuffers()
-
bunnei authored
vk_scheduler: Drop execution context in favor of views
-
bunnei authored
IFriendService::GetFriendList
-
bunnei authored
pm: Implement various pm commands for finding process and title IDs
-
bunnei authored
mii: Implement IDatabaseService SetInterfaceVersion
-
bunnei authored
video_core: Add missing override specifiers
-
Flame Sage authored
Add Pipeline Definitions for Azure CI
-
Zach Hilman authored
-
Flame Sage authored
[skip ci]
-
- Jul 09, 2019
-
-
David Marcec authored
We don't have any friends implemented in Yuzu yet so it doesn't make sense to return any friends. For now we'll be returning 0 friends however the information provided will allow a proper implementation of this cmd when needed.
-
Lioncash authored
must_reconfigure isn't a parameter for this function any more, so it can be replaced with current_state. While we're at it, we can make the parameters of the declaration match the same name as the ones in the definition.
-
- Jul 08, 2019
-
-
Zach Hilman authored
audren: Only manage wave buffers with a size
-
Zach Hilman authored
hid:StartLrAssignmentMode, hid:StopLrAssignmentMode, hid:SwapNpadAssignment
-
David Marcec authored
-
David Marcec authored
-
bunnei authored
apm: Initial implementation of performance config and boost mode
-
bunnei authored
fsp-srv: Implement Access Logging Functionality
-
- Jul 07, 2019
-
-
Hexagon12 authored
Delete decode_integer_set.cpp
-
Tobias authored
-
Lioncash authored
These are no longer used within this header, so they can be removed.
-
Lioncash authored
-
ReinUsesLisp authored
Instead of passing by copy an execution context through out the whole Vulkan call hierarchy, use a command buffer view and fence view approach. This internally dereferences the command buffer or fence forcing the user to be unable to use an outdated version of it on normal usage. It is still possible to keep store an outdated if it is casted to VKFence& or vk::CommandBuffer. While changing this file, add an extra parameter for Flush and Finish to allow releasing the fence from this calls.
-
Zach Hilman authored
Appears to set a member variable used to affect the API that games access, and the method used to store data.
-
Zach Hilman authored
core/reporter: Minor changes
-
Zach Hilman authored
kernel/vm_manager: Handle stack/TLS IO region placement a little better
-
Zach Hilman authored
am: Implement GetAccumulatedSuspendedTickValue
-
- Jul 06, 2019
-
-
Michael Scire authored
-
Michael Scire authored
-
Lioncash authored
These aren't used within the central memory management code, so they can be removed.
-
Lioncash authored
This isn't used by anything in the header file, so it can be removed.
-
Lioncash authored
Provides a more accurate name for the memory region and also disambiguates between the map and new map regions of memory, making it easier to understand.
-
Lioncash authored
Handles the placement of the stack a little nicer compared to the previous code, which was off in a few ways. e.g. The stack (new map) region, shouldn't be the width of the entire address space if the size of the region calculation ends up being zero. It should be placed at the same location as the TLS IO region and also have the same size. In the event the TLS IO region contains a size of zero, we should also be doing the same thing. This fixes our memory layout a little bit and also resolves some cases where assertions can trigger due to the memory layout being incorrect.
-
- Jul 05, 2019
-
-
Lioncash authored
Taking the json instance as a constant reference, makes all moves into the parameter non-functional, resulting in copies. Taking it by value allows moves to function.
-
Lioncash authored
Adds missing inclusions to prevent potential compilation issues.
-
Lioncash authored
The Reporter class is part of the Core namespace, so the System class doesn't need to be qualified.
-
Lioncash authored
This can inhibit copy-elision, so we can remove this redundant move.
-
Lioncash authored
Makes all control statements braced, regardless of their size, making code more uniform.
-