More work on CubicSurfaceExtractor.

This commit is contained in:
David Williams
2010-10-20 21:09:55 +00:00
parent 0ca8a334f2
commit 695c15cecd
2 changed files with 19 additions and 16 deletions

View File

@ -33,8 +33,8 @@ namespace PolyVox
{
struct IndexAndMaterial
{
int32_t iIndex;
uint8_t uMaterial;
int32_t iIndex : 24;
int32_t uMaterial : 8;
};
template <typename VoxelType>