- Aug 15, 2021
- Aug 14, 2021
-
-
bunnei authored
threadsafe_queue: Fix deadlock
-
- Aug 13, 2021
-
-
yzct12345 authored
This fixes a lost wakeup in SPSCQueue. If the reader is in just the right position, the writer's notification will be lost and this will be a problem if the writer then does something to wait on the reader. This was discovered to affect my upcoming stacktrace PR. I don't think any performance decrease will be noticeable because an uncontended mutex is smart enough to skip the syscall. This PR might also resolve some rare deadlocks but I don't know of any examples.
-
bunnei authored
input_common: Disable sdl raw input mode
-
- Aug 12, 2021
- Aug 11, 2021
-
-
Mai M authored
settings: Fix MSVC issues
-
lat9nq authored
According to https://stackoverflow.com/questions/469508, we run into a MSVC bug (since VS 2005) when using diamond inheritance for RangedSetting. This explicitly implements those functions in RangedSetting. GetValue is implemented as just calling the inherited version. The explicit converson operator is reimplemented. I opted for this over ignoring the warning with a pragma since this specifies the inherited behavior, and I have now less faith in MSVC to pick the right one. In addition, we mark destructors as virtual to silence what I believe is a fair MSVC compilation error.
-
bunnei authored
settings: Implement settings ranges
-
german77 authored
-
- Aug 10, 2021
-
-
Fernando S authored
texture_cache: Split out template definitions
-
Ameer J authored
main: Avoid stopping emulation when taking a screenshot
-
ameerj authored
Silences a sws_scale runtime warning about unaligned strides.
-
bunnei authored
memory: Clean up code
-
- Aug 09, 2021
-
-
bunnei authored
configure_general: Swap positions of speed limit and frame limit options
-
- Aug 08, 2021
-
-
Mai M authored
vp9: Ensure the first frame is complete
-
bunnei authored
yuzu-cmd/CMakeLists: Correct attribution for this function.
-
Fernando Sahmkow authored
-
ameerj authored
Silences a runtime error due to the first frame missing the frame data, and being set to hidden despite being a key-frame.
-
yzct12345 authored
-
Fernando S authored
Respect Vulkan bufferImageGranularity
-
bunnei authored
input_common: Improve SDL joystick and hide toggle option
-
bunnei authored
Add description to fast gpu time option
-
ameerj authored
-
german77 authored
-
bunnei authored
common: uuid: Add hash function for UUID
-
- Aug 07, 2021
-
-
german77 authored
-
bunnei authored
nvdec: Better logging for unimplemented codecs
-
Robin Kertels authored
-
bunnei authored
yuzu-cmd: hide mouse cursor when started fullscreen
-
bunnei authored
settings_ui: Add emulated joystick position dot to controller preview
-
ameerj authored
-
bunnei authored
astc_decoder: Various performance and memory optimizations
-
yzct12345 authored
-
yzct12345 authored
-
yzct12345 authored
-
bunnei authored
nvdec: Fix VP9 reference frame refreshes
-