Merge branch 'master' of git://gitorious.org/polyvox/polyvox
This commit is contained in:
commit
ee165bff78
@ -103,6 +103,7 @@ namespace PolyVox
|
||||
LargeVolume<VoxelType>::~LargeVolume()
|
||||
{
|
||||
flushAll();
|
||||
delete[] m_pUncompressedBorderData;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -49,6 +49,7 @@ namespace PolyVox
|
||||
{
|
||||
public:
|
||||
Block(uint16_t uSideLength = 0);
|
||||
~Block();
|
||||
|
||||
uint16_t getSideLength(void) const;
|
||||
VoxelType getVoxelAt(uint16_t uXPos, uint16_t uYPos, uint16_t uZPos) const;
|
||||
|
@ -71,7 +71,7 @@ namespace PolyVox
|
||||
SimpleVolume<VoxelType>::~SimpleVolume()
|
||||
{
|
||||
delete[] m_pBlocks;
|
||||
m_pBlocks = 0;
|
||||
delete[] m_pUncompressedBorderData;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -35,6 +35,12 @@ namespace PolyVox
|
||||
}
|
||||
}
|
||||
|
||||
template <typename VoxelType>
|
||||
SimpleVolume<VoxelType>::Block::~Block()
|
||||
{
|
||||
delete[] m_tUncompressedData;
|
||||
}
|
||||
|
||||
template <typename VoxelType>
|
||||
uint16_t SimpleVolume<VoxelType>::Block::getSideLength(void) const
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user