- 22 Jun, 2022 4 commits
- 21 Jun, 2022 2 commits
- 20 Jun, 2022 2 commits
-
-
liamwhite authored
service: am: Stub PerformSystemButtonPressingIfInFocus
-
Narr the Reg authored
Used by Ring Fit Adventure
-
- 18 Jun, 2022 1 commit
-
-
Liam authored
-
- 17 Jun, 2022 5 commits
-
-
Morph authored
core: fix initialization in single core, sync GPU mode
-
lat9nq authored
Uses the MinGWClangCross toolchain script to build yuzu. Disables our bundled SDL2 to use the system ones that have been modified to not use `-mwindows`. Also set's `-e` to stop the script on an error (as opposed to packaging nothing). Uses LLVM's linker for linking yuzu. Adds -femulated-tls due to a libstdc++ incompatibility between GCC and Clang in vulkan_common.
-
lat9nq authored
Facilitates what programs we need for cross-compiling to Windows from Linux using LLVM's compilers. Based on MinGWCross
-
lat9nq authored
Improves readability.
-
Liam authored
-
- 16 Jun, 2022 9 commits
-
-
Morph authored
common: param_package: Demote DEBUG to TRACE for getters
-
Morph authored
Make yuzu-cmd respect log_filter setting
-
Nikita Strygin authored
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.
-
liamwhite authored
Implement ExitProcess svc
-
Nikita Strygin authored
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
-
Liam authored
-
Narr the Reg authored
-
Liam authored
-
Fernando S authored
kernel: implement KProcess suspension
-
- 15 Jun, 2022 9 commits
-
-
liamwhite authored
bounded_threadsafe_queue: Use constexpr capacity and mask
-
Morph authored
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
-
bunnei authored
service: notifa: Implement most part of this service
-
Mai authored
kernel: notify debugger on break SVC
-
Mai authored
vk_compute_pass: Explicitly cast to VkAccessFlags
-
Morph authored
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.
-
Mai authored
yuzu: Make variable shadowing a compile-time error
-
Mai authored
core: centralize profile scope for Dynarmic
-
Liam authored
-
- 14 Jun, 2022 8 commits
-
-
Liam authored
-
Morph authored
-
Morph authored
-
Liam authored
-
Morph authored
vk_compute_pass: Use VK_ACCESS_NONE
-
Morph authored
input_common: Replace usage of string guid to common uuid
-
Morph authored
This enumeration was introduced in Vulkan 1.3, prefer using this instead of defaulting the enum. Also resolves a narrowing conversion warning on MSVC.
-
Mai authored
general: fix compilation on GCC 12
-