Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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 | 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 | |||
2022-06-15 | Merge pull request #8460 from Morph1984/bounded-q | liamwhite | |
bounded_threadsafe_queue: Use constexpr capacity and mask | |||
2022-06-15 | bounded_threadsafe_queue: Use constexpr capacity and mask | Morph | |
While this is the primary change, we also: - Remove the mpsc namespace and rename Queue to MPSCQueue - Make Slot a private struct within MPSCQueue - Remove the AlignedAllocator template argument, as we use std::allocator - Replace instances of mask + 1 with capacity, and mask + 2 with capacity + 1 | |||
2022-06-15 | Merge pull request #8317 from german77/notifa | bunnei | |
service: notifa: Implement most part of this service | |||
2022-06-15 | Merge pull request #8464 from liamwhite/break-debug | Mai | |
kernel: notify debugger on break SVC | |||
2022-06-15 | vk_compute_pass: Explicitly cast to VkAccessFlags | Morph | |
According to the standard, a narrowing conversion is an implicit conversion from an integer or unscoped enumeration type to an integer type that cannot represent all the values of the original type, except when the value is a literal or constant expression. MSVC, unlike GCC or Clang, determines this to be a narrowing conversion despite the enumeration exclusively containing values that fit within the range of a 32 bit integer, emitting a warning since designated initializers prohibit narrowing conversions. To solve this, explicitly cast to the type we are initializing. | |||
2022-06-14 | Merge pull request #8383 from Morph1984/shadow-of-the-past | Mai | |
yuzu: Make variable shadowing a compile-time error | |||
2022-06-14 | kernel: notify debugger on break SVC | Liam | |
2022-06-14 | core: centralize profile scope for Dynarmic | Liam | |
2022-06-14 | main: Eliminate variable shadowing | Morph | |
2022-06-14 | kernel: implement KProcess suspension | Liam | |
2022-06-14 | Merge pull request #8461 from Morph1984/msvc-narrow-conv | Morph | |
vk_compute_pass: Use VK_ACCESS_NONE | |||
2022-06-14 | Merge pull request #8434 from german77/uuid | Morph | |
input_common: Replace usage of string guid to common uuid | |||
2022-06-14 | vk_compute_pass: Use VK_ACCESS_NONE | Morph | |
This enumeration was introduced in Vulkan 1.3, prefer using this instead of defaulting the enum. Also resolves a narrowing conversion warning on MSVC. | |||
2022-06-14 | Merge pull request #8439 from liamwhite/monkey-compiler | Mai | |
general: fix compilation on GCC 12 | |||
2022-06-14 | wait_tree: Eliminate variable shadowing | Morph | |
2022-06-14 | configure_ringcon: Eliminate variable shadowing | Morph | |
2022-06-14 | configure_touch_from_button: Eliminate variable shadowing | Morph | |
2022-06-14 | configure_per_game: Eliminate variable shadowing | Morph | |
2022-06-14 | configure_input_player: Eliminate variable shadowing | Morph | |
2022-06-14 | configure_dialog: Eliminate variable shadowing | Morph | |
2022-06-14 | bootmanager: Eliminate variable shadowing | Morph | |
2022-06-14 | game_list: Eliminate variable shadowing | Morph | |
2022-06-14 | vk_compute_pass: Silence Wextra warning | Morph | |
Silences a warning about using enumerated and non-enumerated types in a conditional expression. | |||
2022-06-13 | kernel: fix passthrough of local captures in lambda | Liam | |