Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-17 | Merge pull request #5757 from Morph1984/npad-handheld | LC | |
npad: Add check for HANDHELD_INDEX in UpdateControllerAt() | |||
2021-01-17 | npad: Add check for HANDHELD_INDEX in UpdateControllerAt() | Morph | |
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 | Merge pull request #5744 from lioncash/header-guard | bunnei | |
vulkan_debug_callback: Add missing header guard | |||
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 | Merge pull request #5366 from Morph1984/button-press | bunnei | |
input_interpreter: Add method to check for a button press state | |||
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 | 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. | |||
2021-01-15 | vulkan_common: Move allocator to the common directory | ReinUsesLisp | |
Allow using the abstraction from the OpenGL backend. | |||
2021-01-15 | renderer_vulkan: Rename Vulkan memory manager to memory allocator | ReinUsesLisp | |
"Memory manager" collides with the guest GPU memory manager, and a memory allocator sounds closer to what the abstraction aims to be. | |||
2021-01-15 | vk_memory_manager: Improve memory manager and its API | ReinUsesLisp | |
Fix a bug where the memory allocator could leave gaps between commits. To fix this the allocation algorithm was reworked, although it's still short in number of lines of code. Rework the allocation API to self-contained movable objects instead of naively using an unique_ptr to do the job for us. Remove the VK prefix. | |||
2021-01-15 | Merge pull request #5355 from lioncash/timer | bunnei | |
common/timer: Remove | |||
2021-01-15 | Merge pull request #5357 from ReinUsesLisp/alignment-log2 | LC | |
common/alignment: Rename AlignBits to AlignUpLog2 and use constraints | |||
2021-01-15 | Merge pull request #5356 from lioncash/clz | Rodrigo Locatti | |
common/bit_util: Replace CLZ/CTZ operations with standardized ones | |||
2021-01-15 | common/bit_util: Replace CLZ/CTZ operations with standardized ones | Lioncash | |
Makes for less code that we need to maintain. | |||
2021-01-15 | common/alignment: Upgrade to use constraints instead of static asserts | ReinUsesLisp | |
2021-01-15 | common/alignment: Rename AlignBits to AlignUpLog2 | ReinUsesLisp | |
AlignUpLog2 describes what the function does better than AlignBits. | |||
2021-01-15 | common/timer: Remove | Lioncash | |
This is a leftover from citra and dolphin that isn't used at all, particularly given the <chrono> header exists. | |||
2021-01-15 | Merge pull request #5354 from ReinUsesLisp/remove-common-color | LC | |
common/color: Remove | |||
2021-01-15 | Merge pull request #5352 from ReinUsesLisp/remove-tester | LC | |
cmake: Remove yuzu_tester | |||
2021-01-15 | common/color: Remove | ReinUsesLisp | |
This is a leftover from Citra we no longer use. | |||
2021-01-15 | Merge pull request #5353 from ReinUsesLisp/deduplicate-warning-flags | LC | |
{video_,}core/cmake: Remove Werror flags already defined code-base wide | |||
2021-01-15 | core/cmake: Remove Werror flags already defined code-base wide | ReinUsesLisp | |
2021-01-15 | video_core/cmake: Remove Werror flags already defined code-base wide | ReinUsesLisp | |
These flags are already defined in src/cmake. | |||
2021-01-15 | Merge pull request #5351 from ReinUsesLisp/vc-unused-functions | LC | |
cmake: Enforce -Wunused-function code-base wise | |||
2021-01-15 | Merge pull request #5350 from ReinUsesLisp/vk-init-warns | Rodrigo Locatti | |
vulkan_common: Silence missing initializer warnings | |||
2021-01-15 | Merge pull request #5349 from ReinUsesLisp/anv-fix | LC | |
vulkan_device: Enable shaderStorageImageMultisample conditionally | |||
2021-01-15 | cmake: Remove yuzu_tester | ReinUsesLisp | |
We never ended up using yuzu_tester. Removing it saves code duplication with yuzu_cmd, and distribution size on prebuilt packages. For unit testing, we can use catch2 from guest code and dump the results to a file. Then execute yuzu from a script on ci if we want this to be automated. | |||
2021-01-15 | cmake: Enforce -Wunused-function code-base wide | ReinUsesLisp | |
2021-01-15 | video_core: Enforce -Wunused-function | ReinUsesLisp | |
Stops us from merging code with unused functions in the future. If something is invoked behind conditionally evaluated code in a way that the language can't see it (e.g. preprocessor macros), the potentially unused function should use [[maybe_unused]]. | |||
2021-01-15 | Merge pull request #5348 from ReinUsesLisp/astc-robustness | LC | |
astc: Make the decoder more robust to invalid data | |||
2021-01-15 | vk_buffer_cache: Remove unused function | ReinUsesLisp | |
2021-01-15 | vulkan_common: Silence missing initializer warnings | ReinUsesLisp | |
Silence warnings explicitly initializing all members on construction. | |||
2021-01-15 | vulkan_device: Enable shaderStorageImageMultisample conditionally | ReinUsesLisp | |
Fix Vulkan initialization on ANV. | |||
2021-01-15 | astc: Increase integer encoded vector size | ReinUsesLisp | |
Invalid ASTC textures seem to write more bytes here, increase the size to something that can't make us push out of bounds. |