mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
38 lines
797 B
C
38 lines
797 B
C
|
|
#include "DibLib.h"
|
|
|
|
#define __USES_SOURCE 1
|
|
#define __USES_PATTERN 1
|
|
#define __USES_DEST 0
|
|
#define __USES_MASK 0
|
|
|
|
#define __FUNCTIONNAME SrcPatBlt
|
|
|
|
#define _DibDoRop(pBltData, M, D, S, P) pBltData->apfnDoRop[0](0,S,P)
|
|
|
|
#include "DibLib_AllSrcBPP.h"
|
|
|
|
#undef __FUNCTIONNAME
|
|
#define __FUNCTIONNAME SrcPatBlt_Solid
|
|
#define __USES_SOLID_BRUSH 1
|
|
#include "DibLib_AllSrcBPP.h"
|
|
|
|
VOID
|
|
FASTCALL
|
|
Dib_SrcPatBlt(PBLTDATA pBltData)
|
|
{
|
|
/* Check for solid brush */
|
|
if (pBltData->ulSolidColor != 0xFFFFFFFF)
|
|
{
|
|
/* Use the solid version of PATCOPY! */
|
|
gapfnSrcPatBlt_Solid[pBltData->siDst.iFormat][pBltData->siSrc.iFormat](pBltData);
|
|
}
|
|
else
|
|
{
|
|
/* Use the pattern version */
|
|
gapfnSrcPatBlt[pBltData->siDst.iFormat][pBltData->siSrc.iFormat](pBltData);
|
|
}
|
|
}
|
|
|
|
|