summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/octree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/octree.cxx')
-rw-r--r--vcl/source/gdi/octree.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/vcl/source/gdi/octree.cxx b/vcl/source/gdi/octree.cxx
index 4e7222cdb2f5..21c0a4265e90 100644
--- a/vcl/source/gdi/octree.cxx
+++ b/vcl/source/gdi/octree.cxx
@@ -25,16 +25,12 @@
#include "octree.hxx"
-
// - pMask -
-
static const sal_uInt8 pImplMask[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
-
// - NodeCache -
-
ImpNodeCache::ImpNodeCache( const sal_uLong nInitSize ) :
pActNode( NULL )
{
@@ -49,8 +45,6 @@ ImpNodeCache::ImpNodeCache( const sal_uLong nInitSize ) :
}
}
-
-
ImpNodeCache::~ImpNodeCache()
{
while( pActNode )
@@ -62,10 +56,8 @@ ImpNodeCache::~ImpNodeCache()
}
}
-
// - Octree -
-
Octree::Octree( const BitmapReadAccess& rReadAcc, sal_uLong nColors ) :
nMax ( nColors ),
nLeafCount ( 0L ),
@@ -77,16 +69,12 @@ Octree::Octree( const BitmapReadAccess& rReadAcc, sal_uLong nColors ) :
ImplCreateOctree();
}
-
-
Octree::~Octree()
{
ImplDeleteOctree( &pTree );
delete pNodeCache;
}
-
-
void Octree::ImplCreateOctree()
{
if( !!*pAcc )
@@ -131,8 +119,6 @@ void Octree::ImplCreateOctree()
}
}
-
-
void Octree::ImplDeleteOctree( PPNODE ppNode )
{
for ( sal_uLong i = 0UL; i < 8UL; i++ )
@@ -145,8 +131,6 @@ void Octree::ImplDeleteOctree( PPNODE ppNode )
*ppNode = NULL;
}
-
-
void Octree::ImplAdd( PPNODE ppNode )
{
// ggf. neuen Knoten erzeugen
@@ -184,8 +168,6 @@ void Octree::ImplAdd( PPNODE ppNode )
}
}
-
-
void Octree::ImplReduce()
{
sal_uLong i;
@@ -224,8 +206,6 @@ void Octree::ImplReduce()
nLeafCount -= --nChildren;
}
-
-
void Octree::CreatePalette( PNODE pNode )
{
if( pNode->bLeaf )
@@ -241,8 +221,6 @@ void Octree::CreatePalette( PNODE pNode )
}
-
-
void Octree::GetPalIndex( PNODE pNode )
{
if ( pNode->bLeaf )
@@ -259,10 +237,8 @@ void Octree::GetPalIndex( PNODE pNode )
}
}
-
// - InverseColorMap -
-
InverseColorMap::InverseColorMap( const BitmapPalette& rPal ) :
nBits( 8 - OCTREE_BITS )
{
@@ -315,16 +291,12 @@ InverseColorMap::InverseColorMap( const BitmapPalette& rPal ) :
}
}
-
-
InverseColorMap::~InverseColorMap()
{
rtl_freeMemory( pBuffer );
rtl_freeMemory( pMap );
}
-
-
void InverseColorMap::ImplCreateBuffers( const sal_uLong nMax )
{
const sal_uLong nCount = nMax * nMax * nMax;