mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Fix VmaReplay after removing vmaResizeAllocation function
This commit is contained in:
parent
6859ef214f
commit
e74dc79903
@ -3683,7 +3683,8 @@ void Player::ExecuteResizeAllocation(size_t lineNumber, const CsvSplit& csvSplit
|
||||
const auto it = m_Allocations.find(origPtr);
|
||||
if(it != m_Allocations.end())
|
||||
{
|
||||
vmaResizeAllocation(m_Allocator, it->second.allocation, newSize);
|
||||
// Do nothing - the function was deprecated and has been removed.
|
||||
//vmaResizeAllocation(m_Allocator, it->second.allocation, newSize);
|
||||
UpdateMemStats();
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user