Browse Source
Merge pull request #5745 from lioncash/documentation
video_core: Resolve -Wdocumentation warnings
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
4 deletions
-
src/video_core/buffer_cache/buffer_base.h
-
src/video_core/vulkan_common/vulkan_memory_allocator.h
|
|
|
@ -446,7 +446,7 @@ private: |
|
|
|
* @param offset Offset in bytes from the start of the buffer |
|
|
|
* @param size Size in bytes of the region to query for modifications |
|
|
|
* |
|
|
|
* @tparam True to query GPU modified pages, false for CPU pages |
|
|
|
* @tparam gpu True to query GPU modified pages, false for CPU pages |
|
|
|
*/ |
|
|
|
template <bool gpu> |
|
|
|
[[nodiscard]] std::pair<u64, u64> ModifiedRegion(u64 offset, u64 size) const noexcept { |
|
|
|
|
|
|
|
@ -74,11 +74,10 @@ public: |
|
|
|
MemoryAllocator(const MemoryAllocator&) = delete; |
|
|
|
|
|
|
|
/** |
|
|
|
* Commits a memory with the specified requeriments. |
|
|
|
* Commits a memory with the specified requirements. |
|
|
|
* |
|
|
|
* @param requirements Requirements returned from a Vulkan call. |
|
|
|
* @param host_visible Signals the allocator that it *must* use host visible and coherent |
|
|
|
* memory. When passing false, it will try to allocate device local memory. |
|
|
|
* @param usage Indicates how the memory will be used. |
|
|
|
* |
|
|
|
* @returns A memory commit. |
|
|
|
*/ |
|
|
|
|