Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-06-06 | input_common: Replace usage of string guid to common uuid | Narr the Reg | |
2022-06-04 | Merge pull request #8395 from german77/ir_stub | bunnei | |
service: hid: Improve stub of IRS | |||
2022-06-03 | Merge pull request #8414 from bylaws/master | Fernando S | |
Maxwell3D: Fix 3D semaphore counter type 0 handling | |||
2022-06-02 | Maxwell3D: Fix 3D semaphore counter type 0 handling | Billy Laws | |
Counter type 0 actually releases the semaphore payload rather than a constant zero as was previously thought. This is required by Skyrim. | |||
2022-06-02 | Merge pull request #8410 from liamwhite/thread-names | Mai M | |
gdbstub: Support reading guest thread names | |||
2022-06-01 | core/debugger: Support reading guest thread names | Liam | |
2022-06-01 | Merge pull request #8409 from liamwhite/tdesc-fix | Mai M | |
gdbstub: fix target descriptions | |||
2022-06-01 | Merge pull request #8402 from liamwhite/better-step | Morph | |
core/debugger: Improved stepping mechanism and misc fixes | |||
2022-06-01 | gdbstub: fix target descriptions | Liam | |
2022-06-01 | Merge pull request #8400 from Docteh/fullscreen_glitch | bunnei | |
fix UI opening fullscreen after certain crashes | |||
2022-06-01 | Merge pull request #8404 from Morph1984/virtual | liamwhite | |
core/debugger: Define defaulted virtual destructors | |||
2022-06-01 | Merge pull request #8403 from Morph1984/cast | liamwhite | |
gdbstub: Explicitly cast return type to u8 | |||
2022-06-01 | core/debugger: Define defaulted virtual destructors | Morph | |
Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions. | |||
2022-06-01 | core/debugger: Improved stepping mechanism and misc fixes | Liam | |
2022-06-01 | gdbstub: Explicitly cast return type to u8 | Morph | |
Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8. | |||
2022-05-31 | fix UI opening fullscreen after certain crashes | Kyle Kienapfel | |
Sometimes when yuzu crashes, it restarts with the games list in fullscreen, which would be fine, except there isn't an easy way to exit this. It also doesn't occur often enough for qt-config.ini files to be in good supply. UILayout\geometry value in qt-config.ini is the culprit, at least for the one provided. Proposed fix is to simply check isFullScreen when yuzu is starting up, and take it out of full screen immediately | |||
2022-06-01 | Merge pull request #8394 from liamwhite/debugger | Mai M | |
core/debugger: Implement new GDB stub debugger | |||
2022-06-01 | core/debugger: Implement new GDB stub debugger | Liam | |
2022-05-31 | Merge pull request #8401 from zhaobot/tx-update-20220601034505 | Mai M | |
Update translations (2022-06-01) | |||
2022-06-01 | Update translations (2022-06-01) | The yuzu Community | |
2022-05-31 | service: hid: Improve stub of IRS | Narr the Reg | |
2022-05-30 | Merge pull request #8368 from german77/seventimes | bunnei | |
Service: hid: Several improvements and implementations | |||
2022-05-30 | Merge pull request #8392 from Morph1984/boosted | Mai M | |
CMakeLists: Update boost to 1.79.0 | |||
2022-05-29 | CMakeLists: Update boost to 1.79.0 | Morph | |
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 | |||
2022-05-29 | Merge pull request #8348 from JakobDev/metainfocontrol | bunnei | |
Add control to metainfo | |||
2022-05-29 | Merge pull request #8332 from Morph1984/reduce_exec_size | bunnei | |
general: Use smaller array types where applicable | |||
2022-05-29 | Merge pull request #8339 from Docteh/about_icon | bunnei | |
about dialog: Fix yuzu icon | |||
2022-05-28 | Merge pull request #8385 from lat9nq/just-subsys-win | Mai M | |
yuzu-qt: Call -Wl,--subsystem,windows directly | |||
2022-05-28 | yuzu-qt: Call -Wl,--subsystem,windows directly | lat9nq | |
-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 | |||
2022-05-28 | Merge pull request #8374 from german77/asnycvibrations | bunnei | |
input_common: Make vibration request async | |||
2022-05-27 | Merge pull request #8372 from german77/touch | bunnei | |
input_common: touch: Rewrite touch driver to support multiple touch points | |||
2022-05-27 | service: hid: Implement ResetIsSixAxisSensorDeviceNewlyAssigned | german77 | |
Needed by Nintendo Switch Sports | |||
2022-05-27 | service: hid: Implement LoadSixAxisSensorCalibrationParameter and ↵ | german77 | |
GetSixAxisSensorIcInformation Needed by Nintendo Switch Sports | |||
2022-05-27 | service: hid: Implement EnableSixAxisSensorUnalteredPassthrough and ↵ | german77 | |
IsSixAxisSensorUnalteredPassthroughEnabled Needed by Nintendo Switch Sports | |||
2022-05-27 | service: hid: Add error handling to sixaxis functions | german77 | |
2022-05-27 | service: hid: Refractor sixaxis functions | german77 | |
2022-05-27 | service: hid: Implement MergeSingleJoyAsDualJoy according to RE | german77 | |
2022-05-27 | service: hid: Add error handling to setNpadAssignment and variants | german77 | |
2022-05-27 | service: hid: Quick RE fixes and comments | german77 | |
2022-05-26 | Merge pull request #8381 from lat9nq/path-util-pointer-bool | Mai M | |
path_util: Resolve `-Wpointer-bool-conversion` warning | |||
2022-05-26 | path_util: Resolve `-Wpointer-bool-conversion` warning | lat9nq | |
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> | |||
2022-05-25 | Merge pull request #8379 from lat9nq/amd-push-desc-workaround | bunnei | |
vulkan_device: Block AMDVLK's VK_KHR_push_descriptor | |||
2022-05-25 | Merge pull request #8369 from lat9nq/amd-wmel-workaround | bunnei | |
vulkan_device: Workaround extension bug | |||
2022-05-25 | vulkan_device: Workaround extension bug | lat9nq | |
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. | |||
2022-05-25 | vulkan_device: Block AMDVLK's VK_KHR_push_descriptor | lat9nq | |
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. | |||
2022-05-24 | Merge pull request #8311 from asLody/fix-stencil-faces | bunnei | |
vk_rasterizer: fix stencil test when two faces are disabled | |||
2022-05-23 | input_common: Make vibration request async | Narr the Reg | |
2022-05-23 | input_common: touch: Rewrite touch driver to support multiple touch points | german77 | |
2022-05-20 | Merge pull request #8342 from lat9nq/clang-latest-stdc++ | liamwhite | |
general: Use Common::U16StringFromBuffer in place of QString::toStdU16String | |||
2022-05-17 | Merge pull request #8351 from abouvier/patch-2 | Mai M | |
video_core: Support new VkResult |