- Sep 06, 2020
-
-
ReinUsesLisp authored
Now that the GPU is initialized when video backends are initialized, it's no longer needed to query components once the game is running: it can be done when yuzu is booting. This allows us to pass components between constructors and in the process remove all Core::System references in the video backend.
-
- Sep 03, 2020
-
-
ReinUsesLisp authored
Fixes build issues
-
- Sep 02, 2020
- Aug 30, 2020
-
-
ReinUsesLisp authored
'driver_id' can only be known on Vulkan 1.1 after creating a logical device. Move the driver id check to disable VK_EXT_extended_dynamic_state after the logical device is successfully initialized. The Vulkan device will have the extension enabled but it will not be used.
-
Lioncash authored
I made a request on the Xbyak issue tracker to allow some constructors to be constexpr in order to avoid static constructors from needing to execute for some of our register constants. This request was implemented, so this updates Xbyak so that we can make use of it.
-
- Aug 29, 2020
-
-
FearlessTobi authored
-
FearlessTobi authored
-
FearlessTobi authored
-
Lioncash authored
The list of points is returned by const reference, so we don't need to make a copy of every element in the list.
-
FearlessTobi authored
-
Lioncash authored
Due to the way Qt performs destruction of parent/child widgets, we need to make the lifetime of the input subsystem shared across the main window and the render window.
-
Morph authored
-
Lioncash authored
These maps can be constexpr arrays of std::pair.
-
Lioncash authored
Avoids redundant copies.
-
Lioncash authored
Avoids churning ParamPackage instances.
-
Lioncash authored
We need to add the 'f' suffix to make the right hand side a float and not a double.
-
Lioncash authored
The purpose of make_tuple is that you don't need to explicitly type out the types of the things that comprise said tuple. Given this just returns default values, we can simplify this a bit.
-
Lioncash authored
This doesn't modify internal member state, so it can be marked as const.
-
- Aug 28, 2020
-
-
Lioncash authored
-
Lioncash authored
I forgot to remove this in the rebase when removing most of the global variables within the input common codebase.
-
ReinUsesLisp authored
Vertex binding's <stride> is bugged on AMD's proprietary drivers when using VK_EXT_extended_dynamic_state. Blacklist it for now while we investigate how to report this issue to AMD.
-
- Aug 27, 2020
-
-
german authored
-
german authored
-
german authored
-
Lioncash authored
Abstracts most of the input mechanisms under an InputSubsystem class that is managed by the frontends, eliminating any static constructors and destructors. This gets rid of global accessor functions and also allows the frontends to have a more fine-grained control over the lifecycle of the input subsystem. This also makes it explicit which interfaces rely on the input subsystem instead of making it opaque in the interface functions. All that remains to migrate over is the factories, which can be done in a separate change.
-
Morph authored
-
Lioncash authored
-
Lioncash authored
This doesn't modify member state, so it can be marked as const.
-
- Aug 26, 2020
-
-
Morph authored
-
Morph authored
Supports the Left, Right, Middle, Backward and Forward mouse buttons.
-
Morph authored
-
Morph authored
This allows homebrew applications to be able to properly detect connected controllers.
-
Morph authored
-
Morph authored
The hardware tested value is 0.5 which translates to SHRT_MAX / 2
-
Morph authored
-
Morph authored
Co-authored-by:
James Rowe <jroweboy@gmail.com> Co-authored-by:
Its-Rei <kupfel@gmail.com>
-
Lioncash authored
We just need to make our intentional implicit truncations explicit.
-
ReinUsesLisp authored
As reported by tsan, SelectThreads could write to is_context_switch_pending holding a mutex while SwitchToCurrent reads it without holding any. It is assumed that the author didn't want an atomic here, so the code is reordered so that whenever is_context_switch_pending is read inside SwitchToContext, the mutex is locked.
-
ReinUsesLisp authored
As reported by tsan, host_thread_ids could be read while any of the RegisterHostThread variants were called. To fix this, lock the register mutex when yuzu is running in multicore mode and GetCurrentHostThreadID is called.
-