| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-06-28 | service: nifm: Stub GetInternetConnectionStatus | german77 | |
| 2022-06-28 | service: ptm: Rewrite PSM and add TS | german77 | |
| 2022-06-28 | input_common: sdl: lower vibration frequency and use it's own unique thread | german77 | |
| 2022-06-28 | service: hid: Correct some mistakes and add more validations | Narr the Reg | |
| 2022-06-28 | Merge pull request #8512 from german77/nnResult | Morph | |
| Replace multiple names with a better name | |||
| 2022-06-28 | Native clock: Use atomic ops as before. | Fernando Sahmkow | |
| 2022-06-28 | Native Clock: remove inaccuracy mask. | Fernando Sahmkow | |
| 2022-06-28 | Address feedback. | Fernando Sahmkow | |
| 2022-06-28 | Core: Protect each event from race conditions within it. | Fernando Sahmkow | |
| 2022-06-28 | Core: Fix tests. | Fernando Sahmkow | |
| 2022-06-28 | Core: add missing include. | Fernando Sahmkow | |
| 2022-06-28 | Core/Common: Corrections to core timing and add critical priority. | Fernando Sahmkow | |
| 2022-06-28 | Core: Reimplement Core Timing. | Fernando Sahmkow | |
| 2022-06-28 | Common: improve native clock. | Fernando Sahmkow | |
| 2022-06-27 | Merge pull request #8504 from comex/mesosphere-current-process | bunnei | |
| Support `InfoType_MesosphereCurrentProcess` | |||
| 2022-06-26 | video_core: Replace VKUpdateDescriptorQueue with UpdateDescriptorQueue | german77 | |
| 2022-06-26 | video_core: Replace VKSwapchain with Swapchain | german77 | |
| 2022-06-26 | video_core: Replace VKQueryCache with QueryCache | german77 | |
| 2022-06-26 | video_core: Replace VKScheduler with Scheduler | german77 | |
| 2022-06-26 | video_core: Replace VKBlitScreen with BlitScreen | german77 | |
| 2022-06-26 | video_core: Replace VKFenceManager with FenceManager | german77 | |
| 2022-06-26 | core: kernel: Replace instances of KPageLinkedList with KPageGroup | german77 | |
| 2022-06-26 | core: Replace all instances of ResultCode with Result | german77 | |
| 2022-06-26 | Merge pull request #8475 from liamwhite/x18 | bunnei | |
| kernel: make current thread pointer thread local | |||
| 2022-06-25 | Re-add missing `case` and braces, and trim whitespace | comex | |
| 2022-06-25 | Update src/core/hle/kernel/svc.cpp | comex | |
| Co-authored-by: liamwhite <liamwhite@users.noreply.github.com> | |||
| 2022-06-25 | Support InfoType_MesosphereCurrentProcess | comex | |
| 2022-06-25 | kernel: clean up waiting implementation | Liam | |
| 2022-06-25 | core/arm: better support for backtrace generation | Liam | |
| 2022-06-25 | gdbstub: fix register pokes | Liam | |
| 2022-06-23 | kernel: make current thread pointer thread local | Liam | |
| 2022-06-22 | Merge pull request #8491 from Morph1984/extra-assert | bunnei | |
| KPageTable: Remove extraneous assert | |||
| 2022-06-22 | Merge pull request #8483 from liamwhite/fire-emblem-three-semaphores | bunnei | |
| kernel: wait for threads to stop on pause | |||
| 2022-06-21 | KPageTable: Remove extraneous assert | Morph | |
| Since start is always 0 and VAddr is unsigned, we can safely remove this assert. | |||
| 2022-06-21 | tweak API usage in qt_web_browser.cpp | Kyle Kienapfel | |
| In testing future versions of Qt I forgot to compile with `YUZU_USE_QT_WEB_ENGINE`, so with that flag enabled there are two issues that cropped up. 1. yuzu currently uses setRequestInterceptor, added in Qt 5.6, deprecated in 5.13 with this explaination at https://doc.qt.io/qt-5/qwebengineprofile-obsolete.html Interceptors installed with this method will call QWebEngineUrlRequestInterceptor::interceptRequest on the I/O thread. Therefore the user has to provide thread-safe interaction with the other user classes. For a duration of this call ui thread is blocked. Use setUrlRequestInterceptor instead. 2. QWebEngineSettings::globalSettings() pointer no longer exists in later versions of Qt From what I can tell, QtNXWebEngineView doesn't need to set these globally, when we make changes to settings(), QtWebEngineView::page() creates the page object if it doesn't exist yet. I don't see the page object being destroyed or otherwise replaced, except via destroying the QtNXWebEngineView object. The globalSettings() make sense if Pages or Views objects are being created outside of yuzu's control. To test this I've compared what BrowseNX and Odyssey's Action guide do in mainline 1049 and this PR. For now we're going to go up the chain to QWebEngineProfile::defaultProfile()->settings() | |||
| 2022-06-21 | core/arm: increase minimum_run_cycles | Liam | |
| 2022-06-21 | core/arm: re-enable cycle counting | merry | |
| 2022-06-21 | dynarmic: Stop ReadCode callbacks to unmapped addresses | Liam | |
| 2022-06-21 | Merge pull request #8432 from liamwhite/watchpoint | bunnei | |
| core/debugger: memory breakpoint support | |||
| 2022-06-21 | Merge pull request #8468 from liamwhite/dispatch-tracking | bunnei | |
| kernel: fix some uses of disable_count | |||
| 2022-06-20 | service: am: Stub PerformSystemButtonPressingIfInFocus | Narr the Reg | |
| Used by Ring Fit Adventure | |||
| 2022-06-18 | kernel: wait for threads to stop on pause | Liam | |
| 2022-06-16 | core: fix initialization in single core, sync GPU mode | Liam | |
| 2022-06-16 | Merge pull request #8472 from german77/tace | Morph | |
| common: param_package: Demote DEBUG to TRACE for getters | |||
| 2022-06-16 | Make yuzu-cmd respect log_filter setting | Nikita 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-16 | Implement ExitProcess svc | Nikita 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 | |||
| 2022-06-16 | core/debugger: memory breakpoint support | Liam | |
| 2022-06-16 | common: param_package: Demote DEBUG to TRACE for getters | Narr the Reg | |
| 2022-06-15 | kernel: fix some uses of disable_count | Liam | |
| 2022-06-16 | Merge pull request #8457 from liamwhite/kprocess-suspend | Fernando S | |
| kernel: implement KProcess suspension | |||
