- 01 Jan, 2021 1 commit
-
-
Morph authored
Increases the controller connection delay to 60ms and refactors it to attempt to disconnect all controllers prior to connecting all controllers in HID.
-
- 30 Dec, 2020 19 commits
-
-
LC authored
cmake: Enforce -Wuninitialized
-
bunnei authored
video_core/texture_cache: Rewrite the texture cache
-
ReinUsesLisp authored
The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
-
ReinUsesLisp authored
Add support for building SPIR-V shaders from GLSL and generating headers to include the text of those same GLSL shaders to consume from OpenGL.
-
bunnei authored
k_priority_queue: Fix concepts use
-
bunnei authored
Add missing include of "core/hle/kernel/kernel.h"
-
- 29 Dec, 2020 7 commits
-
-
LC authored
externals: Update Dynarmic
-
ReinUsesLisp authored
Keeps yuzu up to date with the latest changes and introduces a change needed for a lock-free optimization our side.
-
comex authored
- For `std::same_as`, add missing include of `<concepts>`. - For `std::convertible_to`, create a replacement in `common/concepts.h` and use that instead. This would also be found in `<concepts>`, but unlike `std::same_as`, `std::convertible_to` is not yet implemented in libc++, LLVM's STL implementation - not even in master. (In fact, `std::same_as` is the *only* concept currently implemented. For some reason.)
-
comex authored
This is needed as the header invokes methods on KernelCore.
-
LC authored
svc: demote SleepThread log to LOG_TRACE
-
ameerj authored
This log is called often, and introduces a lot of noise when debug logging is enabled, making it difficult to see other debug logs.
-
bunnei authored
input_common: process udp packets only for the correct pad
-
- 28 Dec, 2020 1 commit
-
-
bunnei authored
InputCommon: Allow to invert analog axis with right click
-
- 27 Dec, 2020 1 commit
-
-
gal20 authored
-
- 26 Dec, 2020 1 commit
-
-
german authored
-
- 25 Dec, 2020 6 commits
-
-
Rodrigo Locatti authored
video_core: Enforce C4715 (not all control paths return a value)
-
Rodrigo Locatti authored
cmake: Always enable Vulkan
-
bunnei authored
* core: memory: Ensure thread safe access when pages are rasterizer cached.
-
ReinUsesLisp authored
Removes the unnecesary burden of maintaining separate #ifdef paths and allows us sharing generic Vulkan code across APIs.
-
ReinUsesLisp authored
Most of the time people write code that always returns a value, terminates execution, throws an exception, or uses an unconventional jump primitive. This is not always true when we build without asserts on mainline builds. To avoid introducing undefined behavior on our most used builds, enforce this warning signalling an error and stopping the build from shipping.
-
ReinUsesLisp authored
-
- 23 Dec, 2020 4 commits
-
-
bunnei authored
yuzu/main: Save settings when starting guest
-
LC authored
yuzu/main: Improve menubar access keys
-
lat9nq authored
Adds a unique access key to each action within each menu. A few actions already had their own access key, so those were untouched.
-
bunnei authored
Add option to reset window size to 1080p
-