Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / win32ss / gdi / diblib / SrcPatBlt.c
diff --git a/reactos/win32ss/gdi/diblib/SrcPatBlt.c b/reactos/win32ss/gdi/diblib/SrcPatBlt.c
deleted file mode 100644 (file)
index 8cb0c40..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-
-#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);
-    }
-}
-
-