- 21 Jan, 2021 1 commit
-
-
Lioncash authored
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.
-
- 17 Jan, 2021 5 commits
-
-
bunnei authored
core: Silence Wclass-memaccess warnings and enforce it
-
Rodrigo Locatti authored
video_core: Resolve -Wdocumentation warnings
-
bunnei authored
vulkan_debug_callback: Add missing header guard
-
Lioncash authored
Silences some -Wdocumentation warnings on Clang.
-
Lioncash authored
Prevents inclusion issues from occurring.
-
- 16 Jan, 2021 8 commits
-
-
Rodrigo Locatti authored
input_interpreter: Mark two member functions as const
-
Rodrigo Locatti authored
buffer_cache/buffer_base: Add a range tracking buffer container and tests
-
Lioncash authored
These aren't stateful functions, so we can make use of const. While we're at, we can resolve some -Wdocumentation warnings.
-
bunnei authored
input_interpreter: Add method to check for a button press state
-
Morph authored
This allows to check for continuous input for the duration of a button press/hold
-
bunnei authored
X86/NativeClock: Improve performance of clock calculations on hot path.
-
bunnei authored
common/tree: Convert defines over to templates
-
Rodrigo Locatti authored
vulkan_memory_allocator: Improvements to the memory allocator
-
- 15 Jan, 2021 26 commits
-
-
LC authored
common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT
-
ReinUsesLisp authored
Treat -Wclass-memaccess as an error.
-
ReinUsesLisp authored
This requires making several types trivial and properly initialize them whenever they are called.
-
ReinUsesLisp authored
INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
-
ReinUsesLisp authored
-
ReinUsesLisp authored
Use the Download memory type where it matters.
-
ReinUsesLisp authored
Implements the allocator logic to handle download memory types. This will try to use HOST_CACHED_BIT when available.
-
ReinUsesLisp authored
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.
-
ReinUsesLisp authored
Allow using the abstraction from the OpenGL backend.
-
ReinUsesLisp authored
"Memory manager" collides with the guest GPU memory manager, and a memory allocator sounds closer to what the abstraction aims to be.
-
ReinUsesLisp authored
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.
-
bunnei authored
common/timer: Remove
-
LC authored
common/alignment: Rename AlignBits to AlignUpLog2 and use constraints
-
Rodrigo Locatti authored
common/bit_util: Replace CLZ/CTZ operations with standardized ones
-
Lioncash authored
Makes for less code that we need to maintain.
-
ReinUsesLisp authored
-
ReinUsesLisp authored
AlignUpLog2 describes what the function does better than AlignBits.
-
Lioncash authored
This is a leftover from citra and dolphin that isn't used at all, particularly given the <chrono> header exists.
-
LC authored
common/color: Remove
-
LC authored
cmake: Remove yuzu_tester
-
ReinUsesLisp authored
This is a leftover from Citra we no longer use.
-
LC authored
{video_,}core/cmake: Remove Werror flags already defined code-base wide
-
ReinUsesLisp authored
-
ReinUsesLisp authored
These flags are already defined in src/cmake.
-
LC authored
cmake: Enforce -Wunused-function code-base wise
-
Rodrigo Locatti authored
vulkan_common: Silence missing initializer warnings
-