summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-04-07service: bsd: Add keepalive socket optiontech-ticks
2022-04-07patch_manager: Apply layered exefs patches from 'atmosphere' SD directorytech-ticks
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-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-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-03Merge pull request #8105 from merryhime/atomicload128bunnei
native_clock: Use AtomicLoad128
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-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-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.
2022-04-01Merge pull request #8079 from lat9nq/applet-typoMai M
configure_debug: Fix typo
2022-04-01Merge pull request #8097 from Tachi107/build-cleanup-installMai M
build: cleanup installation of yuzu and yuzu-cmd
2022-04-01Merge pull request #8066 from ameerj/gpu-decode-fixesFernando S
codec: Fix GPU decoder detection on Windows and a memory leak
2022-04-01GPU Garbage Collection: Fix regressions.Fernando Sahmkow
2022-04-01Merge pull request #8116 from ameerj/nvhost_ctrl_bad_paramFernando S
nvhost_ctrl: Only mark EventState::Busy as BadParameter
2022-03-31service: hid: Remove inaccurate behavior on initializationgerman77
2022-03-30Merge pull request #8076 from ameerj/nv-vk-msaa-scalebunnei
Vulkan: Use 3D helpers for MSAA scaling on NV drivers 510+
2022-03-30Merge pull request #8120 from german77/signalbunnei
service: hid: Signal event on AcquireNpadStyleSetUpdateEventHandle
2022-03-30Merge pull request #8090 from bunnei/fix-skylinebunnei
Kernel Memory Updates (Part 7): Various fixes to code memory (Skyline support)
2022-03-30service: hid: Signal event on AcquireNpadStyleSetUpdateEventHandleNarr the Reg
2022-03-29Merge pull request #8107 from german77/fullscreenbunnei
yuzu: Only override fullscreen setting if gamepath or argument is provided
2022-03-29nvhost_ctrl: Only mark EventState::Busy as BadParameterameerj
Fixes an svc break in Kirby and the Forgotten Land with async GPU enabled.
2022-03-29Merge pull request #8109 from lat9nq/god-whyMorph
yuzu_cmd: Start the logging backend
2022-03-28yuzu_cmd: Start the logging backendlat9nq
2022-03-28yuzu: Only override fullscreen setting if gamepath or argument is providedgerman77
2022-03-28gl_rasterizer: Avoid scenario locking already owned mutexameerj
gpu.TickWork() may lock the texture_cache and buffer_cache mutexes, which are owned by the thread prior to invoking TickWork(). Defer invoking gpu.TickWork() until the scope ends, where the owned mutexes are released.