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