Lines Matching refs:mpTransTab
111 sal_uInt8* mpTransTab; // for transparency in images with palette colortype member in vcl::PNGReaderImpl
206 mpTransTab ( NULL ), in PNGReaderImpl()
263 delete[] mpTransTab; in ~PNGReaderImpl()
788 if ( mpTransTab == NULL ) in ImplReadTransparent()
796 mpTransTab = new sal_uInt8[ 256 ]; in ImplReadTransparent()
797 rtl_fillMemory( mpTransTab, 256, 0xff ); in ImplReadTransparent()
801 mpTransTab[ nIndex ] = 0; in ImplReadTransparent()
823 mpTransTab = new sal_uInt8 [ 256 ]; in ImplReadTransparent()
824 rtl_fillMemory( mpTransTab, 256, 0xff ); in ImplReadTransparent()
825 rtl_copyMemory( mpTransTab, &(*maDataIter), mnChunkLen ); in ImplReadTransparent()
830 bNeedAlpha |= (mpTransTab[i]!=0x00) && (mpTransTab[i]!=0xFF); in ImplReadTransparent()
1214 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1246 … ImplSetAlphaPixel( nY, nX, *pTmp & 0x0f, mpTransTab[ *pTmp & 0x0f ] ); in ImplDrawScanline()
1251 … ImplSetAlphaPixel( nY, nX, ( *pTmp >> 4 ) & 0x0f, mpTransTab[ *pTmp >> 4 ] ); in ImplDrawScanline()
1283 ImplSetAlphaPixel( nY, nX, nCol, mpTransTab[ nCol ] ); in ImplDrawScanline()
1347 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()
1352 ImplSetAlphaPixel( nY, nX, *pTmp, mpTransTab[ *pTmp ] ); in ImplDrawScanline()