Renamed Block to BlockData. Introduced new Block class which can be shared.

This commit is contained in:
David Williams
2009-03-26 21:17:37 +00:00
parent a9ab2f2d4d
commit fab64488ee
11 changed files with 95 additions and 112 deletions

View File

@ -49,7 +49,7 @@ namespace PolyVox
m_uVolumeSideLengthInRegions = volumeData->getSideLength() / m_uRegionSideLength;
m_uRegionSideLengthPower = PolyVox::logBase2(m_uRegionSideLength);
volRegionLastModified = new Block<int32>(m_uRegionSideLength);
volRegionLastModified = new BlockData<int32>(m_uRegionSideLength);
}
VolumeChangeTracker::~VolumeChangeTracker()