| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-24 | cmake: Enforce -Warray-bounds and -Wmissing-field-initializers globally | ReinUsesLisp | |
| 2021-01-24 | video_core/cmake: Enforce -Warray-bounds and -Wmissing-field-initializers | ReinUsesLisp | |
| 2021-01-24 | video_core: Silence -Wmissing-field-initializers warnings | ReinUsesLisp | |
| 2021-01-24 | maxwell_3d: Silence array bounds warnings | ReinUsesLisp | |
| 2021-01-24 | maxwell_to_vk: Silence -Wextra warnings about using different enum types | ReinUsesLisp | |
| 2021-01-23 | shader_ir: Fix comment typo | Levi Behunin | |
| 2021-01-23 | sdl_impl: Set the maximum vibration duration to 1 second | Morph | |
| 2021-01-23 | Merge pull request #5797 from ReinUsesLisp/nsight-aftermath-build | LC | |
| nsight_aftermath_tracker: Fix build issues when enabled | |||
| 2021-01-23 | video_core/cmake: Properly generate fatal errors on Aftermath | ReinUsesLisp | |
| Fix "message(ERROR ..." to "message(FATAL_ERROR ..." to properly stop cmake when Nsight Aftermath can't be configured. | |||
| 2021-01-23 | nsight_aftermath_tracker: Fix build issues when enabled | ReinUsesLisp | |
| Fixes a bunch of build errors when Nsight Aftermath is properly enabled. | |||
| 2021-01-22 | Merge pull request #5776 from ogniK5377/lbl | bunnei | |
| lbl: Implement most of lbl | |||
| 2021-01-22 | Merge pull request #4713 from behunin/int-flags | bunnei | |
| Start of Integer flags implementation | |||
| 2021-01-22 | Merge pull request #5765 from ogniK5377/StoreSaveDataThumbnail-stub | bunnei | |
| acc: Stub StoreSaveDataThumbnail | |||
| 2021-01-21 | common: Add missing include to bit_util.h | bunnei | |
| 2021-01-21 | Merge pull request #5781 from lioncash/bits | bunnei | |
| bit_util: Unify implementations of MostSignificantBit32/MostSignificantBit64 | |||
| 2021-01-21 | bit_util: Unify implementations of MostSignificantBit32/MostSignificantBit64 | Lioncash | |
| We can use the standardized CLZ facilities to perform this. This also allows us to make utilizing functions constexpr and eliminate the inclusion of an intrinsics header. | |||
| 2021-01-20 | Merge pull request #5270 from german77/multiTouch | bunnei | |
| HID: Add multitouch support | |||
| 2021-01-20 | Merge pull request #5361 from ReinUsesLisp/vk-shader-comment | bunnei | |
| vk_shader_decompiler: Show comments as OpUndef with a type | |||
| 2021-01-20 | Merge pull request #5743 from german77/HandheldFix | bunnei | |
| Fix player 1 turning on handheld and not updating handheld settings | |||
| 2021-01-21 | lbl: Implement most of lbl | Chloe Marcec | |
| Pretty basic service, only thing left to do is handle setting applying once set:sys is implemented | |||
| 2021-01-19 | Merge pull request #5755 from FearlessTobi/port-5344 | bunnei | |
| Port citra-emu/citra#5344: "game_list: Fix folder reordering" | |||
| 2021-01-19 | acc: Stub StoreSaveDataThumbnail | Chloe Marcec | |
| Fixes ACA NEOGEO METAL SLUG hanging on boot. | |||
| 2021-01-18 | Merge pull request #5746 from lioncash/sign-compare | Rodrigo Locatti | |
| texture_cache/util: Resolve -Wsign-compare warning | |||
| 2021-01-17 | Merge pull request #5754 from lat9nq/fix-disable-boxcat | LC | |
| configure_service: Only compile FormatEventStatusString when YUZU_ENABLE_BOXCAT is enabled | |||
| 2021-01-17 | npad: Add check for HANDHELD_INDEX in UpdateControllerAt() | Morph | |
| 2021-01-17 | Always update configuration for handheld | german | |
| 2021-01-18 | game_list: Fix folder reordering | FearlessTobi | |
| The bug(s) happened because we swapped the contents on values.game_dirs, but the pointer each item had to their respective game_dir wasn't updated. This made it so that the item had the wrong game_dir associated with it after a "move up" or "move down" operation. It can be observed by choosing "open directory location" after such operation. Changed from raw pointer to an index because it's equivalent but a bit clearer, but the change is not essential. Co-Authored-By: Vitor K <29167336+vitor-k@users.noreply.github.com> | |||
| 2021-01-17 | configure_service: Only compile FormatEventStatusString when ↵ | lat9nq | |
| YUZU_ENABLE_BOXCAT is enabled The function is unused if YUZU_ENABLE_BOXCAT is disabled, causing a -Wunused-funciton error when compiled. Wrapping it with `#ifdef YUZU_ENABLE_BOXCAT` to prevent compiling the function when the variable is disabled. Opting to not use [[maybe unused]] in case the function is totally unused in the future. | |||
| 2021-01-17 | Fix player 1 default connected value | german | |
| 2021-01-17 | Merge pull request #5360 from ReinUsesLisp/enforce-memclass-access | bunnei | |
| core: Silence Wclass-memaccess warnings and enforce it | |||
| 2021-01-17 | Merge pull request #5745 from lioncash/documentation | Rodrigo Locatti | |
| video_core: Resolve -Wdocumentation warnings | |||
| 2021-01-17 | texture_cache/util: Resolve -Wsign-compare warning | Lioncash | |
| Resolves a -Wsign-compare warning on Clang. | |||
| 2021-01-17 | video_core: Resolve -Wdocumentation warnings | Lioncash | |
| Silences some -Wdocumentation warnings on Clang. | |||
| 2021-01-17 | vulkan_debug_callback: Add missing header guard | Lioncash | |
| Prevents inclusion issues from occurring. | |||
| 2021-01-16 | Merge pull request #5740 from lioncash/const-fn | Rodrigo Locatti | |
| input_interpreter: Mark two member functions as const | |||
| 2021-01-16 | Merge pull request #5262 from ReinUsesLisp/buffer-base | Rodrigo Locatti | |
| buffer_cache/buffer_base: Add a range tracking buffer container and tests | |||
| 2021-01-16 | input_interpreter: Mark two member functions as const | Lioncash | |
| These aren't stateful functions, so we can make use of const. While we're at, we can resolve some -Wdocumentation warnings. | |||
| 2021-01-16 | input_interpreter: Add method to check for a button press state | Morph | |
| This allows to check for continuous input for the duration of a button press/hold | |||
| 2021-01-15 | Merge pull request #5275 from FernandoS27/fast-native-clock | bunnei | |
| X86/NativeClock: Improve performance of clock calculations on hot path. | |||
| 2021-01-15 | Merge pull request #5336 from lioncash/tree | bunnei | |
| common/tree: Convert defines over to templates | |||
| 2021-01-15 | Merge pull request #5297 from ReinUsesLisp/vulkan-allocator-common | Rodrigo Locatti | |
| vulkan_memory_allocator: Improvements to the memory allocator | |||
| 2021-01-15 | vk_shader_decompiler: Show comments as OpUndef with a type | ReinUsesLisp | |
| Silence the new validation layer error about SPIR-V not allowing OpUndef on a OpTypeVoid, even when the SPIR-V spec doesn't say anything against it. They will be inserted as an undefined int to avoid SPIRV-Cross and validation errors, but only when a debugging tool is attached. | |||
| 2021-01-15 | Merge pull request #5358 from ReinUsesLisp/rename-insert-padding | LC | |
| common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT | |||
| 2021-01-15 | core/cmake: Enforce Wclass-memaccess | ReinUsesLisp | |
| Treat -Wclass-memaccess as an error. | |||
| 2021-01-15 | core: Silence Wclass-memaccess warnings | ReinUsesLisp | |
| This requires making several types trivial and properly initialize them whenever they are called. | |||
| 2021-01-15 | common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT | ReinUsesLisp | |
| INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior. | |||
| 2021-01-15 | vulkan_memory_allocator: Remove unnecesary 'device' memory from commits | ReinUsesLisp | |
| 2021-01-15 | vk_texture_cache: Use Download memory types for texture flushes | ReinUsesLisp | |
| Use the Download memory type where it matters. | |||
| 2021-01-15 | vulkan_memory_allocator: Add allocation support for download types | ReinUsesLisp | |
| Implements the allocator logic to handle download memory types. This will try to use HOST_CACHED_BIT when available. | |||
| 2021-01-15 | vulkan_memory_allocator: Add "download" memory usage hint | ReinUsesLisp | |
| Allow users of the allocator to hint memory usage for downloads. This removes the non-descriptive boolean passed for "host visible" or not host visible memory commits, and uses an enum to hint device local, upload and download usages. | |||
