More tidying up.

This commit is contained in:
David Williams
2011-02-12 21:47:02 +00:00
parent ed355b856f
commit bf9f5aee48
6 changed files with 26 additions and 54 deletions

View File

@ -170,11 +170,10 @@ namespace PolyVox
public:
Block<VoxelType>* getUncompressedBlock(uint16_t uBlockX, uint16_t uBlockY, uint16_t uBlockZ) const;
//Block<VoxelType> m_pBorderBlock;
VoxelType* m_pUncompressedBorderData;
Block<VoxelType>* m_pBlocks;
uint32_t* m_pUncompressedTimestamps;
mutable std::vector< Block<VoxelType> > m_pBlocks;
mutable std::vector<uint32_t> m_pUncompressedTimestamps;
mutable std::vector< UncompressedBlock > m_vecUncompressedBlockCache;
uint16_t m_uMaxUncompressedBlockCacheSize;
uint32_t m_ulastAccessedBlockIndex;