Removing tests which depend on wrap modes, in preparation for removing the wrap modes themselves.

This commit is contained in:
David Williams
2015-02-26 17:07:00 +01:00
parent 7ac652e92b
commit 917d3b8c95
3 changed files with 37 additions and 159 deletions

View File

@ -40,7 +40,7 @@ bool testVoxelValidator(const VolumeType* volData, const Vector3DInt32& v3dPos)
return false;
}
typename VolumeType::VoxelType voxel = volData->getVoxel(v3dPos, WrapModes::Validate); // FIXME use templatised version of getVoxel(), but watch out for Linux compile issues.
typename VolumeType::VoxelType voxel = volData->getVoxel(v3dPos);
if(voxel != 0)
{
return false;