Home
last modified time | relevance | path

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

/trunk/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 …]
/trunk/main/svx/source/dialog/
H A Ddlgctrl.cxx928 pPixel = new sal_uInt16[ nSquares ]; in SvxPixelCtl()
929 rtl_zeroMemory(pPixel, nSquares * sizeof(sal_uInt16)); in SvxPixelCtl()
939 delete []pPixel; in ~SvxPixelCtl()
948 if( *( pPixel + nPixel) == 0 ) in ChangePixel()
949 *( pPixel + nPixel) = 1; // could be expand for more colors in ChangePixel()
951 *( pPixel + nPixel) = 0; in ChangePixel()
1016 sal_uInt16 nLastPixel = *pPixel ? 0 : 1; in Paint()
1028 if ( *( pPixel + i * nLines + j ) != nLastPixel ) in Paint()
1030 nLastPixel = *( pPixel + i * nLines + j ); in Paint()
1197 *( pPixel + i ) = 0; in SetXBitmap()
[all …]
/trunk/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()
/trunk/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()