summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* core: fix initialization in single core, sync GPU modeGravatar Liam2022-06-164-0/+13
|
* Merge pull request #8472 from german77/taceGravatar Morph2022-06-161-3/+3
|\ | | | | common: param_package: Demote DEBUG to TRACE for getters
| * common: param_package: Demote DEBUG to TRACE for gettersGravatar Narr the Reg2022-06-161-3/+3
| |
* | Make yuzu-cmd respect log_filter settingGravatar Nikita Strygin2022-06-161-0/+6
| | | | | | | | | | | | | | 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.
* | Implement ExitProcess svcGravatar Nikita Strygin2022-06-161-1/+2
| | | | | | | | | | | | | | 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
* | Merge pull request #8457 from liamwhite/kprocess-suspendGravatar Fernando S2022-06-1612-212/+199
|\ \ | | | | | | kernel: implement KProcess suspension
| * | kernel: implement KProcess suspensionGravatar Liam2022-06-1412-212/+199
| |/
* | Merge pull request #8460 from Morph1984/bounded-qGravatar liamwhite2022-06-152-87/+74
|\ \ | | | | | | bounded_threadsafe_queue: Use constexpr capacity and mask
| * | bounded_threadsafe_queue: Use constexpr capacity and maskGravatar Morph2022-06-152-87/+74
| | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #8317 from german77/notifaGravatar bunnei2022-06-152-8/+172
|\ \ \ | | | | | | | | service: notifa: Implement most part of this service
| * | | service: notifa: Implement most part of this serviceGravatar german772022-05-092-8/+172
| | | | | | | | | | | | | | | | | | | | Implements partially RegisterAlarmSetting, UpdateAlarmSetting, LoadApplicationParameter, DeleteAlarmSetting. Needed for Fitness `Boxing 2: Rhythm & Exercise` and `Ring Fit Adventure`.
* | | | Merge pull request #8464 from liamwhite/break-debugGravatar Mai2022-06-151-0/+7
|\ \ \ \ | | | | | | | | | | kernel: notify debugger on break SVC
| * | | | kernel: notify debugger on break SVCGravatar Liam2022-06-141-0/+7
| | |_|/ | |/| |
* | | | vk_compute_pass: Explicitly cast to VkAccessFlagsGravatar Morph2022-06-151-25/+26
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Merge pull request #8383 from Morph1984/shadow-of-the-pastGravatar Mai2022-06-1435-153/+139
|\ \ \ \ | | | | | | | | | | yuzu: Make variable shadowing a compile-time error
| * | | | main: Eliminate variable shadowingGravatar Morph2022-06-141-3/+2
| | | | |
| * | | | wait_tree: Eliminate variable shadowingGravatar Morph2022-06-142-12/+12
| | | | |
| * | | | configure_ringcon: Eliminate variable shadowingGravatar Morph2022-06-141-4/+4
| | | | |
| * | | | configure_touch_from_button: Eliminate variable shadowingGravatar Morph2022-06-142-3/+3
| | | | |
| * | | | configure_per_game: Eliminate variable shadowingGravatar Morph2022-06-142-4/+4
| | | | |
| * | | | configure_input_player: Eliminate variable shadowingGravatar Morph2022-06-141-39/+39
| | | | |
| * | | | configure_dialog: Eliminate variable shadowingGravatar Morph2022-06-142-5/+4
| | | | |
| * | | | bootmanager: Eliminate variable shadowingGravatar Morph2022-06-141-1/+1
| | | | |
| * | | | game_list: Eliminate variable shadowingGravatar Morph2022-06-145-19/+19
| | | | |
| * | | | yuzu_cmd: Eliminate variable shadowingGravatar Morph2022-06-135-7/+7
| | | | |
| * | | | audio_core: Remove -Werror=unused-parameterGravatar Morph2022-06-131-1/+0
| | | | | | | | | | | | | | | | | | | | Removing this as we don't enforce unused parameter warnings elsewhere in the project, and explicitly specify -Wno-unused-parameter in the main CMakeLists.
| * | | | CMakeLists: Make variable shadowing a compile-time errorGravatar Morph2022-06-136-16/+5
| | | | | | | | | | | | | | | | | | | | 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.
| * | | | common: Eliminate variable shadowingGravatar Morph2022-06-131-2/+2
| | | | | | | | | | | | | | | | | | | | GCC/Clang treats variables within lambdas as potentially shadowing those outside the lambda, despite them not being captured inside the lambda's capture list.
| * | | | yuzu: Eliminate variable shadowingGravatar Morph2022-06-1310-25/+25
| | | | |
| * | | | web_service: Eliminate variable shadowingGravatar Morph2022-06-132-12/+12
| | | | |
* | | | | core: centralize profile scope for DynarmicGravatar Liam2022-06-143-7/+2
| |/ / / |/| | |
* | | | Merge pull request #8461 from Morph1984/msvc-narrow-convGravatar Morph2022-06-141-1/+1
|\ \ \ \ | | | | | | | | | | vk_compute_pass: Use VK_ACCESS_NONE
| * | | | vk_compute_pass: Use VK_ACCESS_NONEGravatar Morph2022-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This enumeration was introduced in Vulkan 1.3, prefer using this instead of defaulting the enum. Also resolves a narrowing conversion warning on MSVC.
* | | | | Merge pull request #8434 from german77/uuidGravatar Morph2022-06-142-33/+38
|\ \ \ \ \ | |/ / / / |/| | | | input_common: Replace usage of string guid to common uuid
| * | | | input_common: Replace usage of string guid to common uuidGravatar Narr the Reg2022-06-062-33/+38
| | | | |
* | | | | Merge pull request #8439 from liamwhite/monkey-compilerGravatar Mai2022-06-1479-213/+216
|\ \ \ \ \ | | | | | | | | | | | | general: fix compilation on GCC 12
| * | | | | kernel: fix passthrough of local captures in lambdaGravatar Liam2022-06-131-1/+3
| | | | | |
| * | | | | common/assert: rework ASSERT handling to avoid std::function usageGravatar Liam2022-06-132-35/+20
| | | | | |
| * | | | | general: fix compilation on MinGW GCC 12Gravatar Liam2022-06-132-6/+5
| | | | | |
| * | | | | common/assert: add unlikelyGravatar Liam2022-06-131-1/+1
| | | | | |
| * | | | | general: fix compilation on GCC 12Gravatar Liam2022-06-132-2/+2
| | | | | |
| * | | | | kernel: ensure class token lambda exit is unreachableGravatar Liam2022-06-131-0/+1
| | | | | |
| * | | | | kernel: fix inconsistency in AutoObjectTraits macro definitionsGravatar Liam2022-06-131-4/+7
| | | | | |
| * | | | | common: Don't test ASSERT conditions inlineGravatar Liam2022-06-132-32/+36
| | | | | |
| * | | | | common: Change semantics of UNREACHABLE to unconditionally crashGravatar Liam2022-06-1372-173/+182
| | |_|_|/ | |/| | |
* / | | | vk_compute_pass: Silence Wextra warningGravatar Morph2022-06-141-1/+1
|/ / / / | | | | | | | | | | | | Silences a warning about using enumerated and non-enumerated types in a conditional expression.
* | | | Merge pull request #8458 from lat9nq/no-constexpr-flow-blockGravatar liamwhite2022-06-131-6/+0
|\ \ \ \ | | | | | | | | | | structured_control_flow: Remove constexpr Flow::Block
| * | | | structured_control_flow: Remove constexpr Flow::BlockGravatar lat9nq2022-06-131-6/+0
| | |/ / | |/| | | | | | | | | | | | | | | | | | 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.
* | | | Merge pull request #8388 from liamwhite/simpler-pauseGravatar bunnei2022-06-133-95/+36
|\ \ \ \ | |/ / / |/| | | CpuManager: simplify pausing
| * | | CpuManager: simplify pausingGravatar Liam2022-06-083-95/+36
| | | |