mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Small fix in VmaAllocator_T::AllocateDedicatedMemory.
This commit is contained in:
parent
358bc78544
commit
f72365c0fc
@ -6515,16 +6515,19 @@ VkResult VmaAllocator_T::AllocateDedicatedMemory(
|
||||
allocInfo.allocationSize = size;
|
||||
|
||||
VkMemoryDedicatedAllocateInfoKHR dedicatedAllocInfo = { VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO_KHR };
|
||||
if(dedicatedBuffer != VK_NULL_HANDLE)
|
||||
if(m_UseKhrDedicatedAllocation)
|
||||
{
|
||||
VMA_ASSERT(dedicatedImage == VK_NULL_HANDLE);
|
||||
dedicatedAllocInfo.buffer = dedicatedBuffer;
|
||||
allocInfo.pNext = &dedicatedAllocInfo;
|
||||
}
|
||||
else if(dedicatedImage != VK_NULL_HANDLE)
|
||||
{
|
||||
dedicatedAllocInfo.image = dedicatedImage;
|
||||
allocInfo.pNext = &dedicatedAllocInfo;
|
||||
if(dedicatedBuffer != VK_NULL_HANDLE)
|
||||
{
|
||||
VMA_ASSERT(dedicatedImage == VK_NULL_HANDLE);
|
||||
dedicatedAllocInfo.buffer = dedicatedBuffer;
|
||||
allocInfo.pNext = &dedicatedAllocInfo;
|
||||
}
|
||||
else if(dedicatedImage != VK_NULL_HANDLE)
|
||||
{
|
||||
dedicatedAllocInfo.image = dedicatedImage;
|
||||
allocInfo.pNext = &dedicatedAllocInfo;
|
||||
}
|
||||
}
|
||||
|
||||
// Allocate VkDeviceMemory.
|
||||
|
Loading…
Reference in New Issue
Block a user