Improved test for PagedVolume::Chunk performance.

This commit is contained in:
David Williams
2015-03-26 23:45:01 +01:00
parent 1d24b189ca
commit 322bedc009
3 changed files with 84 additions and 30 deletions

View File

@ -61,7 +61,7 @@ private slots:
void testPagedVolumeChunkRandomAccess();
private:
int32_t testPagedVolumeChunkAccess(uint32_t locality);
int32_t testPagedVolumeChunkAccess(uint16_t localityMask);
static const uint16_t m_uChunkSideLength = 32;
@ -73,7 +73,7 @@ private:
PolyVox::RawVolume<int32_t>* m_pRawVolume;
PolyVox::PagedVolume<int32_t>* m_pPagedVolume;
PolyVox::PagedVolume<int32_t>::Chunk* m_pPagedVolumeChunk;
PolyVox::PagedVolume<uint32_t>::Chunk* m_pPagedVolumeChunk;
};
#endif