Lines Matching refs:mpAccess

89 	BitmapReadAccess*	mpAccess;  member in vcl::PNGWriterImpl
127 mpAccess ( NULL ), in PNGWriterImpl()
174 mpAccess = aBmp.AcquireReadAccess(); in PNGWriterImpl()
175 if ( mpAccess ) in PNGWriterImpl()
184 aBmp.ReleaseAccess( mpAccess ); in PNGWriterImpl()
191 mpAccess = aBmp.AcquireReadAccess(); // sal_True RGB with alphachannel in PNGWriterImpl()
192 if( mpAccess ) in PNGWriterImpl()
226 aBmp.ReleaseAccess( mpAccess ); in PNGWriterImpl()
234 mpAccess = aBmp.AcquireReadAccess(); // palette + RGB without alphachannel in PNGWriterImpl()
235 if( mpAccess ) in PNGWriterImpl()
240 if( mpAccess->HasPalette() ) in PNGWriterImpl()
245 aBmp.ReleaseAccess( mpAccess ); in PNGWriterImpl()
310 ImplWriteChunk( sal_uInt32( mnWidth = mpAccess->Width() ) ); in ImplWriteHeader()
311 ImplWriteChunk( sal_uInt32( mnHeight = mpAccess->Height() ) ); in ImplWriteHeader()
323 if ( mpAccess->HasPalette() ) // bit 1 -> color is used in ImplWriteHeader()
347 const sal_uLong nCount = mpAccess->GetPaletteEntryCount(); in ImplWritePalette()
355 const BitmapColor& rColor = mpAccess->GetPaletteColor( i ); in ImplWritePalette()
369 const sal_uLong nTransIndex = mpAccess->GetBestPaletteIndex( BMP_COL_TRANS ); in ImplWriteTransparent()
509 if ( mpAccess->HasPalette() ) // alphachannel is not allowed by pictures including palette entries in ImplGetFilter()
520 *pDest = mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter()
522 *pDest++ |= mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter()
524 *pDest |= mpAccess->GetPixelIndex( nY, nX ) << nShift; in ImplGetFilter()
536 *pDest++ |= mpAccess->GetPixelIndex( nY, nX ); in ImplGetFilter()
538 *pDest = mpAccess->GetPixelIndex( nY, nX ) << 4; in ImplGetFilter()
547 *pDest++ = mpAccess->GetPixelIndex( nY, nX ); in ImplGetFilter()
564 const BitmapColor& rColor = mpAccess->GetPixel( nY, nX ); in ImplGetFilter()
577 const BitmapColor& rColor = mpAccess->GetPixel( nY, nX ); in ImplGetFilter()
593 const BitmapColor& rColor = mpAccess->GetPixel( nY, nX ); in ImplGetFilter()