- Nov 16, 2018
-
-
David Marcec authored
Specifying an internal resolution in yuzu now will report the scaled changes to vi and am.
-
David authored
* Fixed priority switching edge case for handheld We accidently used controller index instead of npad id * Moved NPadIdToIndex
-
- Nov 15, 2018
-
-
Zach Hilman authored
Prevents returning the same value every single call.
-
- Nov 14, 2018
-
-
Lioncash authored
empty() in this case will always return false, since the returned container is a std::array. Instead, check if all given users are invalid before returning the error code.
-
Lioncash authored
-
Lioncash authored
Avoids relying on fmt always being indirectly included.
-
Lioncash authored
There's no need for translators to concern themselves with the validation mask used by the entry field.
-
Lioncash authored
The previous expression would copy sizeof(size_t) amount of bytes (8 on a 64-bit platform) rather than the full 10 bytes comprising the uuid member. Given the source and destination types are the same, we can just use an assignment here instead.
-
Lioncash authored
Based off RE, they both currently go through the same codepath with no difference in behavior.
-
Lioncash authored
-
Lioncash authored
When yuzu is compiled in release mode this function is unused, however, when compiled in debug mode, it's used within a LOG_TRACE statement. This prevents erroneous compilation warnings about an unused function (that isn't actually totally unused).
-
Lioncash authored
The code in both places was the same verbatim, so we can extract it to a function to deduplicate the logic.
-
- Nov 13, 2018
-
-
Lioncash authored
An old function from Dolphin. This is also unused, and pretty inflexible when it comes to printing out different data types (for example, one might not want to print out an array of u8s but a different type instead. Given we use fmt, there's no need to keep this implementation of the function around.
-
Lioncash authored
This is an unused hold-over from Dolphin that was primarily used to parse values out of the .ini files. Given we already have libraries that do this for us, we don't need to keep this around.
-
Zach Hilman authored
-
Lioncash authored
Keeps the base class source files implementation-agnostic.
-
Lioncash authored
This is currently unused and doesn't really provide much value to keep around either.
-
Lioncash authored
These appear to be a basic getter and setter pair, so these are fairly trivial to implement and get out of the way.
-
Lioncash authored
-
Lioncash authored
Now that we've moved all of the heap-related stuff to the VMManager class, we can unstub this function, as the necessary members are visible now.
-
Lioncash authored
kernel/process: Migrate heap-related memory management out of the process class and into the vm manager Avoids a breach of responsibilities in the interface and keeps the direct code for memory management within the VMManager class.
-
Zach Hilman authored
-
Frederic L authored
Minor code cleanup from unaddressed feedback in #1654
-
Zach Hilman authored
-
greggameplayer authored
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB ( needed by Mario+Rabbids Kingdom Battle ) * Small placement correction
-
- Nov 12, 2018
-
-
Tobias authored
-
Zach Hilman authored
-
Zach Hilman authored
-
- Nov 11, 2018
-
-
Rodolfo Bogado authored
-
Rodolfo Bogado authored
Improve state management by splitting some of the states id separated function to avoid a full apply overhead
-
Rodolfo Bogado authored
Try to fix problems with stencil test in some games, relax translation to opengl enums to avoid crashing and only generate logs of the errors.
-
Rodolfo Bogado authored
-
FernandoS27 authored
-
- Nov 10, 2018
-
-
David Marcec authored
-
David Marcec authored
Added instead of using a seperate PR to prevent conflicts
-
ReinUsesLisp authored
Geometry shaders follow a pattern that results in out of bound reads. This pattern is: - VSETP to predicate - Use that predicate to conditionally set a register a big number - Use the register to access geometry shaders At the time of writing this commit I don't know what's the intent of this number. Some drivers argue about these out of bound reads. To avoid this issue, input reads are guarded limiting reads to the highest posible vertex input of the current topology (e.g. points to 1 and triangles to 3).
-
David Marcec authored
-
- Nov 09, 2018
-
-
David Marcec authored
Needed by megaman 11
-
- Nov 08, 2018
-
-
Frederic Laing authored
-
Frederic Laing authored
-