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

@@ -8,7 +8,8 @@
namespace Nz
{
inline OpenGLUploadPool::OpenGLUploadPool(UInt64 blockSize) :
m_blockSize(blockSize)
m_blockSize(blockSize),
m_nextAllocationIndex(0)
{
}
}