reactos/win32ss/gdi/diblib/MaskPaint.c
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

26 lines
407 B
C

#include "DibLib.h"
#define __USES_SOURCE 0
#define __USES_PATTERN 0
#define __USES_DEST 1
#define __USES_MASK 1
#define __FUNCTIONNAME MaskPaint
#define _DibDoRop(pBltData, M, D, S, P) pBltData->apfnDoRop[M](D,0,0)
#include "DibLib_AllDstBPP.h"
VOID
FASTCALL
Dib_MaskPaint(PBLTDATA pBltData)
{
// TODO: XLATEless same-surface variants
gapfnMaskPaint[pBltData->siDst.iFormat](pBltData);
}