summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-02-24 00:59:34 -0300
committerGravatar ReinUsesLisp2019-02-24 01:04:41 -0300
commit92050c4d867d1f408ba5bf7c693899f3c279c1b4 (patch)
tree8ad505a02ea9691b3596f5601a7764167e2a1514 /src
parentMerge pull request #2138 from ReinUsesLisp/vulkan-memory-manager (diff)
downloadyuzu-92050c4d867d1f408ba5bf7c693899f3c279c1b4.tar.gz
yuzu-92050c4d867d1f408ba5bf7c693899f3c279c1b4.tar.xz
yuzu-92050c4d867d1f408ba5bf7c693899f3c279c1b4.zip
vk_memory_manager: Fixup commit interval allocation
VKMemoryCommitImpl was using as the end of its interval "begin + end". That ended up wasting memory.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_vulkan/vk_memory_manager.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/renderer_vulkan/vk_memory_manager.cpp b/src/video_core/renderer_vulkan/vk_memory_manager.cpp
index 86364ad54..17ee93b91 100644
--- a/src/video_core/renderer_vulkan/vk_memory_manager.cpp
+++ b/src/video_core/renderer_vulkan/vk_memory_manager.cpp
@@ -238,8 +238,7 @@ bool VKMemoryManager::AllocMemory(vk::MemoryPropertyFlags wanted_properties, u32
238 238
239VKMemoryCommitImpl::VKMemoryCommitImpl(VKMemoryAllocation* allocation, vk::DeviceMemory memory, 239VKMemoryCommitImpl::VKMemoryCommitImpl(VKMemoryAllocation* allocation, vk::DeviceMemory memory,
240 u8* data, u64 begin, u64 end) 240 u8* data, u64 begin, u64 end)
241 : allocation{allocation}, memory{memory}, data{data}, 241 : allocation{allocation}, memory{memory}, data{data}, interval(std::make_pair(begin, end)) {}
242 interval(std::make_pair(begin, begin + end)) {}
243 242
244VKMemoryCommitImpl::~VKMemoryCommitImpl() { 243VKMemoryCommitImpl::~VKMemoryCommitImpl() {
245 allocation->Free(this); 244 allocation->Free(this);