Renderer: Fix UploadPool allocations references

This commit is contained in:
Jérôme Leclercq
2021-05-14 01:56:32 +02:00
parent aeac3282e4
commit bbfe06c443
6 changed files with 48 additions and 9 deletions

View File

@@ -9,7 +9,8 @@ namespace Nz
{
inline VulkanUploadPool::VulkanUploadPool(Vk::Device& device, UInt64 blockSize) :
m_blockSize(blockSize),
m_device(device)
m_device(device),
m_nextAllocationIndex(0)
{
}
}