Home
last modified time | relevance | path

Searched refs:pPixel (Results 1 – 4 of 4) sorted by relevance

/AOO41X/main/vcl/inc/vcl/
H A Dsalbtype.hxx244 inline void GetColorFor8Bit( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
245 inline void SetColorFor8Bit( const BitmapColor& rColor, HPBYTE pPixel ) const;
247 inline void GetColorFor16BitMSB( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
248 inline void SetColorFor16BitMSB( const BitmapColor& rColor, HPBYTE pPixel ) const;
249 inline void GetColorFor16BitLSB( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
250 inline void SetColorFor16BitLSB( const BitmapColor& rColor, HPBYTE pPixel ) const;
252 inline void GetColorFor24Bit( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
253 inline void SetColorFor24Bit( const BitmapColor& rColor, HPBYTE pPixel ) const;
255 inline void GetColorFor32Bit( BitmapColor& rColor, ConstHPBYTE pPixel ) const;
256 … GetColorAndAlphaFor32Bit( BitmapColor& rColor, sal_uInt8& rAlpha, ConstHPBYTE pPixel ) const;
[all …]
/AOO41X/main/svx/source/dialog/
H A Ddlgctrl.cxx956 pPixel = new sal_uInt16[ nSquares ]; in SvxPixelCtl()
957 rtl_zeroMemory(pPixel, nSquares * sizeof(sal_uInt16)); in SvxPixelCtl()
969 delete []pPixel; in ~SvxPixelCtl()
980 if( *( pPixel + nPixel) == 0 ) in ChangePixel()
981 *( pPixel + nPixel) = 1; // koennte erweitert werden auf mehrere Farben in ChangePixel()
983 *( pPixel + nPixel) = 0; in ChangePixel()
1052 sal_uInt16 nLastPixel = *pPixel ? 0 : 1; in Paint()
1064 if ( *( pPixel + i * nLines + j ) != nLastPixel ) in Paint()
1066 nLastPixel = *( pPixel + i * nLines + j ); in Paint()
1235 *( pPixel + i ) = 0; in SetXBitmap()
[all …]
/AOO41X/main/svx/inc/svx/
H A Ddlgctrl.hxx193 void SetBmpArray( const sal_uInt16* pPixel ) { pBmpArray = pPixel; } in SetBmpArray() argument
215 sal_uInt16* pPixel; member in SvxPixelCtl
241 sal_uInt16* GetBitmapPixelPtr() { return pPixel; } in GetBitmapPixelPtr()
/AOO41X/main/vcl/source/gdi/
H A Dsalmisc.cxx211 sal_uInt8* pPixel; in ImplTCToTC() local
219 aCol.SetBlue( *( pPixel = ( pSrcScan + pMapX[ nX ] * 3 ) )++ ); in ImplTCToTC()
220 aCol.SetGreen( *pPixel++ ); in ImplTCToTC()
221 aCol.SetRed( *pPixel ); in ImplTCToTC()