summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-30cpu_manager: properly check idle on return from preemptionLiam
2022-06-30Merge pull request #7454 from FernandoS27/new-core-timingFernando S
Core: Remake Core Timing
2022-06-30Adress Feedback.Fernando Sahmkow
2022-06-30Merge pull request #8518 from yuzu-emu/revert-8379-amd-push-desc-workaroundFernando S
Revert "vulkan_device: Block AMDVLK's VK_KHR_push_descriptor"
2022-06-29Revert "vulkan_device: Block AMDVLK's VK_KHR_push_descriptor"lat9nq
2022-06-28Merge pull request #8512 from german77/nnResultMorph
Replace multiple names with a better name
2022-06-28Native clock: Use atomic ops as before.Fernando Sahmkow
2022-06-28Native Clock: remove inaccuracy mask.Fernando Sahmkow
2022-06-28Address feedback.Fernando Sahmkow
2022-06-28Core: Protect each event from race conditions within it.Fernando Sahmkow
2022-06-28Core: Fix tests.Fernando Sahmkow
2022-06-28Core: add missing include.Fernando Sahmkow
2022-06-28Core/Common: Corrections to core timing and add critical priority.Fernando Sahmkow
2022-06-28Core: Reimplement Core Timing.Fernando Sahmkow
2022-06-28Common: improve native clock.Fernando Sahmkow
2022-06-27Merge pull request #8504 from comex/mesosphere-current-processbunnei
Support `InfoType_MesosphereCurrentProcess`
2022-06-26video_core: Replace VKUpdateDescriptorQueue with UpdateDescriptorQueuegerman77
2022-06-26video_core: Replace VKSwapchain with Swapchaingerman77
2022-06-26video_core: Replace VKQueryCache with QueryCachegerman77
2022-06-26video_core: Replace VKScheduler with Schedulergerman77
2022-06-26video_core: Replace VKBlitScreen with BlitScreengerman77
2022-06-26video_core: Replace VKFenceManager with FenceManagergerman77
2022-06-26core: kernel: Replace instances of KPageLinkedList with KPageGroupgerman77
2022-06-26core: Replace all instances of ResultCode with Resultgerman77
2022-06-26Merge pull request #8475 from liamwhite/x18bunnei
kernel: make current thread pointer thread local
2022-06-25Re-add missing `case` and braces, and trim whitespacecomex
2022-06-25Update src/core/hle/kernel/svc.cppcomex
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
2022-06-25Support InfoType_MesosphereCurrentProcesscomex
2022-06-25Merge pull request #8500 from liamwhite/pokebunnei
gdbstub: fix register pokes
2022-06-25gdbstub: fix register pokesLiam
2022-06-23kernel: make current thread pointer thread localLiam
2022-06-22Merge pull request #8491 from Morph1984/extra-assertbunnei
KPageTable: Remove extraneous assert
2022-06-22Merge pull request #8483 from liamwhite/fire-emblem-three-semaphoresbunnei
kernel: wait for threads to stop on pause
2022-06-21KPageTable: Remove extraneous assertMorph
Since start is always 0 and VAddr is unsigned, we can safely remove this assert.
2022-06-21Merge pull request #8455 from lat9nq/mingw-clangMorph
ci/windows: Use Clang for MinGW builds
2022-06-21Merge pull request #8432 from liamwhite/watchpointbunnei
core/debugger: memory breakpoint support
2022-06-21Merge pull request #8468 from liamwhite/dispatch-trackingbunnei
kernel: fix some uses of disable_count
2022-06-20Merge pull request #8487 from german77/system-buttonliamwhite
service: am: Stub PerformSystemButtonPressingIfInFocus
2022-06-20service: am: Stub PerformSystemButtonPressingIfInFocusNarr the Reg
Used by Ring Fit Adventure
2022-06-18kernel: wait for threads to stop on pauseLiam
2022-06-17Merge pull request #8476 from liamwhite/gpu-wasnt-readyMorph
core: fix initialization in single core, sync GPU mode
2022-06-16ci/windows: Build using Clanglat9nq
Uses the MinGWClangCross toolchain script to build yuzu. Disables our bundled SDL2 to use the system ones that have been modified to not use `-mwindows`. Also set's `-e` to stop the script on an error (as opposed to packaging nothing). Uses LLVM's linker for linking yuzu. Adds -femulated-tls due to a libstdc++ incompatibility between GCC and Clang in vulkan_common.
2022-06-16CMakeModules: Add MinGWClangCrosslat9nq
Facilitates what programs we need for cross-compiling to Windows from Linux using LLVM's compilers. Based on MinGWCross
2022-06-16ci/windows: Split up cmake commandlat9nq
Improves readability.
2022-06-16core: fix initialization in single core, sync GPU modeLiam
2022-06-16Merge pull request #8472 from german77/taceMorph
common: param_package: Demote DEBUG to TRACE for getters
2022-06-16Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filterMorph
Make yuzu-cmd respect log_filter setting
2022-06-16Make yuzu-cmd respect log_filter settingNikita Strygin
Because logging infrastructure initializes before the loading of the config, it reads the default setting for log_filter and ignores the one set in config. To change log_filter after logging initialization some additional calls need to be made.
2022-06-16Merge pull request #8473 from DCNick3/implement-exit-processliamwhite
Implement ExitProcess svc
2022-06-16Implement ExitProcess svcNikita Strygin
Currently this just stops all the emulation This works under assumption that only application will try to use ExitProcess, with services not touching it If application exits - it quite makes sense to end the emulation