Lines Matching refs:PIXBYTE

27 typedef unsigned char PIXBYTE;  typedef
32 explicit BasePixelPtr( PIXBYTE* p = nullptr ) : mpPixel( p ) {} in BasePixelPtr()
33 void SetRawPtr( PIXBYTE* pRawPtr ) { mpPixel = pRawPtr; } in SetRawPtr()
37 PIXBYTE* mpPixel;
44 PIXBYTE GetRed() const;
45 PIXBYTE GetGreen() const;
46 PIXBYTE GetBlue() const;
47 PIXBYTE GetAlpha() const;
49 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const;
50 void SetAlpha( PIXBYTE a ) const;
60 PIXBYTE GetRed() const { return mpPixel[0]; } in GetRed()
61 PIXBYTE GetGreen() const { return mpPixel[1]; } in GetGreen()
62 PIXBYTE GetBlue() const { return mpPixel[2]; } in GetBlue()
63 static PIXBYTE GetAlpha() { return 0; } in GetAlpha()
64 static void SetAlpha( PIXBYTE ) {} in SetAlpha() argument
66 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
80 PIXBYTE GetRed() const { return mpPixel[2]; } in GetRed()
81 PIXBYTE GetGreen() const { return mpPixel[1]; } in GetGreen()
82 PIXBYTE GetBlue() const { return mpPixel[0]; } in GetBlue()
83 static PIXBYTE GetAlpha() { return 0; } in GetAlpha()
84 static void SetAlpha( PIXBYTE ) {} in SetAlpha() argument
86 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
100 PIXBYTE GetRed() const { return mpPixel[1]; } in GetRed()
101 PIXBYTE GetGreen() const { return mpPixel[2]; } in GetGreen()
102 PIXBYTE GetBlue() const { return mpPixel[3]; } in GetBlue()
103 PIXBYTE GetAlpha() const { return mpPixel[0]; } in GetAlpha()
104 void SetAlpha( PIXBYTE a ) const { mpPixel[0] = a; } in SetAlpha()
106 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
120 PIXBYTE GetRed() const { return mpPixel[3]; } in GetRed()
121 PIXBYTE GetGreen() const { return mpPixel[2]; } in GetGreen()
122 PIXBYTE GetBlue() const { return mpPixel[1]; } in GetBlue()
123 PIXBYTE GetAlpha() const { return mpPixel[0]; } in GetAlpha()
124 void SetAlpha( PIXBYTE a ) const { mpPixel[0] = a; } in SetAlpha()
126 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
140 PIXBYTE GetRed() const { return mpPixel[0]; } in GetRed()
141 PIXBYTE GetGreen() const { return mpPixel[1]; } in GetGreen()
142 PIXBYTE GetBlue() const { return mpPixel[2]; } in GetBlue()
143 PIXBYTE GetAlpha() const { return mpPixel[3]; } in GetAlpha()
144 void SetAlpha( PIXBYTE a ) const{ mpPixel[3] = a; } in SetAlpha()
146 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
160 PIXBYTE GetRed() const { return mpPixel[2]; } in GetRed()
161 PIXBYTE GetGreen() const { return mpPixel[1]; } in GetGreen()
162 PIXBYTE GetBlue() const { return mpPixel[0]; } in GetBlue()
163 PIXBYTE GetAlpha() const { return mpPixel[3]; } in GetAlpha()
164 void SetAlpha( PIXBYTE a ) const{ mpPixel[3] = a; } in SetAlpha()
166 void SetColor( PIXBYTE r, PIXBYTE g, PIXBYTE b ) const in SetColor()
179 PIXBYTE GetAlpha() const { return mpPixel[0]; } in GetAlpha()
180 void SetAlpha( PIXBYTE a ) const { mpPixel[0] = a; } in SetAlpha()
235 rDst.SetColor( sal::static_int_cast<PIXBYTE>(nR), in ImplBlendPixels()
236 sal::static_int_cast<PIXBYTE>(nG), in ImplBlendPixels()
237 sal::static_int_cast<PIXBYTE>(nB) ); in ImplBlendPixels()
263 const PIXBYTE* pRawSrc = rSrcBuffer.mpBits; in ImplCopyImage()
264 PIXBYTE* pRawDst = rDstBuffer.mpBits; in ImplCopyImage()