| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-18 | UI: Translate hotkey labels in configuration | Kyle K | |
| Another request from GillianMC. The translated strings have been placed in a separate "Hotkeys" context as an alternative to having to add the tr function to the Config class, or adding them to ConfigureHotkeys context which is quite long. The English strings get attached to the items in the Action column as "data", and are used for RetranslateUI and saving the hotkey configuration. | |||
| 2022-05-17 | Merge pull request #8351 from abouvier/patch-2 | Mai M | |
| video_core: Support new VkResult | |||
| 2022-05-17 | video_core: Support new VkResult | Alexandre Bouvier | |
| 2022-05-17 | Add control to Metainfo | JakobDev | |
| 2022-05-16 | qt_software_keyboard: Address review feedback | lat9nq | |
| 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> | |||
| 2022-05-16 | about dialog: Fix the logo in a multiplatform way | Kyle K | |
| 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. | |||
| 2022-05-15 | main: Use Common::U16StringFromBuffer | lat9nq | |
| See ffd3afcf2 | |||
| 2022-05-15 | qt_software_keyboard: Use Common::U16StringFromBuffer | lat9nq | |
| See ffd3afcf2 | |||
| 2022-05-15 | string_util: Add U16StringFromBuffer | lat9nq | |
| 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. | |||
| 2022-05-15 | Merge pull request #8336 from abouvier/unspirv | Mai M | |
| sirit: Allow using system spirv-headers | |||
| 2022-05-14 | Merge pull request #8337 from lioncash/fmt | Mai M | |
| general: Avoid ambiguous format_to compilation errors | |||
| 2022-05-14 | general: Avoid ambiguous format_to compilation errors | Lioncash | |
| Ensures that we're using the fmt version of format_to. These are also the only three outliers. All of the other formatters we have are properly qualified. | |||
| 2022-05-14 | sirit: Allow using system spirv-headers | Alexandre Bouvier | |
| 2022-05-13 | time_zone_manager: Use s8 for month length tables | Morph | |
| Using this smaller type saves 512 bytes in the compiled executable. | |||
| 2022-05-13 | video_core/surface: Use u8 for PixelFormat block tables | Morph | |
| Using this smaller type saves 33280 bytes in the compiled executable. | |||
| 2022-05-13 | codecs/vp9: Use u8 for norm and map luts | Morph | |
| Using this smaller type saves 1536 bytes in the compiled executable. | |||
| 2022-05-13 | command_generator: Use u8 for tap index lut | Morph | |
| Using this smaller type saves 1024 bytes in the compiled executable. | |||
| 2022-05-11 | Merge pull request #8308 from german77/disablesix | Morph | |
| service: hid: Disable correctly motion input | |||
| 2022-05-11 | Merge pull request #8314 from liamwhite/gl-flip-2 | Morph | |
| OpenGL: interpret face flips according to GL NDC | |||
| 2022-05-11 | Merge pull request #8313 from liamwhite/dma-bpp | Morph | |
| maxwell_dma: fix bytes_per_pixel | |||
| 2022-05-11 | Merge pull request #8328 from liamwhite/macro-clear | Morph | |
| video_core/macro: clear code on upload address assignment | |||
| 2022-05-10 | maxwell_dma: use fallback if remapping is enabled | Liam | |
| 2022-05-10 | video_core/macro: clear code on upload address assignment | Liam | |
| 2022-05-09 | Merge pull request #8325 from zhaobot/tx-update-20220509164742 | Mai M | |
| Update translations (2022-05-09) | |||
| 2022-05-09 | Update translations (2022-05-09) | The yuzu Community | |
| 2022-05-08 | Merge pull request #8320 from liamwhite/macro-dump | Mai M | |
| video_core/macro: Add option to dump macros | |||
| 2022-05-08 | VideoCore: Add option to dump the macros. | Fernando Sahmkow | |
| Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com> | |||
| 2022-05-08 | Merge pull request #8319 from liamwhite/macro-warn | Mai M | |
| video_core/macro_jit_x64: warn on invalid parameter access | |||
| 2022-05-08 | video_core/macro_jit_x64: warn on invalid parameter access | Liam | |
| 2022-05-06 | OpenGL: implement face flips according to NDC | Liam | |
| 2022-05-06 | maxwell_dma: fix bytes per pixel | Liam | |
| 2022-05-06 | service: hid: Fix motion refresh rate | Narr the Reg | |
| 2022-05-06 | service: hid: Disable correctly motion input | german77 | |
| 2022-05-06 | vk_rasterizer: fix stencil test when two faces are disabled | Lody | |
