Lines Matching refs:nY
1185 const sal_uInt32 nY = mnYpos >> mnPreviewShift; in ImplDrawScanline() local
1206 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1222 ImplSetPixel( nY, nX, nCol ); in ImplDrawScanline()
1238 ImplSetAlphaPixel( nY, nX, *pTmp & 0x0f, mpTransTab[ *pTmp & 0x0f ] ); in ImplDrawScanline()
1243 ImplSetAlphaPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f, mpTransTab[ *pTmp >> 4 ] ); in ImplDrawScanline()
1275 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1286 ImplSetPixel( nY, nX, *pTmp++ & 0x0f ); in ImplDrawScanline()
1288 ImplSetPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f ); in ImplDrawScanline()
1298 ImplSetPixel( nY, nX, *pTmp >> 6 ); in ImplDrawScanline()
1302 ImplSetPixel( nY, nX, ( *pTmp >> 4 ) & 0x03 ); in ImplDrawScanline()
1306 ImplSetPixel( nY, nX, ( *pTmp >> 2 ) & 0x03 ); in ImplDrawScanline()
1310 ImplSetPixel( nY, nX, *pTmp++ & 0x03 ); in ImplDrawScanline()
1326 ImplSetAlphaPixel( nY, nX, pTmp[ 0 ], pTmp[ 1 ] ); in ImplDrawScanline()
1331 ImplSetAlphaPixel( nY, nX, pTmp[ 0 ], pTmp[ 2 ] ); in ImplDrawScanline()
1339 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()
1344 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()
1354 mpAcc->CopyScanline( nY, pTmp, BMP_FORMAT_8BIT_PAL, nLineBytes ); in ImplDrawScanline()
1360 ImplSetPixel( nY, nX, *pTmp++ ); in ImplDrawScanline()
1366 ImplSetPixel( nY, nX, *pTmp ); in ImplDrawScanline()
1446 … mpAcc->CopyScanline(nY, mpScanline, BMP_FORMAT_24BIT_TC_BGR, maOrigSize.Width() * 3); in ImplDrawScanline()
1447 … mpMaskAcc->CopyScanline(nY, mpScanlineAlpha, BMP_FORMAT_8BIT_PAL, maOrigSize.Width()); in ImplDrawScanline()
1456 nY, in ImplDrawScanline()
1467 nY, in ImplDrawScanline()
1484 nY, in ImplDrawScanline()
1509 ImplSetTranspPixel( nY, nX, BitmapColor( mpColorTable[ nRed ], in ImplDrawScanline()
1526 ImplSetTranspPixel( nY, nX, BitmapColor( mpColorTable[ nRed ], in ImplDrawScanline()
1578 … mpAcc->CopyScanline(nY, mpScanline, BMP_FORMAT_24BIT_TC_BGR, maOrigSize.Width() * 3); in ImplDrawScanline()
1587 nY, in ImplDrawScanline()
1597 nY, in ImplDrawScanline()
1614 nY, in ImplDrawScanline()
1628 void PNGReaderImpl::ImplSetPixel( sal_uInt32 nY, sal_uInt32 nX, const BitmapColor& rBitmapColor ) in ImplSetPixel() argument
1635 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetPixel()
1640 void PNGReaderImpl::ImplSetPixel( sal_uInt32 nY, sal_uInt32 nX, sal_uInt8 nPalIndex ) in ImplSetPixel() argument
1647 mpAcc->SetPixelIndex( nY, nX, nPalIndex ); in ImplSetPixel()
1652 void PNGReaderImpl::ImplSetTranspPixel( sal_uInt32 nY, sal_uInt32 nX, const BitmapColor& rBitmapCol… in ImplSetTranspPixel() argument
1659 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetTranspPixel()
1662 mpMaskAcc->SetPixel( nY, nX, mcTranspColor ); in ImplSetTranspPixel()
1664 mpMaskAcc->SetPixel( nY, nX, mcOpaqueColor ); in ImplSetTranspPixel()
1669 void PNGReaderImpl::ImplSetAlphaPixel( sal_uInt32 nY, sal_uInt32 nX, in ImplSetAlphaPixel() argument
1677 mpAcc->SetPixelIndex( nY, nX, nPalIndex ); in ImplSetAlphaPixel()
1678 mpMaskAcc->SetPixelIndex( nY, nX, ~nAlpha ); in ImplSetAlphaPixel()
1683 void PNGReaderImpl::ImplSetAlphaPixel( sal_uInt32 nY, sal_uInt32 nX, in ImplSetAlphaPixel() argument
1691 mpAcc->SetPixel( nY, nX, rBitmapColor ); in ImplSetAlphaPixel()
1692 mpMaskAcc->SetPixelIndex( nY, nX, ~nAlpha ); in ImplSetAlphaPixel()