diff options
author | bunnei <bunneidev@gmail.com> | 2020-04-16 05:54:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-16 05:54:58 +0200 |
commit | 319df1db77f5161ff17936f924fef0aed4dede45 (patch) | |
tree | bf23a6094d150818e7f7cd64e4b3ed08464c1898 | |
parent | Merge pull request #3649 from FernandoS27/3d-fix (diff) | |
parent | video_core: Amend doxygen comment references (diff) | |
download | yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar.gz yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar.bz2 yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar.lz yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar.xz yuzu-319df1db77f5161ff17936f924fef0aed4dede45.tar.zst yuzu-319df1db77f5161ff17936f924fef0aed4dede45.zip |
-rw-r--r-- | src/video_core/renderer_vulkan/vk_memory_manager.h | 2 | ||||
-rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/renderer_vulkan/vk_memory_manager.h b/src/video_core/renderer_vulkan/vk_memory_manager.h index 35ee54d30..5b6858e9b 100644 --- a/src/video_core/renderer_vulkan/vk_memory_manager.h +++ b/src/video_core/renderer_vulkan/vk_memory_manager.h @@ -32,7 +32,7 @@ public: * memory. When passing false, it will try to allocate device local memory. * @returns A memory commit. */ - VKMemoryCommit Commit(const VkMemoryRequirements& reqs, bool host_visible); + VKMemoryCommit Commit(const VkMemoryRequirements& requirements, bool host_visible); /// Commits memory required by the buffer and binds it. VKMemoryCommit Commit(const vk::Buffer& buffer, bool host_visible); diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index 4edd4313b..3e8663adf 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h @@ -614,10 +614,10 @@ private: * textures within the GPU if possible. Falls back to LLE when it isn't possible to use any of * the HLE methods. * - * @param overlaps The overlapping surfaces registered in the cache. - * @param params The parameters on the new surface. - * @param gpu_addr The starting address of the new surface. - * @param cache_addr The starting address of the new surface on physical memory. + * @param overlaps The overlapping surfaces registered in the cache. + * @param params The parameters on the new surface. + * @param gpu_addr The starting address of the new surface. + * @param cpu_addr The starting address of the new surface on physical memory. */ std::optional<std::pair<TSurface, TView>> Manage3DSurfaces(std::vector<TSurface>& overlaps, const SurfaceParams& params, |