OpenGL: Implement UploadPool

This commit is contained in:
Lynix
2020-05-11 13:57:11 +02:00
parent eba0571f03
commit 6073d8f592
2 changed files with 46 additions and 11 deletions

View File

@@ -35,10 +35,12 @@ namespace Nz
private:
struct Block
{
//< TODO
UInt64 freeOffset;
std::vector<UInt8> memory;
UInt64 freeOffset = 0;
};
std::vector<Block> m_blocks;
std::vector<Allocation> m_allocations;
UInt64 m_blockSize;
};
}