| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-04-07 | core: Replace lock_guard with scoped_lock | Merry | |
| 2022-04-07 | core/hle: Replace lock_guard with scoped_lock | Merry | |
| 2022-04-07 | common: Replace lock_guard with scoped_lock | Merry | |
| 2022-04-07 | core: hid: Reduce the amount of dataraces | german77 | |
| 2022-04-07 | Merge pull request #8161 from liamwhite/gl-s8d24 | Fernando S | |
| OpenGL: fix S8D24 to ABGR8 conversions | |||
| 2022-04-07 | Merge pull request #8152 from liamwhite/gl-crop | Fernando S | |
| OpenGL: fix cropping | |||
| 2022-04-07 | Merge pull request #8150 from liamwhite/vk-crop | Fernando S | |
| Vulkan: crop to screen dimensions if crop not explicitly requested | |||
| 2022-04-07 | Merge pull request #8148 from merryhime/interrupts | Fernando S | |
| dynarmic: Better interrupts | |||
| 2022-04-07 | Merge pull request #8143 from merryhime/rdtsc | Fernando S | |
| native_clock: Use lfence with rdtsc | |||
| 2022-04-07 | Merge pull request #8133 from liamwhite/gl-spv-cbuf | Fernando S | |
| shader_recompiler: support const buffer indirect addressing on OpenGL | |||
| 2022-04-07 | fix: remove #pragma once in .cpp file | Andrea Pappacoda | |
| 2022-04-06 | Merge pull request #8164 from liamwhite/jit-stub | bunnei | |
| service: jit: stub JIT service | |||
| 2022-04-06 | service: jit: stub JIT service | Liam | |
| 2022-04-06 | OpenGL: fix S8D24 to ABGR8 conversions | Liam | |
| 2022-04-06 | Merge pull request #8122 from bunnei/improve-thread-usage | bunnei | |
| Improve usage of service host threads | |||
| 2022-04-05 | service: hid: Partially revert #8123 | german77 | |
| 2022-04-05 | Merge pull request #8137 from bunnei/improve-nvflinger-2 | bunnei | |
| Follow-up fixes for NVFlinger rewrite (Part 2) | |||
| 2022-04-05 | Merge pull request #8100 from Morph1984/registered-crash | bunnei | |
| registered_cache: Prevent nullptr dereference when accumulating files | |||
| 2022-04-05 | k_system_control: Fix data race | lat9nq | |
| `return distribution(gen)` is a data race between a read and a write in two threads, reported by TSan. Remove static random number generators so they aren't using the same generator. | |||
| 2022-04-05 | Merge pull request #8159 from merryhime/pst | Mai M | |
| dynarmic: Print stack trace on unrecognised instruction or other exception | |||
| 2022-04-05 | dynarmic: Print stack trace on unrecognised instruction or other exception | merry | |
| 2022-04-05 | build: remove -fconcepts | Andrea 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-04 | Revert "texture_cache/util: Remove unneeded ReadBlockUnsafe" | bunnei | |
| 2022-04-04 | shader_recompiler: Decrease indirect cbuf limit to match hardware | Liam | |
| 2022-04-04 | texture_cache/util: Remove unneeded ReadBlockUnsafe | ameerj | |
| This call was reading GPU memory into the dst buffer, which is then overwritten by the SwizzleTexture call. | |||
| 2022-04-04 | Merge pull request #8089 from merryhime/paranoia | bunnei | |
| configuration: Add Paranoid CPU accuracy level | |||
| 2022-04-04 | OpenGL: fix cropping | Liam | |
| 2022-04-04 | Vulkan: crop to screen dimensions if crop not explicitly requested | Liam | |
| 2022-04-04 | OpenGL: propagate face flip condition | Liam | |
| 2022-04-04 | OpenGL: flip front faces if Z scale is inverted | Liam | |
| 2022-04-03 | k_auto_object: Fix data race | lat9nq | |
| Change the memory order to acqure-release when we decrement the reference count. Prevents a race with line 89 reported by TSan. | |||
| 2022-04-03 | k_thread: Fix data race | lat9nq | |
| 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-03 | k_process: Fix data race | lat9nq | |
| 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-03 | kernel: Fix current_process race | lat9nq | |
| TSan reported a race at :258 and :803, so make current_process an atomic pointer. | |||
| 2022-04-03 | k_scheduler_lock: Fix data race | lat9nq | |
| 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-03 | native_clock: Internal linkage for FencedRDTSC | Merry | |
| __forceinline required on MSVC for function to be inlined | |||
| 2022-04-03 | native_clock: Use lfence with rdtsc | merry | |
| 2022-04-03 | Merge pull request #8105 from merryhime/atomicload128 | bunnei | |
| native_clock: Use AtomicLoad128 | |||
| 2022-04-03 | arm_dynarmic: Use HaltReason for svc calls and reschedules | merry | |
| 2022-04-03 | dynarmic: Better interrupts | merry | |
| 2022-04-02 | Merge pull request #8135 from Morph1984/websession-hack | bunnei | |
| applets/web: Keep foreground (websession) web applet open | |||
| 2022-04-02 | Merge pull request #8123 from german77/bombslinger | bunnei | |
| service: hid: Remove inaccurate behavior on initialization | |||
| 2022-04-02 | service: npad: Default initialize shared memory | german77 | |
| 2022-04-02 | native_clock: Use writeback from CAS to avoid double-loading | merry | |
| 2022-04-02 | atomic_ops: Implement AtomicCompareAndSwap with writeback | merry | |
| 2022-04-02 | native_clock: Use AtomicLoad128 | Merry | |
| 2022-04-02 | atomic_ops: Implement AtomicLoad128 | Merry | |
| 2022-04-02 | Merge pull request #8134 from Tachi107/remove-time-stretcher | merry | |
| audio_core: remove time stretcher | |||
| 2022-04-02 | Merge pull request #8141 from merryhime/configure-hotkeys-columns | Morph | |
| configure_hotkeys: Make first column stretch and not last column | |||
| 2022-04-02 | Merge pull request #8140 from merryhime/per-game-addon-columns | Morph | |
| configure_per_game_addons: Stretch first column and not last | |||
