Lines Matching refs:pContent

1071 			BitmapWriteAccess* pContent = aChangedBitmap.AcquireWriteAccess();  in ModifyBitmapEx()  local
1073 if(pContent) in ModifyBitmapEx()
1077 if(pContent->HasPalette()) in ModifyBitmapEx()
1079 const sal_uInt16 nCount(pContent->GetPaletteEntryCount()); in ModifyBitmapEx()
1083 const BitmapColor& rCol = pContent->GetPaletteColor(a); in ModifyBitmapEx()
1089 pContent->SetPaletteColor(a, BitmapColor(Color(aBDest))); in ModifyBitmapEx()
1092 else if(BMP_FORMAT_24BIT_TC_BGR == pContent->GetScanlineFormat()) in ModifyBitmapEx()
1094 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1096 Scanline pScan = pContent->GetScanline(y); in ModifyBitmapEx()
1098 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1111 else if(BMP_FORMAT_24BIT_TC_RGB == pContent->GetScanlineFormat()) in ModifyBitmapEx()
1113 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1115 Scanline pScan = pContent->GetScanline(y); in ModifyBitmapEx()
1117 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1132 for(sal_uInt32 y(0L); y < (sal_uInt32)pContent->Height(); y++) in ModifyBitmapEx()
1134 for(sal_uInt32 x(0L); x < (sal_uInt32)pContent->Width(); x++) in ModifyBitmapEx()
1136 const BitmapColor aBMCol(pContent->GetColor(y, x)); in ModifyBitmapEx()
1143 pContent->SetPixel(y, x, BitmapColor(Color(aBDest))); in ModifyBitmapEx()
1148 delete pContent; in ModifyBitmapEx()
1248 BitmapWriteAccess* pContent = aContent.AcquireWriteAccess(); in createBlendFrame() local
1251 if(pContent && pAlpha) in createBlendFrame()
1257 pContent->SetPixel(0, 0, aColorTopLeft); in createBlendFrame()
1266 pContent->SetPixel(0, x, aMix); in createBlendFrame()
1274 pContent->SetPixel(0, x, aColorTopRight); in createBlendFrame()
1284 pContent->SetPixel(y, 0, aMixA); in createBlendFrame()
1293 pContent->SetPixel(y, x, aMixB); in createBlendFrame()
1302 pContent->SetPixel(y, 0, aColorBottomLeft); in createBlendFrame()
1311 pContent->SetPixel(y, x, aMix); in createBlendFrame()
1319 pContent->SetPixel(y, x, aColorBottomRight); in createBlendFrame()
1324 aContent.ReleaseAccess(pContent); in createBlendFrame()
1331 if(pContent) in createBlendFrame()
1333 aContent.ReleaseAccess(pContent); in createBlendFrame()