diff options
| author | 2021-01-17 02:43:06 -0500 | |
|---|---|---|
| committer | 2021-01-17 02:44:21 -0500 | |
| commit | 40acc2c079309c9c084e3aedd75ed42d42bfb20e (patch) | |
| tree | 3da640c9535074b6d9feff8c39527ed6f030b7d3 /src/video_core/vulkan_common | |
| parent | Merge pull request #5740 from lioncash/const-fn (diff) | |
| download | yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.tar.gz yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.tar.xz yuzu-40acc2c079309c9c084e3aedd75ed42d42bfb20e.zip | |
video_core: Resolve -Wdocumentation warnings
Silences some -Wdocumentation warnings on Clang.
Diffstat (limited to 'src/video_core/vulkan_common')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_memory_allocator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/vulkan_common/vulkan_memory_allocator.h b/src/video_core/vulkan_common/vulkan_memory_allocator.h index 53b3b275a..9e6cfabf9 100644 --- a/src/video_core/vulkan_common/vulkan_memory_allocator.h +++ b/src/video_core/vulkan_common/vulkan_memory_allocator.h | |||
| @@ -74,11 +74,10 @@ public: | |||
| 74 | MemoryAllocator(const MemoryAllocator&) = delete; | 74 | MemoryAllocator(const MemoryAllocator&) = delete; |
| 75 | 75 | ||
| 76 | /** | 76 | /** |
| 77 | * Commits a memory with the specified requeriments. | 77 | * Commits a memory with the specified requirements. |
| 78 | * | 78 | * |
| 79 | * @param requirements Requirements returned from a Vulkan call. | 79 | * @param requirements Requirements returned from a Vulkan call. |
| 80 | * @param host_visible Signals the allocator that it *must* use host visible and coherent | 80 | * @param usage Indicates how the memory will be used. |
| 81 | * memory. When passing false, it will try to allocate device local memory. | ||
| 82 | * | 81 | * |
| 83 | * @returns A memory commit. | 82 | * @returns A memory commit. |
| 84 | */ | 83 | */ |