diff options
author | bunnei <bunneidev@gmail.com> | 2019-02-23 23:29:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-23 23:29:53 -0500 |
commit | 4ab978d6709e44b6ff74f71102fe31719c19b19d (patch) | |
tree | 8ad505a02ea9691b3596f5601a7764167e2a1514 /src | |
parent | 94b27bb8a5183a23a6aebe2ce932f1ac89a162a8 (diff) | |
parent | 92050c4d867d1f408ba5bf7c693899f3c279c1b4 (diff) |
Merge pull request #2151 from ReinUsesLisp/fixup-vk-memory-manager
vk_memory_manager: Fixup commit interval allocation
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_vulkan/vk_memory_manager.cpp | 3 |
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 VKMemoryCommitImpl::VKMemoryCommitImpl(VKMemoryAllocation* allocation, vk::DeviceMemory memory, u8* data, u64 begin, u64 end) - : allocation{allocation}, memory{memory}, data{data}, - interval(std::make_pair(begin, begin + end)) {} + : allocation{allocation}, memory{memory}, data{data}, interval(std::make_pair(begin, end)) {} VKMemoryCommitImpl::~VKMemoryCommitImpl() { allocation->Free(this); |