Lines Matching refs:mrPalette
370 const BitmapPalette& mrPalette; member in ImplPixelFormat8
374 : mrPalette( rPalette ) in ImplPixelFormat8()
383 return mrPalette[ *pData++ ].operator Color().GetColor(); in ReadPixel()
388 *pData++ = static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ); in WritePixel()
395 const BitmapPalette& mrPalette; member in ImplPixelFormat4
401 : mrPalette( rPalette ) in ImplPixelFormat4()
418 const BitmapColor& rColor = mrPalette[( pData[mnX >> 1] >> mnShift) & 0x0f]; in ReadPixel()
427 pData[mnX>>1] |= (static_cast< sal_uInt8 >( mrPalette.GetBestIndex( aColor ) ) & 0x0f); in WritePixel()
436 const BitmapPalette& mrPalette; member in ImplPixelFormat1
441 : mrPalette( rPalette ) in ImplPixelFormat1()
455 const BitmapColor& rColor = mrPalette[ (pData[mnX >> 3 ] >> ( 7 - ( mnX & 7 ) )) & 1]; in ReadPixel()
462 if( mrPalette.GetBestIndex( aColor ) & 1 ) in WritePixel()