| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |||
| 2022-04-02 | configure_per_game_addons: Set tree view minimum section size to 150px | merry | |
| 2022-04-02 | configure_hotkeys: Make first column stretch and not last column | merry | |
| Also configure minimum width of columns to be 150px. | |||
| 2022-04-02 | fix: typos | Andrea Pappacoda | |
| 2022-04-02 | configure_per_game_addons: Stretch first column and not last | merry | |
| This provides more sensible column widths. | |||
| 2022-04-01 | hle: service: nvflinger: buffer_queue_producer: Cleanup & fixes. | bunnei | |
| 2022-04-01 | hle: service: nvflinger: consumer_base: Cleanup & fixes. | bunnei | |
| 2022-04-01 | hle: service: nvflinger: buffer_queue_producer: Cleanup & add ↵ | bunnei | |
| GetReleasedBuffers. | |||
| 2022-04-01 | hle: service: nvflinger: buffer_queue_core: Cleanup & fixes. | bunnei | |
| 2022-04-01 | hle: service: nvflinger: Use correct logger namespace. | bunnei | |
| 2022-04-02 | hle: service: nvdrv: Create a service thread where appropriate. | Morph | |
| 2022-04-02 | hle: service: vi: Create a service thread where appropriate. | bunnei | |
| 2022-04-02 | hle: service: bsd: Create a service thread where appropriate. | bunnei | |
| 2022-04-02 | hle: service: filesystem: Create a service thread where appropriate. | bunnei | |
| 2022-04-02 | hle: service: audio: Create a service thread where appropriate. | bunnei | |
| 2022-04-02 | hle: service: Add option for service interfaces to create or use the default ↵ | bunnei | |
| thread. | |||
| 2022-04-02 | hle: kernel: Create a default thread for services that do not need their own ↵ | bunnei | |
| host thread. | |||
| 2022-04-01 | applets/web: Keep foreground (websession) web applet open | Morph | |
| 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-01 | shader_compiler: support const buffer indirect addressing in GLSL | Liam | |
| 2022-04-01 | audio_core: remove time stretcher | Andrea Pappacoda | |
| Also drop the SoundTouch dependency | |||
| 2022-04-01 | Merge pull request #8128 from FernandoS27/gc-fixes | Fernando S | |
| GPU Garbage Collection: Fix regressions. | |||
| 2022-04-01 | shader_recompiler: support const buffer indirect addressing on OpenGL SPIR-V | Liam | |
| 2022-04-01 | Merge pull request #8079 from lat9nq/applet-typo | Mai M | |
| configure_debug: Fix typo | |||
| 2022-04-01 | Merge pull request #8097 from Tachi107/build-cleanup-install | Mai M | |
| build: cleanup installation of yuzu and yuzu-cmd | |||
| 2022-04-01 | Merge pull request #8066 from ameerj/gpu-decode-fixes | Fernando S | |
| codec: Fix GPU decoder detection on Windows and a memory leak | |||
| 2022-04-01 | GPU Garbage Collection: Fix regressions. | Fernando Sahmkow | |
| 2022-04-01 | Merge pull request #8116 from ameerj/nvhost_ctrl_bad_param | Fernando S | |
| nvhost_ctrl: Only mark EventState::Busy as BadParameter | |||
| 2022-03-31 | service: hid: Remove inaccurate behavior on initialization | german77 | |
| 2022-03-30 | Merge pull request #8076 from ameerj/nv-vk-msaa-scale | bunnei | |
| Vulkan: Use 3D helpers for MSAA scaling on NV drivers 510+ | |||
| 2022-03-30 | Merge pull request #8120 from german77/signal | bunnei | |
| service: hid: Signal event on AcquireNpadStyleSetUpdateEventHandle | |||
