summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-12ui: Touching QPalette::Text broke dark -> light UI. don't doKyle K
2022-04-11ui: Set Link Color when setting themeKyle K
Long story short, QT doesn't allow the link colors to be set via their stylesheets. There are two ways to work with this, specify the color manually for every link (See the About dialog) The other way is to change the default palette. IsDarkTheme is copy/pasted from src/yuzu/debugger/wait_tree.cpp
2022-04-09Merge pull request #8149 from liamwhite/front-facebunnei
OpenGL: flip front faces if Z scale is inverted
2022-04-08Merge pull request #8138 from german77/data-no-racebunnei
core: hid: Reduce the amount of data races
2022-04-08Merge pull request #8169 from merryhime/scoped_lockbunnei
Replace lock_guard with scoped_lock
2022-04-08Merge pull request #8173 from Morph1984/msvc-warn-unused-fnMai M
CMakeLists: Enforce C4505 and C5245
2022-04-07CMakeLists: Enforce C4505 and C5245Morph
These are similar to Wunused-function on gcc/clang
2022-04-07core: hid: Fix double lock on softlock and forced updatesNarr the Reg
2022-04-07Merge pull request #8167 from Tachi107/patch-1merry
fix: remove #pragma once in .cpp file
2022-04-07core: hid: Replace lock_guard with scoped_lockNarr the Reg
2022-04-07core/hle: Standardize scoped_lock initializersMerry
2022-04-07yuzu/util: Replace lock_guard with scoped_lockMerry
2022-04-07web_service: Replace lock_guard with scoped_lockMerry
2022-04-07video_core: Replace lock_guard with scoped_lockMerry
2022-04-07input_common: Replace lock_guard with scoped_lockMerry
2022-04-07core: Replace lock_guard with scoped_lockMerry
2022-04-07core/hle: Replace lock_guard with scoped_lockMerry
2022-04-07common: Replace lock_guard with scoped_lockMerry
2022-04-07core: hid: Reduce the amount of dataracesgerman77
2022-04-07Merge pull request #8161 from liamwhite/gl-s8d24Fernando S
OpenGL: fix S8D24 to ABGR8 conversions
2022-04-07Merge pull request #8152 from liamwhite/gl-cropFernando S
OpenGL: fix cropping
2022-04-07Merge pull request #8150 from liamwhite/vk-cropFernando S
Vulkan: crop to screen dimensions if crop not explicitly requested
2022-04-07Merge pull request #8148 from merryhime/interruptsFernando S
dynarmic: Better interrupts
2022-04-07Merge pull request #8143 from merryhime/rdtscFernando S
native_clock: Use lfence with rdtsc
2022-04-07Merge pull request #8133 from liamwhite/gl-spv-cbufFernando S
shader_recompiler: support const buffer indirect addressing on OpenGL
2022-04-07fix: remove #pragma once in .cpp fileAndrea Pappacoda
2022-04-06Merge pull request #8164 from liamwhite/jit-stubbunnei
service: jit: stub JIT service
2022-04-06service: jit: stub JIT serviceLiam
2022-04-06OpenGL: fix S8D24 to ABGR8 conversionsLiam
2022-04-06Merge pull request #8122 from bunnei/improve-thread-usagebunnei
Improve usage of service host threads
2022-04-05Merge pull request #8162 from german77/bombslingerbunnei
service: hid: Partially revert #8123
2022-04-05service: hid: Partially revert #8123german77
2022-04-05Merge pull request #8137 from bunnei/improve-nvflinger-2bunnei
Follow-up fixes for NVFlinger rewrite (Part 2)
2022-04-05Merge pull request #8100 from Morph1984/registered-crashbunnei
registered_cache: Prevent nullptr dereference when accumulating files
2022-04-05Merge pull request #8159 from merryhime/pstMai M
dynarmic: Print stack trace on unrecognised instruction or other exception
2022-04-05Merge pull request #8158 from Tachi107/patch-1Mai M
build: remove -fconcepts
2022-04-05dynarmic: Print stack trace on unrecognised instruction or other exceptionmerry
2022-04-05build: remove -fconceptsAndrea Pappacoda
It was needed on GCC versions not supporting `-std=c++20`, but GCC 10 and newer (required to compile yuzu) don't need it anymore
2022-04-04Merge pull request #8156 from yuzu-emu/revert-8154-unneeded-read-blockbunnei
Revert "texture_cache/util: Remove unneeded ReadBlockUnsafe"
2022-04-04Revert "texture_cache/util: Remove unneeded ReadBlockUnsafe"bunnei
2022-04-04Merge pull request #8154 from ameerj/unneeded-read-blockbunnei
texture_cache/util: Remove unneeded ReadBlockUnsafe
2022-04-04shader_recompiler: Decrease indirect cbuf limit to match hardwareLiam
2022-04-04texture_cache/util: Remove unneeded ReadBlockUnsafeameerj
This call was reading GPU memory into the dst buffer, which is then overwritten by the SwizzleTexture call.
2022-04-04Merge pull request #8089 from merryhime/paranoiabunnei
configuration: Add Paranoid CPU accuracy level
2022-04-04OpenGL: fix croppingLiam
2022-04-04Vulkan: crop to screen dimensions if crop not explicitly requestedLiam
2022-04-04OpenGL: propagate face flip conditionLiam
2022-04-04OpenGL: flip front faces if Z scale is invertedLiam
2022-04-03native_clock: Internal linkage for FencedRDTSCMerry
__forceinline required on MSVC for function to be inlined
2022-04-03native_clock: Use lfence with rdtscmerry