Added a second PagedVolume to the tests with much higher allowed memory usage. This makes more sense when testing random access, as low permitted memory usage causes disk IO to become the bottleneck.

This commit is contained in:
David Williams
2015-04-10 16:56:19 +02:00
parent b90f0d4e15
commit c562341db0
2 changed files with 8 additions and 5 deletions

View File

@ -72,6 +72,7 @@ private:
PolyVox::Region m_regInternal;
PolyVox::Region m_regExternal;
PolyVox::FilePager<int32_t>* m_pFilePager;
PolyVox::FilePager<int32_t>* m_pFilePagerHighMem;
PolyVox::RawVolume<int32_t>* m_pRawVolume;
PolyVox::PagedVolume<int32_t>* m_pPagedVolume;