Lines Matching refs:Format
38 #define DECL_FORMAT_GETPIXEL( Format ) \ argument
39 static BitmapColor GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMask& rMask );
41 #define DECL_FORMAT_SETPIXEL( Format ) \ argument
42 static void SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmapColor, cons…
44 #define DECL_FORMAT( Format ) \ argument
45 DECL_FORMAT_GETPIXEL( Format ) \
46 DECL_FORMAT_SETPIXEL( Format )
48 #define IMPL_FORMAT_GETPIXEL( Format ) \ argument
49 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas…
51 #define IMPL_FORMAT_GETPIXEL_NOMASK( Format ) \ argument
52 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas…
54 #define IMPL_FORMAT_SETPIXEL( Format ) \ argument
55 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap…
57 #define IMPL_FORMAT_SETPIXEL_NOMASK( Format ) \ argument
58 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap…
60 #define CASE_FORMAT( Format ) \ argument
61 case( BMP_FORMAT##Format ): \
63 mFncGetPixel = GetPixelFor##Format;\
64 mFncSetPixel = SetPixelFor##Format;\