Lines Matching refs:pRAcc

746 	BitmapReadAccess*	pRAcc = pBmp->AcquireReadAccess();  in ImplVectorize()  local
748 if( pRAcc ) in ImplVectorize()
753 const long nWidth = pRAcc->Width(); in ImplVectorize()
754 const long nHeight = pRAcc->Height(); in ImplVectorize()
755 const sal_uInt16 nColorCount = pRAcc->GetPaletteEntryCount(); in ImplVectorize()
766 pColorSet[ n ].maColor = pRAcc->GetPaletteColor( n ); in ImplVectorize()
771 pColorSet[ pRAcc->GetPixel( nY, nX ).GetIndex() ].mbSet = 1; in ImplVectorize()
786 const BitmapColor aBmpCol( pRAcc->GetPaletteColor( pColorSet[ i ].mnIndex ) ); in ImplVectorize()
789 ImplVectMap* pMap = ImplExpand( pRAcc, aFindColor ); in ImplVectorize()
834 pBmp->ReleaseAccess( pRAcc ); in ImplVectorize()
848 BitmapReadAccess* pRAcc; in ImplVectorize() local
859 pRAcc = pBmp->AcquireReadAccess(); in ImplVectorize()
860 pMap = ImplExpand( pRAcc, COL_BLACK ); in ImplVectorize()
861 pBmp->ReleaseAccess( pRAcc ); in ImplVectorize()
974 ImplVectMap* ImplVectorizer::ImplExpand( BitmapReadAccess* pRAcc, const Color& rColor ) in ImplExpand() argument
978 if( pRAcc && pRAcc->Width() && pRAcc->Height() ) in ImplExpand()
980 const long nOldWidth = pRAcc->Width(); in ImplExpand()
981 const long nOldHeight = pRAcc->Height(); in ImplExpand()
984 const BitmapColor aTest( pRAcc->GetBestMatchingColor( rColor ) ); in ImplExpand()
998 if( pRAcc->GetPixel( nY, nX ) == aTest ) in ImplExpand()
1008 while( nX < nOldWidth && pRAcc->GetPixel( nY, nX ) == aTest ) in ImplExpand()
1031 if( pRAcc->GetPixel( nY, nX ) == aTest ) in ImplExpand()
1041 while( nY < nOldHeight && pRAcc->GetPixel( nY, nX ) == aTest ) in ImplExpand()