- 28 Jan, 2022 4 commits
-
-
Morph authored
buffer_cache: Reduce stream buffer allocations when expanding from the left
-
Morph authored
video_minimum_maximum: Implement src operand selectors
-
Morph authored
emit_spirv: Add Xfb execution mode when transform feedback is used
-
ameerj authored
Fixes Transform Feedback on Vulkan AMD drivers.
-
- 27 Jan, 2022 5 commits
-
-
bunnei authored
input_common: Add option to configure gyro threshold
-
ameerj authored
The existing stream buffer optimization accounts for size increases at the end of the allocated buffer. This adds the same optimization, increasing the size from the beginning of the buffer as well to reduce buffer allocations when expanding the same buffer from the left.
-
ameerj authored
Used by Pokemon Legends: Arceus
-
Morph authored
common/xbyak_api: Make BuildRegSet() constexpr
-
bunnei authored
Kernel Memory Updates (Part 4): Improve Un/MapPages, and more.
-
- 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 8 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.
-