Lines Matching refs:pAcc
430 BitmapWriteAccess* pAcc = aTmpBmp.AcquireWriteAccess(); in Draw() local
432 if( pAcc ) in Draw()
437 const long nW = pAcc->Width(); in Draw()
438 const long nH = pAcc->Height(); in Draw()
460 if( pAcc->HasPalette() ) in Draw()
462 for( sal_uInt16 i = 0, nCount = pAcc->GetPaletteEntryCount(); i < nCount; i++ ) in Draw()
464 const BitmapColor& rCol = pAcc->GetPaletteColor( i ); in Draw()
468 pAcc->SetPaletteColor( i, aCol ); in Draw()
471 else if( pAcc->GetScanlineFormat() == BMP_FORMAT_24BIT_TC_BGR ) in Draw()
475 Scanline pScan = pAcc->GetScanline( nY ); in Draw()
491 aCol = pAcc->GetPixel( nY, nX ); in Draw()
495 pAcc->SetPixel( nY, nX, aCol ); in Draw()
503 aTmpBmp.ReleaseAccess( pAcc ); in Draw()