d64774845dafebbd969a5e48d870d73941efea4e
[reactos.git] / reactos / subsystems / win32 / win32k / diblib / MaskSrcPatBlt.c
1
2 #include "DibLib.h"
3
4 #define __USES_SOURCE 1
5 #define __USES_PATTERN 1
6 #define __USES_DEST 1
7 #define __USES_MASK 1
8
9 #define __FUNCTIONNAME MaskSrcPatBlt
10
11 #define _DibDoRop(pBltData, M, D, S, P) pBltData->apfnDoRop[M](D,S,P)
12
13 #include "diblib_allsrcbpp.h"
14
15 #undef __FUNCTIONNAME
16 #define __FUNCTIONNAME MaskSrcPatBlt_Solid
17 #define __USES_SOLID_BRUSH 1
18 #include "diblib_allsrcbpp.h"
19
20 VOID
21 FASTCALL
22 Dib_MaskSrcPatBlt(PBLTDATA pBltData)
23 {
24 gapfnMaskSrcPatBlt[pBltData->siDst.iFormat][pBltData->siSrc.iFormat](pBltData);
25 }
26
27