Removed boost dependency.
This commit is contained in:
@@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
#include "Enums.h"
|
||||
|
||||
#include "boost/cstdint.hpp"
|
||||
#include "PolyVoxCStdInt.h"
|
||||
|
||||
namespace PolyVox
|
||||
{
|
||||
@@ -33,8 +33,8 @@ namespace PolyVox
|
||||
//---------- BlockVolume ----------
|
||||
template <typename VoxelType> class BlockVolume;
|
||||
typedef BlockVolume<float> FloatBlockVolume;
|
||||
typedef BlockVolume<boost::uint8_t> UInt8BlockVolume;
|
||||
typedef BlockVolume<boost::uint16_t> UInt16BlockVolume;
|
||||
typedef BlockVolume<std::uint8_t> UInt8BlockVolume;
|
||||
typedef BlockVolume<std::uint16_t> UInt16BlockVolume;
|
||||
//---------------------------------
|
||||
|
||||
class IndexedSurfacePatch;
|
||||
@@ -45,15 +45,15 @@ namespace PolyVox
|
||||
class SurfaceVertex;
|
||||
|
||||
//---------- Vector ----------
|
||||
template <boost::uint32_t Size, typename Type> class Vector;
|
||||
template <std::uint32_t Size, typename Type> class Vector;
|
||||
typedef Vector<3,float> Vector3DFloat;
|
||||
typedef Vector<3,double> Vector3DDouble;
|
||||
typedef Vector<3,boost::int8_t> Vector3DInt8;
|
||||
typedef Vector<3,boost::uint8_t> Vector3DUint8;
|
||||
typedef Vector<3,boost::int16_t> Vector3DInt16;
|
||||
typedef Vector<3,boost::uint16_t> Vector3DUint16;
|
||||
typedef Vector<3,boost::int32_t> Vector3DInt32;
|
||||
typedef Vector<3,boost::uint32_t> Vector3DUint32;
|
||||
typedef Vector<3,std::int8_t> Vector3DInt8;
|
||||
typedef Vector<3,std::uint8_t> Vector3DUint8;
|
||||
typedef Vector<3,std::int16_t> Vector3DInt16;
|
||||
typedef Vector<3,std::uint16_t> Vector3DUint16;
|
||||
typedef Vector<3,std::int32_t> Vector3DInt32;
|
||||
typedef Vector<3,std::uint32_t> Vector3DUint32;
|
||||
//----------------------------
|
||||
|
||||
class VolumeChangeTracker;
|
||||
|
||||
Reference in New Issue
Block a user