mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2024-11-26 16:34:35 +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);
|
const auto it = m_Allocations.find(origPtr);
|
||||||
if(it != m_Allocations.end())
|
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();
|
UpdateMemStats();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user