- 27 Jan, 2022 3 commits
- 26 Jan, 2022 4 commits
-
-
Lioncash authored
This allows us to eliminate any static constructors that would have been emitted due to the function not being constexpr.
-
bunnei authored
video_core/macro: Move impl classes into their cpp files
-
bunnei authored
yuzu: Add setting to disable controller navigation
-
bunnei authored
Update AMD FidelityFX Super Resolution™ to 1.0.2
-
- 25 Jan, 2022 19 commits
-
-
Morph authored
shader_recompiler: Remove unnecessary [[nodiscard]] specifier
-
Morph authored
gpu: Remove obsoleted CDmaPusher() accessors
-
Morph authored
vk_fsr: Replace comma operator with semicolon
-
Morph authored
input_common/main: Pass MappingData by const reference in callbacks
-
Morph authored
input_common/udp_client: Replace deprecated from_string()/to_ulong() functions
-
Morph authored
kernel/k_affinity_mask: Remove duplicated assert
-
Lioncash authored
Necessary since memcpy is used.
-
Lioncash authored
Keeps the implementation hidden from the intended API and lessens the header dependencies on the interpreter's header.
-
Lioncash authored
Same behavior, but less code and header dependencies.
-
Lioncash authored
Simplifies the function interface.
-
Lioncash authored
Reduces the size of the impl class a tiny bit.
-
Lioncash authored
This doesn't depend on class state and can just be a regular function.
-
Lioncash authored
Keeps the implementation internalized and also reduces API-facing header dependencies. Notably, this fully internalizes all of the xbyak externals.
-
Lioncash authored
Given it's intended to be an internal implementation class, we can move it into the cpp file to ensure that. This also lets us move some header dependencies into the cpp file as well.
-
Lioncash authored
Over time a few forward declarations became unnecessary, so we can remove these to tidy up the header a little bit.
-
Lioncash authored
Generally, we should be ending statements with a semicolon not a comma Resolves a clang diagnostic.
-
Lioncash authored
Since ConvertLegacyToGeneric has a void return value, there's nothing that is actually returned by the function.
-
bunnei authored
hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.
-
- 24 Jan, 2022 12 commits
-
-
bunnei authored
yuzu: Add modifiers for keyboard
-
Lioncash authored
The default constructor of a UUID instance doesn't initialize the underlying array.
-
Lioncash authored
Makes the checks a little more intuitive to read and doesn't construct an extra UUID instance
-
Lioncash authored
Ensures that the class always sees the types it needs.
-
Lioncash authored
Top-level const on a return by value can inhibit move semantics, and is unnecessary.
-
Lioncash authored
-
Lioncash authored
Avoids creating unnecessary 168 byte copies per callback invocation.
-
Lioncash authored
These are deprecated and make_address variants and to_uint() should be used instead.
-
Lioncash authored
We can also remove some redundant const on the return values, since these don't do anything
-
Lioncash authored
This is already checked inside GetCoreBit()
-
german77 authored
-
german77 authored
-
- 23 Jan, 2022 2 commits