aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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-04Revert "texture_cache/util: Remove unneeded ReadBlockUnsafe"bunnei
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-03k_auto_object: Fix data racelat9nq
Change the memory order to acqure-release when we decrement the reference count. Prevents a race with line 89 reported by TSan.
2022-04-03k_thread: Fix data racelat9nq
TSan reports a data race between writing at cpp:1162 and reading at h:262. Make the thread_state atomic to prevent this.
2022-04-03k_process: Fix data racelat9nq
TSan reported a race between thread 36 and thread 34, a read at :225 and a write at :225 respectively. Make total_proces_running_time_ticks atomic to avoid this race.
2022-04-03kernel: Fix current_process racelat9nq
TSan reported a race at :258 and :803, so make current_process an atomic pointer.
2022-04-03k_scheduler_lock: Fix data racelat9nq
TSan reports a race between the main thread and T37 during IsLockedByCurrentThread and when it's set at the end of Lock(), respectively. Set owner_thread to an atomic pointer to fix it. Co-authored-by: bunnei <bunneidev@gmail.com>
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
2022-04-03Merge pull request #8105 from merryhime/atomicload128bunnei
native_clock: Use AtomicLoad128
2022-04-03arm_dynarmic: Use HaltReason for svc calls and reschedulesmerry
2022-04-03dynarmic: Better interruptsmerry
2022-04-02Merge pull request #8135 from Morph1984/websession-hackbunnei
applets/web: Keep foreground (websession) web applet open
2022-04-02Merge pull request #8123 from german77/bombslingerbunnei
service: hid: Remove inaccurate behavior on initialization
2022-04-02service: npad: Default initialize shared memorygerman77
2022-04-02native_clock: Use writeback from CAS to avoid double-loadingmerry
2022-04-02atomic_ops: Implement AtomicCompareAndSwap with writebackmerry
2022-04-02native_clock: Use AtomicLoad128Merry
2022-04-02atomic_ops: Implement AtomicLoad128Merry
2022-04-02Merge pull request #8134 from Tachi107/remove-time-stretchermerry
audio_core: remove time stretcher
2022-04-02Merge pull request #8141 from merryhime/configure-hotkeys-columnsMorph
configure_hotkeys: Make first column stretch and not last column
2022-04-02Merge pull request #8140 from merryhime/per-game-addon-columnsMorph
configure_per_game_addons: Stretch first column and not last
2022-04-02configure_per_game_addons: Set tree view minimum section size to 150pxmerry
2022-04-02configure_hotkeys: Make first column stretch and not last columnmerry
Also configure minimum width of columns to be 150px.
2022-04-02fix: typosAndrea Pappacoda
2022-04-02configure_per_game_addons: Stretch first column and not lastmerry
This provides more sensible column widths.
2022-04-01hle: service: nvflinger: buffer_queue_producer: Cleanup & fixes.bunnei
2022-04-01hle: service: nvflinger: consumer_base: Cleanup & fixes.bunnei
2022-04-01hle: service: nvflinger: buffer_queue_producer: Cleanup & add ↵bunnei
GetReleasedBuffers.
2022-04-01hle: service: nvflinger: buffer_queue_core: Cleanup & fixes.bunnei
2022-04-01hle: service: nvflinger: Use correct logger namespace.bunnei
2022-04-02hle: service: nvdrv: Create a service thread where appropriate.Morph
2022-04-02hle: service: vi: Create a service thread where appropriate.bunnei
2022-04-02hle: service: bsd: Create a service thread where appropriate.bunnei
2022-04-02hle: service: filesystem: Create a service thread where appropriate.bunnei
2022-04-02hle: service: audio: Create a service thread where appropriate.bunnei
2022-04-02hle: service: Add option for service interfaces to create or use the default ↵bunnei
thread.
2022-04-02hle: kernel: Create a default thread for services that do not need their own ↵bunnei
host thread.
2022-04-01applets/web: Keep foreground (websession) web applet openMorph
This is a hack to keep the foreground (websession) web applet open in games using these such as Super Mario 3D All-Stars.
2022-04-01shader_compiler: support const buffer indirect addressing in GLSLLiam
2022-04-01audio_core: remove time stretcherAndrea Pappacoda
Also drop the SoundTouch dependency
2022-04-01Merge pull request #8128 from FernandoS27/gc-fixesFernando S
GPU Garbage Collection: Fix regressions.