Add support for OpenGL 4.6

Compile fix in rawvolumewriter
This commit is contained in:
Alexander Bock
2017-10-11 09:05:10 -04:00
parent aa969795cc
commit 06550ea42f
3 changed files with 4 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ size_t RawVolumeWriter<VoxelType>::coordsToIndex(const glm::uvec3& cartesian) co
template <typename VoxelType>
glm::ivec3 RawVolumeWriter<VoxelType>::indexToCoords(size_t linear) const {
return indexToCoords(linear, dimensions());
return volume::indexToCoords(linear, dimensions());
}
template <typename VoxelType>