- 01 Jun, 2022 4 commits
-
-
Mai M authored
core/debugger: Implement new GDB stub debugger
-
Liam authored
-
Mai M authored
Update translations (2022-06-01)
-
The yuzu Community authored
-
- 30 May, 2022 3 commits
-
-
bunnei authored
Service: hid: Several improvements and implementations
-
Mai M authored
CMakeLists: Update boost to 1.79.0
-
Morph authored
This version of boost brings in a number of bug fixes, especially to the asio library. Details can be seen here: https://www.boost.org/users/history/version_1_79_0.html
-
- 29 May, 2022 3 commits
- 28 May, 2022 3 commits
-
-
Mai M authored
yuzu-qt: Call -Wl,--subsystem,windows directly
-
lat9nq authored
-mwindows doesn't work with Clang. tpoechtrager/wclang resolves this by just using MinGW-GCC to link the executable, however this prevents us from using LLVM-exclusive tools when building yuzu. Solution is to send the linker argument we need from -mwindows directly to the linker. From https://gcc-help.gcc.gnu.narkive.com/FogklN5J/gcc-wl-subsystem-windows-mwindows-options
-
bunnei authored
input_common: Make vibration request async
-
- 27 May, 2022 9 commits
-
-
bunnei authored
input_common: touch: Rewrite touch driver to support multiple touch points
-
german77 authored
Needed by Nintendo Switch Sports
-
german77 authored
Needed by Nintendo Switch Sports
-
german77 authored
service: hid: Implement EnableSixAxisSensorUnalteredPassthrough and IsSixAxisSensorUnalteredPassthroughEnabled Needed by Nintendo Switch Sports
-
german77 authored
-
german77 authored
-
german77 authored
-
german77 authored
-
german77 authored
-
- 26 May, 2022 2 commits
-
-
Mai M authored
path_util: Resolve `-Wpointer-bool-conversion` warning
-
lat9nq authored
Clang (rightfully) warns that we are checking for the existence of pointer to something just allocated on the stack, which is always true. Instead, check whether GetModuleFileNameW failed. Co-authored-by: Mai M <mathew1800@gmail.com>
-
- 25 May, 2022 5 commits
-
-
bunnei authored
vulkan_device: Block AMDVLK's VK_KHR_push_descriptor
-
bunnei authored
vulkan_device: Workaround extension bug
-
lat9nq authored
A bug occurs in yuzu when VK_KHR_workgroup_memory_explicit_layout is available but 16-bit integers are not supported in the host driver. Disable usage of the extension when this case arises.
-
lat9nq authored
Recent AMD Vulkan drivers (22.5.2 or 2.0.226 for specifically Vulkan) have a broken VK_KHR_push_descriptor implementation that causes a crash in yuzu. Disable it for the time being.
-
bunnei authored
vk_rasterizer: fix stencil test when two faces are disabled
-
- 23 May, 2022 2 commits
-
-
Narr the Reg authored
-
german77 authored
-
- 21 May, 2022 1 commit
-
-
liamwhite authored
general: Use Common::U16StringFromBuffer in place of QString::toStdU16String
-
- 17 May, 2022 3 commits
-
-
Mai M authored
video_core: Support new VkResult
-
Alexandre Bouvier authored
-
JakobDev authored
-
- 16 May, 2022 2 commits
-
-
lat9nq authored
Use auto and a more descriptive variable name. Secondly, fix some C++ misconceptions or constructing too many objects. Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> Co-authored-by: Lioncash <mathew1800@gmail.com>
-
Kyle K authored
The Icon was renamed in #8283 for Linux builds, and the fix proposed in #8312 would in turn break the icon for Windows users. I've decided to fix the aboutdialog.ui file via qtcreator. I'm not sure its important to have the yuzu icon inside the About dialog grabbed from the local Qt theme, but I've reword how the code works for that, and we can just delete those lines. I've also thrown the yuzu.png through pngcrush to remove this warning libpng warning: iCCP: known incorrect sRGB profile Credit to abouvier for bringing bug up.
-
- 15 May, 2022 3 commits
-
-
lat9nq authored
Qt's QString::toStdU16String doesn't work when compiling against the latest libstdc++, at least when using Clang. This function effectively does the same thing as the aforementioned one.