Synchronize with trunk's revision r57629.
[reactos.git] / win32ss / gdi / diblib / MaskPatPaint.c
1
2 #include "DibLib.h"
3
4 #define __USES_SOURCE 0
5 #define __USES_PATTERN 1
6 #define __USES_DEST 1
7 #define __USES_MASK 1
8
9 #define __FUNCTIONNAME MaskPatPaint
10
11 #define _DibDoRop(pBltData, M, D, S, P) pBltData->apfnDoRop[M](D,0,P)
12
13 #include "DibLib_AllDstBPP.h"
14
15 #undef __FUNCTIONNAME
16 #define __FUNCTIONNAME MaskPatPaint_Solid
17 #define __USES_SOLID_BRUSH 1
18 #include "DibLib_AllDstBPP.h"
19
20 VOID
21 FASTCALL
22 Dib_MaskPatPaint(PBLTDATA pBltData)
23 {
24 /* Check for solid brush */
25 if (pBltData->ulSolidColor != 0xFFFFFFFF)
26 {
27 /* Use the solid version of PATCOPY! */
28 gapfnMaskPatPaint_Solid[pBltData->siDst.iFormat](pBltData);
29 }
30 else
31 {
32 /* Use the pattern version */
33 gapfnMaskPatPaint[pBltData->siDst.iFormat](pBltData);
34 }
35 }
36
37
38