Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-06-16 | CMakeModules: Add MinGWClangCross | lat9nq | |
Facilitates what programs we need for cross-compiling to Windows from Linux using LLVM's compilers. Based on MinGWCross | |||
2022-06-16 | ci/windows: Split up cmake command | lat9nq | |
Improves readability. | |||
2022-06-16 | Merge pull request #8472 from german77/tace | Morph | |
common: param_package: Demote DEBUG to TRACE for getters | |||
2022-06-16 | Merge pull request #8474 from DCNick3/yuzu-cmd-respect-log-filter | Morph | |
Make yuzu-cmd respect log_filter setting | |||
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 | Merge pull request #8473 from DCNick3/implement-exit-process | liamwhite | |
Implement ExitProcess svc | |||
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 | common: param_package: Demote DEBUG to TRACE for getters | Narr the Reg | |
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 | Merge pull request #8465 from Morph1984/why-msvc | Mai | |
vk_compute_pass: Explicitly cast to VkAccessFlags | |||
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 | Merge pull request #8462 from liamwhite/dynarmic-profile | Mai | |
core: centralize profile scope for Dynarmic | |||
2022-06-14 | kernel: notify debugger on break SVC | Liam | |
2022-06-14 | core: centralize profile scope for Dynarmic | Liam | |
2022-06-14 | externals: Update cpp-httplib to latest | Morph | |
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 | Merge pull request #8459 from Morph1984/wextra-gcc | Mai | |
vk_compute_pass: Silence Wextra warning | |||
2022-06-14 | externals: microprofileui: 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 | |
2022-06-13 | common/assert: rework ASSERT handling to avoid std::function usage | Liam | |
2022-06-13 | general: fix compilation on MinGW GCC 12 | Liam | |
2022-06-13 | common/assert: add unlikely | Liam | |
2022-06-13 | general: fix compilation on GCC 12 | Liam | |
2022-06-13 | kernel: ensure class token lambda exit is unreachable | Liam | |
2022-06-13 | kernel: fix inconsistency in AutoObjectTraits macro definitions | Liam | |
2022-06-13 | common: Don't test ASSERT conditions inline | Liam | |
2022-06-13 | common: Change semantics of UNREACHABLE to unconditionally crash | Liam | |
2022-06-13 | Merge pull request #8458 from lat9nq/no-constexpr-flow-block | liamwhite | |
structured_control_flow: Remove constexpr Flow::Block | |||
2022-06-13 | structured_control_flow: Remove constexpr Flow::Block | lat9nq | |
This seems to be unsupported in newer libstdc++ versions due to Flow::Block's base class being a non-literal type. It's not clear to me why this was permitted in earlier versions. | |||
2022-06-13 | Merge pull request #8388 from liamwhite/simpler-pause | bunnei | |
CpuManager: simplify pausing | |||
2022-06-13 | yuzu_cmd: Eliminate variable shadowing | Morph | |