Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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 | |
2022-06-13 | audio_core: Remove -Werror=unused-parameter | Morph | |
Removing this as we don't enforce unused parameter warnings elsewhere in the project, and explicitly specify -Wno-unused-parameter in the main CMakeLists. | |||
2022-06-13 | CMakeLists: Make variable shadowing a compile-time error | Morph | |
Now that the entire project is free of variable shadowing, we can enforce this as a compile time error to prevent any further introduction of this logic bug. | |||
2022-06-13 | externals: microprofile: Eliminate variable shadowing | Morph | |
2022-06-13 | common: Eliminate variable shadowing | Morph | |
GCC/Clang treats variables within lambdas as potentially shadowing those outside the lambda, despite them not being captured inside the lambda's capture list. | |||
2022-06-13 | yuzu: Eliminate variable shadowing | Morph | |
2022-06-13 | web_service: Eliminate variable shadowing | Morph | |
2022-06-13 | Merge pull request #8446 from liamwhite/cmd-gdb | Morph | |
core/debugger: support operation in yuzu-cmd | |||
2022-06-13 | Merge pull request #8454 from liamwhite/inaddr-any | Morph | |
core/debugger: allow remote connections | |||
2022-06-13 | Merge pull request #8443 from liamwhite/code-mem | bunnei | |
kernel: fix KCodeMemory initialization | |||
2022-06-12 | core/debugger: allow remote connections | Liam | |
2022-06-11 | Merge pull request #8450 from lioncash/undef | liamwhite | |
gdbstub_arch: Add missing virtual destructor | |||
2022-06-11 | gdbstub_arch: Add missing virtual destructor | Lioncash | |
The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer. | |||
2022-06-11 | Merge pull request #8353 from Docteh/msvc_report_runtime | Mai M | |
log the MSVC runtime version when running on MSVC build | |||
2022-06-11 | Merge pull request #8427 from Docteh/deprecate_qdesktop | Mai M | |
deprecate usage of QDesktopWidget for going fullscreen | |||
2022-06-11 | Merge pull request #8449 from Docteh/translate_placeholder | Mai M | |
retranslate the game list placeholder |