summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-02-24 05:29:53 +0100
committerGitHub <noreply@github.com>2019-02-24 05:29:53 +0100
commit4ab978d6709e44b6ff74f71102fe31719c19b19d (patch)
tree8ad505a02ea9691b3596f5601a7764167e2a1514
parentMerge pull request #2138 from ReinUsesLisp/vulkan-memory-manager (diff)
parentvk_memory_manager: Fixup commit interval allocation (diff)
downloadyuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar.gz
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar.bz2
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar.lz
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar.xz
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.tar.zst
yuzu-4ab978d6709e44b6ff74f71102fe31719c19b19d.zip
-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
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);