mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Internal fix in VmaBlockVector::AllocatePage
This commit is contained in:
parent
37c2d74b05
commit
a1895bc765
@ -12252,7 +12252,8 @@ VkResult VmaBlockVector::AllocatePage(
|
||||
freeMemory = (heapBudget.usage < heapBudget.budget) ? (heapBudget.budget - heapBudget.usage) : 0;
|
||||
}
|
||||
|
||||
const bool canFallbackToDedicated = !IsCustomPool();
|
||||
const bool canFallbackToDedicated = !HasExplicitBlockSize() &&
|
||||
(createInfo.flags & VMA_ALLOCATION_CREATE_NEVER_ALLOCATE_BIT) == 0;
|
||||
const bool canCreateNewBlock =
|
||||
((createInfo.flags & VMA_ALLOCATION_CREATE_NEVER_ALLOCATE_BIT) == 0) &&
|
||||
(m_Blocks.size() < m_MaxBlockCount) &&
|
||||
|
Loading…
Reference in New Issue
Block a user