mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 04:10:06 +00:00
commit
228a1b68ae
@ -5879,9 +5879,14 @@ private:
|
||||
void PostMinorCounter()
|
||||
{
|
||||
if(m_MinorCounter < m_MajorCounter)
|
||||
{
|
||||
++m_MinorCounter;
|
||||
}
|
||||
else if(m_MajorCounter > 0)
|
||||
--m_MajorCounter, --m_MinorCounter;
|
||||
{
|
||||
--m_MajorCounter;
|
||||
--m_MinorCounter;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@ -13841,6 +13846,9 @@ bool VmaDefragmentationContext_T::ComputeDefragmentation_Extensive(VmaBlockVecto
|
||||
}
|
||||
break;
|
||||
}
|
||||
case StateExtensive::Operation::Cleanup:
|
||||
// Cleanup is handled below so that other operations may reuse the cleanup code. This case is here to prevent the unhandled enum value warning (C4062).
|
||||
break;
|
||||
}
|
||||
|
||||
if (vectorState.operation == StateExtensive::Operation::Cleanup)
|
||||
|
Loading…
Reference in New Issue
Block a user