Use correct dest rect when preventing copy outside source surf
[reactos.git] / reactos / subsys / win32k / eng / bitblt.c
index 0329b71..dcfb6da 100644 (file)
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: bitblt.c,v 1.25 2003/08/04 19:57:05 royce Exp $
+/* $Id$
  *
  * COPYRIGHT:        See COPYING in the top level directory
  * PROJECT:          ReactOS kernel
  * REVISION HISTORY:
  *        2/10/1999: Created
  */
+#include <w32k.h>
 
-#include <ddk/winddi.h>
-#include <ddk/ntddk.h>
-#include <ddk/ntddmou.h>
-#include <ntos/minmax.h>
-#include "brush.h"
-#include "clip.h"
-#include "objects.h"
-#include "../dib/dib.h"
-#include "misc.h"
-#include <include/mouse.h>
-#include <include/object.h>
-#include <include/dib.h>
-#include <include/surface.h>
-#include <include/copybits.h>
-#include <include/inteng.h>
-
-#define NDEBUG
-#include <win32k/debug1.h>
-
-typedef BOOLEAN STDCALL (*PBLTRECTFUNC)(PSURFOBJ OutputObj,
-                                        PSURFGDI OutputGDI,
-                                        PSURFOBJ InputObj,
-                                        PSURFGDI InputGDI,
-                                        PSURFOBJ Mask,
-                                        PXLATEOBJ ColorTranslation,
-                                        PRECTL OutputRect,
-                                        PPOINTL InputPoint,
-                                        PPOINTL MaskOrigin,
-                                        PBRUSHOBJ Brush,
-                                        PPOINTL BrushOrigin,
+typedef BOOLEAN STDCALL (*PBLTRECTFUNC)(SURFOBJ* OutputObj,
+                                        SURFOBJ* InputObj,
+                                        SURFOBJ* Mask,
+                                        XLATEOBJ* ColorTranslation,
+                                        RECTL* OutputRect,
+                                        POINTL* InputPoint,
+                                        POINTL* MaskOrigin,
+                                        BRUSHOBJ* Brush,
+                                        POINTL* BrushOrigin,
                                         ROP4 Rop4);
+typedef BOOLEAN STDCALL (*PSTRETCHRECTFUNC)(SURFOBJ* OutputObj,
+                                            SURFOBJ* InputObj,
+                                            SURFOBJ* Mask,
+                                            CLIPOBJ* ClipRegion,
+                                            XLATEOBJ* ColorTranslation,
+                                            RECTL* OutputRect,
+                                            RECTL* InputRect,
+                                            POINTL* MaskOrigin,
+                                            POINTL* BrushOrigin,
+                                            ULONG Mode);
 
-BOOL STDCALL EngIntersectRect(PRECTL prcDst, PRECTL prcSrc1, PRECTL prcSrc2)
+BOOL STDCALL EngIntersectRect(RECTL* prcDst, RECTL* prcSrc1, RECTL* prcSrc2)
 {
   static const RECTL rclEmpty = { 0, 0, 0, 0 };
 
@@ -83,99 +73,173 @@ BOOL STDCALL EngIntersectRect(PRECTL prcDst, PRECTL prcSrc1, PRECTL prcSrc2)
 }
 
 static BOOLEAN STDCALL
-BltMask(PSURFOBJ Dest,
-        PSURFGDI DestGDI,
-        PSURFOBJ Source,
-        PSURFGDI SourceGDI,
-        PSURFOBJ Mask, 
-        PXLATEOBJ ColorTranslation,
-       PRECTL DestRect,
-        PPOINTL SourcePoint,
-        PPOINTL MaskPoint,
-        PBRUSHOBJ Brush,
-       PPOINTL BrushPoint,
-        ROP4 Rop4)
+BltMask(SURFOBJ* Dest,
+       SURFOBJ* Source,
+       SURFOBJ* Mask,
+       XLATEOBJ* ColorTranslation,
+       RECTL* DestRect,
+       POINTL* SourcePoint,
+       POINTL* MaskPoint,
+       BRUSHOBJ* Brush,
+       POINTL* BrushPoint,
+       ROP4 Rop4)
 {
-  LONG i, j, dx, dy, c8;
-  BYTE *tMask, *lMask;
-  static BYTE maskbit[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
+   LONG i, j, dx, dy, c8;
+   BYTE *tMask, *lMask;
+   static BYTE maskbit[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
+   /* Pattern brushes */
+   PGDIBRUSHINST GdiBrush = NULL;
+   SURFOBJ *PatternObj = NULL;
+   PBITMAPOBJ PatternBitmap;
+   ULONG PatternWidth = 0, PatternHeight = 0, PatternY = 0;
 
-  dx = DestRect->right  - DestRect->left;
-  dy = DestRect->bottom - DestRect->top;
+   if (Mask == NULL)
+   {
+      return FALSE;
+   }
 
-  if (Mask != NULL)
-    {
-      tMask = Mask->pvBits;
-      for (j = 0; j < dy; j++)
-       {
-         lMask = tMask;
-         c8 = 0;
-         for (i = 0; i < dx; i++)
-           {
-             if (0 != (*lMask & maskbit[c8]))
-               {
-                 DestGDI->DIB_PutPixel(Dest, DestRect->left + i, DestRect->top + j, Brush->iSolidColor);
-               }
-             c8++;
-             if (8 == c8)
-               {
-                 lMask++;
-                 c8=0;
-               }
-           }
-         tMask += Mask->lDelta;
-       }
-      return TRUE;
-    }
-  else
-    {
-    return FALSE;
-    }
+   dx = DestRect->right  - DestRect->left;
+   dy = DestRect->bottom - DestRect->top;
+
+   if (Brush->iSolidColor == 0xFFFFFFFF)
+   {
+      GdiBrush = CONTAINING_RECORD(
+         Brush,
+         GDIBRUSHINST,
+         BrushObject);
+
+      PatternBitmap = BITMAPOBJ_LockBitmap(GdiBrush->GdiBrushObject->hbmPattern);
+      if(PatternBitmap != NULL)
+      {
+        PatternObj = &PatternBitmap->SurfObj;
+        PatternWidth = PatternObj->sizlBitmap.cx;
+        PatternHeight = PatternObj->sizlBitmap.cy;
+      }
+   }
+   else
+     PatternBitmap = NULL;
+
+   tMask = Mask->pvScan0 + SourcePoint->y * Mask->lDelta + (SourcePoint->x >> 3);
+   for (j = 0; j < dy; j++)
+   {
+      lMask = tMask;
+      c8 = SourcePoint->x & 0x07;
+
+      if(PatternBitmap != NULL)
+         PatternY = (DestRect->top + j) % PatternHeight;
+
+      for (i = 0; i < dx; i++)
+      {
+         if (0 != (*lMask & maskbit[c8]))
+         {
+            if (PatternBitmap == NULL)
+            {
+               DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel(
+                  Dest, DestRect->left + i, DestRect->top + j, Brush->iSolidColor);
+            }
+            else
+            {
+               DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel(
+                  Dest, DestRect->left + i, DestRect->top + j,
+                  DIB_GetSource(PatternObj, (DestRect->left + i) % PatternWidth, PatternY, GdiBrush->XlateObject));
+            }
+         }
+         c8++;
+         if (8 == c8)
+         {
+            lMask++;
+            c8 = 0;
+         }
+      }
+      tMask += Mask->lDelta;
+   }
+
+   if (PatternBitmap != NULL)
+      BITMAPOBJ_UnlockBitmap(PatternBitmap);
+
+   return TRUE;
 }
 
 static BOOLEAN STDCALL
-BltPatCopy(PSURFOBJ Dest,
-           PSURFGDI DestGDI,
-           PSURFOBJ Source,
-           PSURFGDI SourceGDI,
-           PSURFOBJ Mask, 
-           PXLATEOBJ ColorTranslation,
-          PRECTL DestRect,
-           PPOINTL SourcePoint,
-           PPOINTL MaskPoint,
-           PBRUSHOBJ Brush,
-          PPOINTL BrushPoint,
-           ROP4 Rop4)
+BltPatCopy(SURFOBJ* Dest,
+          SURFOBJ* Source,
+          SURFOBJ* Mask,
+          XLATEOBJ* ColorTranslation,
+          RECTL* DestRect,
+          POINTL* SourcePoint,
+          POINTL* MaskPoint,
+          BRUSHOBJ* Brush,
+          POINTL* BrushPoint,
+          ROP4 Rop4)
 {
   // These functions are assigned if we're working with a DIB
   // The assigned functions depend on the bitsPerPixel of the DIB
-  LONG y;
-  ULONG LineWidth;
 
-  LineWidth  = DestRect->right - DestRect->left;
-  for (y = DestRect->top; y < DestRect->bottom; y++)
-  {
-    DestGDI->DIB_HLine(Dest, DestRect->left, DestRect->right, y,  Brush->iSolidColor);
-  }
+  DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_ColorFill(Dest, DestRect, Brush->iSolidColor);
 
   return TRUE;
 }
 
 static BOOLEAN STDCALL
-CallDibBitBlt(PSURFOBJ OutputObj,
-              PSURFGDI OutputGDI,
-              PSURFOBJ InputObj,
-              PSURFGDI InputGDI,
-              PSURFOBJ Mask,
-              PXLATEOBJ ColorTranslation,
-              PRECTL OutputRect,
-              PPOINTL InputPoint,
-              PPOINTL MaskOrigin,
-              PBRUSHOBJ Brush,
-              PPOINTL BrushOrigin,
+CallDibBitBlt(SURFOBJ* OutputObj,
+              SURFOBJ* InputObj,
+              SURFOBJ* Mask,
+              XLATEOBJ* ColorTranslation,
+              RECTL* OutputRect,
+              POINTL* InputPoint,
+              POINTL* MaskOrigin,
+              BRUSHOBJ* Brush,
+              POINTL* BrushOrigin,
               ROP4 Rop4)
 {
-  return OutputGDI->DIB_BitBlt(OutputObj, InputObj, OutputGDI, InputGDI, OutputRect, InputPoint, Brush, BrushOrigin, ColorTranslation, Rop4);
+   BLTINFO BltInfo;
+   PGDIBRUSHINST GdiBrush = NULL;
+   BITMAPOBJ *bmPattern;
+   BOOLEAN Result;
+
+   BltInfo.DestSurface = OutputObj;
+   BltInfo.SourceSurface = InputObj;
+   BltInfo.PatternSurface = NULL;
+   BltInfo.XlateSourceToDest = ColorTranslation;
+   BltInfo.DestRect = *OutputRect;
+   BltInfo.SourcePoint = *InputPoint;
+
+   if (ROP3_TO_ROP4(SRCCOPY) == Rop4)
+      return DibFunctionsForBitmapFormat[OutputObj->iBitmapFormat].DIB_BitBltSrcCopy(&BltInfo);
+
+   BltInfo.XlatePatternToDest = NULL;
+   BltInfo.Brush = Brush;
+   BltInfo.BrushOrigin = *BrushOrigin;
+   BltInfo.Rop4 = Rop4;
+
+   /* Pattern brush */
+   if (ROP4_USES_PATTERN(Rop4) && Brush->iSolidColor == 0xFFFFFFFF)
+   {
+      GdiBrush = CONTAINING_RECORD(Brush, GDIBRUSHINST, BrushObject);
+      if((bmPattern = BITMAPOBJ_LockBitmap(GdiBrush->GdiBrushObject->hbmPattern)))
+      {
+        BltInfo.PatternSurface = &bmPattern->SurfObj;
+      }
+      else
+      {
+        /* FIXME - What to do here? */
+      }
+      BltInfo.XlatePatternToDest = GdiBrush->XlateObject;
+   }
+   else
+   {
+     bmPattern = NULL;
+   }
+
+   Result = DibFunctionsForBitmapFormat[OutputObj->iBitmapFormat].DIB_BitBlt(&BltInfo);
+
+   /* Pattern brush */
+   if (bmPattern != NULL)
+   {
+      BITMAPOBJ_UnlockBitmap(bmPattern);
+   }
+
+   return Result;
 }
 
 INT abs(INT nm);
@@ -200,21 +264,33 @@ EngBitBlt(SURFOBJ *DestObj,
   RECTL              CombinedRect;
   RECT_ENUM          RectEnum;
   BOOL               EnumMore;
-  PSURFGDI           OutputGDI, InputGDI;
   POINTL             InputPoint;
   RECTL              InputRect;
   RECTL              OutputRect;
   POINTL             Translate;
   INTENG_ENTER_LEAVE EnterLeaveSource;
   INTENG_ENTER_LEAVE EnterLeaveDest;
-  PSURFOBJ           InputObj;
-  PSURFOBJ           OutputObj;
+  SURFOBJ*           InputObj;
+  SURFOBJ*           OutputObj;
   PBLTRECTFUNC       BltRectFunc;
-  BOOLEAN            Ret;
+  BOOLEAN            Ret = TRUE;
   RECTL              ClipRect;
   unsigned           i;
+  POINTL             Pt;
+  ULONG              Direction;
+  BOOL               UsesSource;
+  BOOL               UsesPattern;
+  POINTL             AdjustedBrushOrigin;
 
-  if (NULL != SourcePoint)
+  UsesSource = ROP4_USES_SOURCE(Rop4);
+  UsesPattern = ROP4_USES_PATTERN(Rop4);
+  if (R4_NOOP == Rop4)
+    {
+    /* Copy destination onto itself: nop */
+    return TRUE;
+    }
+
+  if (UsesSource && NULL != SourcePoint)
     {
     InputRect.left = SourcePoint->x;
     InputRect.right = SourcePoint->x + (DestRect->right - DestRect->left);
@@ -245,15 +321,6 @@ EngBitBlt(SURFOBJ *DestObj,
     InputPoint.y = 0;
     }
 
-  if (NULL != InputObj)
-    {
-    InputGDI = (PSURFGDI) AccessInternalObjectFromUserObject(InputObj);
-    }
-  else
-    {
-      InputGDI = NULL;
-    }
-
   OutputRect = *DestRect;
   if (NULL != ClipRegion)
     {
@@ -295,15 +362,18 @@ EngBitBlt(SURFOBJ *DestObj,
     return FALSE;
     }
 
-  OutputRect.left = DestRect->left + Translate.x;
-  OutputRect.right = DestRect->right + Translate.x;
-  OutputRect.top = DestRect->top + Translate.y;
-  OutputRect.bottom = DestRect->bottom + Translate.y;
+  OutputRect.left += Translate.x;
+  OutputRect.right += Translate.x;
+  OutputRect.top += Translate.y;
+  OutputRect.bottom += Translate.y;
 
-  if (NULL != OutputObj)
-    {
-    OutputGDI = (PSURFGDI)AccessInternalObjectFromUserObject(OutputObj);
-    }
+  if(BrushOrigin)
+  {
+    AdjustedBrushOrigin.x = BrushOrigin->x + Translate.x;
+    AdjustedBrushOrigin.y = BrushOrigin->y + Translate.y;
+  }
+  else
+    AdjustedBrushOrigin = Translate;
 
   // Determine clipping type
   if (ClipRegion == (CLIPOBJ *) NULL)
@@ -313,13 +383,16 @@ EngBitBlt(SURFOBJ *DestObj,
     clippingType = ClipRegion->iDComplexity;
   }
 
-  if (0xaacc == Rop4)
+  if (R4_MASK == Rop4)
     {
       BltRectFunc = BltMask;
     }
-  else if (PATCOPY == Rop4)
+  else if (ROP3_TO_ROP4(PATCOPY) == Rop4)
     {
-      BltRectFunc = BltPatCopy;
+      if (Brush->iSolidColor == 0xFFFFFFFF)
+        BltRectFunc = CallDibBitBlt;
+      else
+        BltRectFunc = BltPatCopy;
     }
   else
     {
@@ -330,8 +403,8 @@ EngBitBlt(SURFOBJ *DestObj,
   switch(clippingType)
   {
     case DC_TRIVIAL:
-      Ret = (*BltRectFunc)(OutputObj, OutputGDI, InputObj, InputGDI, Mask, ColorTranslation,
-                           &OutputRect, &InputPoint, MaskOrigin, Brush, BrushOrigin, Rop4);
+      Ret = (*BltRectFunc)(OutputObj, InputObj, Mask, ColorTranslation,
+                           &OutputRect, &InputPoint, MaskOrigin, Brush, &AdjustedBrushOrigin, Rop4);
       break;
     case DC_RECT:
       // Clip the blt to the clip rectangle
@@ -339,13 +412,32 @@ EngBitBlt(SURFOBJ *DestObj,
       ClipRect.right = ClipRegion->rclBounds.right + Translate.x;
       ClipRect.top = ClipRegion->rclBounds.top + Translate.y;
       ClipRect.bottom = ClipRegion->rclBounds.bottom + Translate.y;
-      EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect);
-      Ret = (*BltRectFunc)(OutputObj, OutputGDI, InputObj, InputGDI, Mask, ColorTranslation,
-                           &CombinedRect, &InputPoint, MaskOrigin, Brush, BrushOrigin, Rop4);
+      if (EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
+        {
+          Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
+          Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
+          Ret = (*BltRectFunc)(OutputObj, InputObj, Mask, ColorTranslation,
+                               &CombinedRect, &Pt, MaskOrigin, Brush, &AdjustedBrushOrigin, Rop4);
+        }
       break;
     case DC_COMPLEX:
       Ret = TRUE;
-      CLIPOBJ_cEnumStart(ClipRegion, FALSE, CT_RECTANGLES, CD_ANY, ENUM_RECT_LIMIT);
+      if (OutputObj == InputObj)
+       {
+         if (OutputRect.top < InputPoint.y)
+           {
+             Direction = OutputRect.left < InputPoint.x ? CD_RIGHTDOWN : CD_LEFTDOWN;
+           }
+         else
+           {
+             Direction = OutputRect.left < InputPoint.x ? CD_RIGHTUP : CD_LEFTUP;
+           }
+       }
+      else
+       {
+         Direction = CD_ANY;
+       }
+      CLIPOBJ_cEnumStart(ClipRegion, FALSE, CT_RECTANGLES, Direction, 0);
       do
        {
          EnumMore = CLIPOBJ_bEnum(ClipRegion,(ULONG) sizeof(RectEnum), (PVOID) &RectEnum);
@@ -356,10 +448,15 @@ EngBitBlt(SURFOBJ *DestObj,
              ClipRect.right = RectEnum.arcl[i].right + Translate.x;
              ClipRect.top = RectEnum.arcl[i].top + Translate.y;
              ClipRect.bottom = RectEnum.arcl[i].bottom + Translate.y;
-             EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect);
-             Ret = (*BltRectFunc)(OutputObj, OutputGDI, InputObj, InputGDI, Mask, ColorTranslation,
-                                  &CombinedRect, &InputPoint, MaskOrigin, Brush, BrushOrigin, Rop4) &&
-                   Ret;
+             if (EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
+                {
+                  Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
+                  Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
+                  Ret = (*BltRectFunc)(OutputObj, InputObj, Mask,
+                                       ColorTranslation, &CombinedRect, &Pt,
+                                       MaskOrigin, Brush, &AdjustedBrushOrigin,
+                                       Rop4) && Ret;
+                }
            }
        }
       while(EnumMore);
@@ -374,9 +471,9 @@ EngBitBlt(SURFOBJ *DestObj,
 }
 
 BOOL STDCALL
-IntEngBitBlt(SURFOBJ *DestObj,
-             SURFOBJ *SourceObj,
-             SURFOBJ *Mask,
+IntEngBitBlt(BITMAPOBJ *DestObj,
+             BITMAPOBJ *SourceObj,
+             BITMAPOBJ *MaskObj,
              CLIPOBJ *ClipRegion,
              XLATEOBJ *ColorTranslation,
              RECTL *DestRect,
@@ -387,67 +484,667 @@ IntEngBitBlt(SURFOBJ *DestObj,
              ROP4 Rop4)
 {
   BOOLEAN ret;
-  SURFGDI *DestGDI;
-  SURFGDI *SourceGDI;
+  RECTL InputClippedRect;
   RECTL OutputRect;
   POINTL InputPoint;
+  BOOLEAN UsesSource;
+  SURFOBJ *DestSurf;
+  SURFOBJ *SourceSurf = SourceObj ? &SourceObj->SurfObj : NULL;
+  SURFOBJ *MaskSurf = MaskObj ? &MaskObj->SurfObj : NULL;
 
-  if (NULL != SourcePoint)
+  ASSERT(DestObj);
+  DestSurf = &DestObj->SurfObj;
+  ASSERT(DestSurf);
+
+  InputClippedRect = *DestRect;
+  if (InputClippedRect.right < InputClippedRect.left)
+    {
+      InputClippedRect.left = DestRect->right;
+      InputClippedRect.right = DestRect->left;
+    }
+  if (InputClippedRect.bottom < InputClippedRect.top)
     {
+      InputClippedRect.top = DestRect->bottom;
+      InputClippedRect.bottom = DestRect->top;
+    }
+  UsesSource = ROP4_USES_SOURCE(Rop4);
+  if (UsesSource)
+    {
+      if (NULL == SourcePoint || NULL == SourceSurf)
+        {
+          return FALSE;
+        }
       InputPoint = *SourcePoint;
+
+      /* Make sure we don't try to copy anything outside the valid source region */
+      if (InputPoint.x < 0)
+        {
+          InputClippedRect.left -= InputPoint.x;
+          InputPoint.x = 0;
+        }
+      if (InputPoint.y < 0)
+        {
+          InputClippedRect.top -= InputPoint.y;
+          InputPoint.y = 0;
+        }
+      if (SourceSurf->sizlBitmap.cx < InputPoint.x + InputClippedRect.right - InputClippedRect.left)
+        {
+          InputClippedRect.right = InputClippedRect.left + SourceSurf->sizlBitmap.cx - InputPoint.x;
+        }
+      if (SourceSurf->sizlBitmap.cy < InputPoint.y + InputClippedRect.bottom - InputClippedRect.top)
+        {
+          InputClippedRect.bottom = InputClippedRect.top + SourceSurf->sizlBitmap.cy - InputPoint.y;
+        }
+
+      if (InputClippedRect.right < InputClippedRect.left ||
+          InputClippedRect.bottom < InputClippedRect.top)
+        {
+          /* Everything clipped away, nothing to do */
+          return TRUE;
+        }
     }
 
   /* Clip against the bounds of the clipping region so we won't try to write
    * outside the surface */
   if (NULL != ClipRegion)
     {
-      if (! EngIntersectRect(&OutputRect, DestRect, &ClipRegion->rclBounds))
+      if (! EngIntersectRect(&OutputRect, &InputClippedRect, &ClipRegion->rclBounds))
        {
          return TRUE;
        }
-      InputPoint.x += OutputRect.left - DestRect->left;
-      InputPoint.y += OutputRect.top - DestRect->top;
+      InputPoint.x += OutputRect.left - InputClippedRect.left;
+      InputPoint.y += OutputRect.top - InputClippedRect.top;
     }
   else
     {
-      OutputRect = *DestRect;
+      OutputRect = InputClippedRect;
     }
 
-  if (NULL != SourceObj)
+  if (UsesSource)
     {
-    SourceGDI = (PSURFGDI) AccessInternalObjectFromUserObject(SourceObj);
-    MouseSafetyOnDrawStart(SourceObj, SourceGDI, InputPoint.x, InputPoint.y,
+    MouseSafetyOnDrawStart(SourceSurf, InputPoint.x, InputPoint.y,
                            (InputPoint.x + abs(DestRect->right - DestRect->left)),
                           (InputPoint.y + abs(DestRect->bottom - DestRect->top)));
     }
 
   /* No success yet */
   ret = FALSE;
-  DestGDI = (SURFGDI*)AccessInternalObjectFromUserObject(DestObj);
-  MouseSafetyOnDrawStart(DestObj, DestGDI, OutputRect.left, OutputRect.top,
+  MouseSafetyOnDrawStart(DestSurf, OutputRect.left, OutputRect.top,
                          OutputRect.right, OutputRect.bottom);
 
   /* Call the driver's DrvBitBlt if available */
-  if (NULL != DestGDI->BitBlt)
+  if (DestObj->flHooks & HOOK_BITBLT)
     {
-      ret = DestGDI->BitBlt(DestObj, SourceObj, Mask, ClipRegion, ColorTranslation,
+      ret = GDIDEVFUNCS(DestSurf).BitBlt(
+                            DestSurf, SourceSurf, MaskSurf, ClipRegion, ColorTranslation,
                             &OutputRect, &InputPoint, MaskOrigin, Brush, BrushOrigin,
                             Rop4);
     }
 
   if (! ret)
     {
-      ret = EngBitBlt(DestObj, SourceObj, Mask, ClipRegion, ColorTranslation,
+      ret = EngBitBlt(DestSurf, SourceSurf, MaskSurf, ClipRegion, ColorTranslation,
                       &OutputRect, &InputPoint, MaskOrigin, Brush, BrushOrigin,
                       Rop4);
     }
 
-  MouseSafetyOnDrawEnd(DestObj, DestGDI);
-  if (NULL != SourceObj)
+  MouseSafetyOnDrawEnd(DestSurf);
+  if (UsesSource)
+    {
+    MouseSafetyOnDrawEnd(SourceSurf);
+    }
+
+  return ret;
+}
+
+static BOOLEAN STDCALL
+CallDibStretchBlt(SURFOBJ* OutputObj,
+                  SURFOBJ* InputObj,
+                  SURFOBJ* Mask,
+                 CLIPOBJ* ClipRegion,
+                  XLATEOBJ* ColorTranslation,
+                  RECTL* OutputRect,
+                  RECTL* InputRect,
+                  POINTL* MaskOrigin,
+                  POINTL* BrushOrigin,
+                  ULONG Mode)
+{
+  POINTL RealBrushOrigin;
+  if (BrushOrigin == NULL)
+    {
+      RealBrushOrigin.x = RealBrushOrigin.y = 0;
+    }
+  else
+    {
+      RealBrushOrigin = *BrushOrigin;
+    }
+  return DibFunctionsForBitmapFormat[OutputObj->iBitmapFormat].DIB_StretchBlt(
+    OutputObj, InputObj, OutputRect, InputRect, MaskOrigin, RealBrushOrigin, ClipRegion, ColorTranslation, Mode);
+}
+
+
+BOOL
+STDCALL
+EngStretchBlt(
+       IN SURFOBJ  *DestObj,
+       IN SURFOBJ  *SourceObj,
+       IN SURFOBJ  *Mask,
+       IN CLIPOBJ  *ClipRegion,
+       IN XLATEOBJ  *ColorTranslation,
+       IN COLORADJUSTMENT  *pca,
+       IN POINTL  *BrushOrigin,
+       IN RECTL  *prclDest,
+       IN RECTL  *prclSrc,
+       IN POINTL  *MaskOrigin,
+       IN ULONG  Mode
+       )
+{
+  // www.osr.com/ddk/graphics/gdifncs_0bs7.htm
+
+  POINTL             InputPoint;
+  RECTL              InputRect;
+  RECTL              OutputRect;
+  POINTL             Translate;
+  INTENG_ENTER_LEAVE EnterLeaveSource;
+  INTENG_ENTER_LEAVE EnterLeaveDest;
+  SURFOBJ*           InputObj;
+  SURFOBJ*           OutputObj;
+  PSTRETCHRECTFUNC   BltRectFunc;
+  BOOLEAN            Ret;
+  POINTL             AdjustedBrushOrigin;
+
+  InputRect.left = prclSrc->left;
+  InputRect.right = prclSrc->right;
+  InputRect.top = prclSrc->top;
+  InputRect.bottom = prclSrc->bottom;
+
+  if (! IntEngEnter(&EnterLeaveSource, SourceObj, &InputRect, TRUE, &Translate, &InputObj))
+    {
+      return FALSE;
+    }
+
+  InputPoint.x = InputRect.left + Translate.x;
+  InputPoint.y = InputRect.top + Translate.y;
+
+  OutputRect = *prclDest;
+
+  /* Check for degenerate case: if height or width of OutputRect is 0 pixels there's
+     nothing to do */
+  if (OutputRect.right <= OutputRect.left || OutputRect.bottom <= OutputRect.top)
+    {
+      IntEngLeave(&EnterLeaveSource);
+      return TRUE;
+    }
+
+  if (! IntEngEnter(&EnterLeaveDest, DestObj, &OutputRect, FALSE, &Translate, &OutputObj))
+    {
+      IntEngLeave(&EnterLeaveSource);
+      return FALSE;
+    }
+
+  OutputRect.left = prclDest->left + Translate.x;
+  OutputRect.right = prclDest->right + Translate.x;
+  OutputRect.top = prclDest->top + Translate.y;
+  OutputRect.bottom = prclDest->bottom + Translate.y;
+
+  if (NULL != BrushOrigin)
+    {
+      AdjustedBrushOrigin.x = BrushOrigin->x + Translate.x;
+      AdjustedBrushOrigin.y = BrushOrigin->y + Translate.y;
+    }
+  else
+    {
+      AdjustedBrushOrigin = Translate;
+    }
+
+  if (Mask != NULL)
+    {
+      //BltRectFunc = BltMask;
+      DPRINT("EngStretchBlt isn't capable of handling mask yet.\n");
+      IntEngLeave(&EnterLeaveDest);
+      IntEngLeave(&EnterLeaveSource);
+
+      return FALSE;
+    }
+  else
+    {
+      BltRectFunc = CallDibStretchBlt;
+    }
+
+
+  Ret = (*BltRectFunc)(OutputObj, InputObj, Mask, ClipRegion,
+                       ColorTranslation, &OutputRect, &InputRect, MaskOrigin,
+                       &AdjustedBrushOrigin, Mode);
+
+  IntEngLeave(&EnterLeaveDest);
+  IntEngLeave(&EnterLeaveSource);
+
+  return Ret;
+}
+
+BOOL STDCALL
+IntEngStretchBlt(BITMAPOBJ *DestObj,
+                 BITMAPOBJ *SourceObj,
+                 BITMAPOBJ *MaskObj,
+                 CLIPOBJ *ClipRegion,
+                 XLATEOBJ *ColorTranslation,
+                 RECTL *DestRect,
+                 RECTL *SourceRect,
+                 POINTL *pMaskOrigin,
+                 BRUSHOBJ *Brush,
+                 POINTL *BrushOrigin,
+                 ULONG Mode)
+{
+  BOOLEAN ret;
+  COLORADJUSTMENT ca;
+  POINT MaskOrigin;
+  SURFOBJ *DestSurf;
+  SURFOBJ *SourceSurf = SourceObj ? &SourceObj->SurfObj : NULL;
+  SURFOBJ *MaskSurf = MaskObj ? &MaskObj->SurfObj : NULL;
+
+  ASSERT(DestObj);
+  DestSurf = &DestObj->SurfObj;
+  ASSERT(DestSurf);
+
+  if (pMaskOrigin != NULL)
+    {
+      MaskOrigin.x = pMaskOrigin->x; MaskOrigin.y = pMaskOrigin->y;
+    }
+
+  if (NULL != SourceSurf)
+    {
+    ASSERT(SourceRect);
+    MouseSafetyOnDrawStart(SourceSurf, SourceRect->left, SourceRect->top,
+                           SourceRect->right, SourceRect->bottom);
+    }
+
+  /* No success yet */
+  ret = FALSE;
+  ASSERT(DestRect);
+  MouseSafetyOnDrawStart(DestSurf, DestRect->left, DestRect->top,
+                         DestRect->right, DestRect->bottom);
+
+  /* Prepare color adjustment */
+
+  /* Call the driver's DrvStretchBlt if available */
+  if (DestObj->flHooks & HOOK_STRETCHBLT)
+    {
+      /* Drv->StretchBlt (look at http://www.osr.com/ddk/graphics/ddifncs_3ew7.htm )
+      SURFOBJ *psoMask // optional, if it exists, then rop4=0xCCAA, otherwise rop4=0xCCCC */
+      // FIXME: MaskOrigin is always NULL !
+      ret = GDIDEVFUNCS(DestSurf).StretchBlt(
+                            DestSurf, SourceSurf, MaskSurf, ClipRegion, ColorTranslation,
+                            &ca, BrushOrigin, DestRect, SourceRect, NULL, Mode);
+    }
+
+  if (! ret)
+    {
+      // FIXME: see previous fixme
+      ret = EngStretchBlt(DestSurf, SourceSurf, MaskSurf, ClipRegion, ColorTranslation,
+                          &ca, BrushOrigin, DestRect, SourceRect, NULL, Mode);
+    }
+
+  MouseSafetyOnDrawEnd(DestSurf);
+  if (NULL != SourceSurf)
+    {
+    MouseSafetyOnDrawEnd(SourceSurf);
+    }
+
+  return ret;
+}
+
+/**** REACTOS FONT RENDERING CODE *********************************************/
+
+/* renders the alpha mask bitmap */
+static BOOLEAN STDCALL
+AlphaBltMask(SURFOBJ* Dest,
+       SURFOBJ* Source,
+       SURFOBJ* Mask,
+       XLATEOBJ* ColorTranslation,
+       XLATEOBJ* SrcColorTranslation,
+       RECTL* DestRect,
+       POINTL* SourcePoint,
+       POINTL* MaskPoint,
+       BRUSHOBJ* Brush,
+       POINTL* BrushPoint)
+{
+  LONG i, j, dx, dy;
+  int r, g, b;
+  ULONG Background, BrushColor, NewColor;
+  BYTE *tMask, *lMask;
+
+  dx = DestRect->right  - DestRect->left;
+  dy = DestRect->bottom - DestRect->top;
+
+  if (Mask != NULL)
+    {
+      BrushColor = XLATEOBJ_iXlate(SrcColorTranslation, Brush->iSolidColor);
+      r = (int)GetRValue(BrushColor);
+      g = (int)GetGValue(BrushColor);
+      b = (int)GetBValue(BrushColor);
+
+      tMask = Mask->pvScan0 + (SourcePoint->y * Mask->lDelta) + SourcePoint->x;
+      for (j = 0; j < dy; j++)
+        {
+          lMask = tMask;
+          for (i = 0; i < dx; i++)
+            {
+              if (*lMask > 0)
+                {
+                  if (*lMask == 0xff)
+                    {
+                      DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel(
+                          Dest, DestRect->left + i, DestRect->top + j, Brush->iSolidColor);
+                    }
+                  else
+                    {
+                      Background = DIB_GetSource(Dest, DestRect->left + i, DestRect->top + j,
+                                                 SrcColorTranslation);
+
+                      NewColor =
+                          RGB((*lMask * (r - GetRValue(Background)) >> 8) + GetRValue(Background),
+                              (*lMask * (g - GetGValue(Background)) >> 8) + GetGValue(Background),
+                              (*lMask * (b - GetBValue(Background)) >> 8) + GetBValue(Background));
+
+                      Background = XLATEOBJ_iXlate(ColorTranslation, NewColor);
+                      DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_PutPixel(
+                        Dest, DestRect->left + i, DestRect->top + j, Background);
+                    }
+                }
+              lMask++;
+            }
+          tMask += Mask->lDelta;
+        }
+      return TRUE;
+    }
+  else
+    {
+      return FALSE;
+    }
+}
+
+BOOL STDCALL
+EngMaskBitBlt(SURFOBJ *DestObj,
+         SURFOBJ *Mask,
+         CLIPOBJ *ClipRegion,
+         XLATEOBJ *DestColorTranslation,
+         XLATEOBJ *SourceColorTranslation,
+         RECTL *DestRect,
+         POINTL *SourcePoint,
+         POINTL *MaskOrigin,
+         BRUSHOBJ *Brush,
+         POINTL *BrushOrigin)
+{
+  BYTE               clippingType;
+  RECTL              CombinedRect;
+  RECT_ENUM          RectEnum;
+  BOOL               EnumMore;
+  POINTL             InputPoint;
+  RECTL              InputRect;
+  RECTL              OutputRect;
+  POINTL             Translate;
+  INTENG_ENTER_LEAVE EnterLeaveSource;
+  INTENG_ENTER_LEAVE EnterLeaveDest;
+  SURFOBJ*           InputObj;
+  SURFOBJ*           OutputObj;
+  BOOLEAN            Ret = TRUE;
+  RECTL              ClipRect;
+  unsigned           i;
+  POINTL             Pt;
+  ULONG              Direction;
+  POINTL             AdjustedBrushOrigin;
+
+  ASSERT ( Mask );
+
+  if (NULL != SourcePoint)
+    {
+    InputRect.left = SourcePoint->x;
+    InputRect.right = SourcePoint->x + (DestRect->right - DestRect->left);
+    InputRect.top = SourcePoint->y;
+    InputRect.bottom = SourcePoint->y + (DestRect->bottom - DestRect->top);
+    }
+  else
+    {
+    InputRect.left = 0;
+    InputRect.right = DestRect->right - DestRect->left;
+    InputRect.top = 0;
+    InputRect.bottom = DestRect->bottom - DestRect->top;
+    }
+
+  if (! IntEngEnter(&EnterLeaveSource, DestObj, &InputRect, TRUE, &Translate, &InputObj))
+    {
+    return FALSE;
+    }
+
+  if (NULL != SourcePoint)
+    {
+    InputPoint.x = SourcePoint->x + Translate.x;
+    InputPoint.y = SourcePoint->y + Translate.y;
+    }
+  else
+    {
+    InputPoint.x = 0;
+    InputPoint.y = 0;
+    }
+
+  OutputRect = *DestRect;
+  if (NULL != ClipRegion)
+    {
+      if (OutputRect.left < ClipRegion->rclBounds.left)
+       {
+         InputRect.left += ClipRegion->rclBounds.left - OutputRect.left;
+         InputPoint.x += ClipRegion->rclBounds.left - OutputRect.left;
+         OutputRect.left = ClipRegion->rclBounds.left;
+       }
+      if (ClipRegion->rclBounds.right < OutputRect.right)
+       {
+         InputRect.right -=  OutputRect.right - ClipRegion->rclBounds.right;
+         OutputRect.right = ClipRegion->rclBounds.right;
+       }
+      if (OutputRect.top < ClipRegion->rclBounds.top)
+       {
+         InputRect.top += ClipRegion->rclBounds.top - OutputRect.top;
+         InputPoint.y += ClipRegion->rclBounds.top - OutputRect.top;
+         OutputRect.top = ClipRegion->rclBounds.top;
+       }
+      if (ClipRegion->rclBounds.bottom < OutputRect.bottom)
+       {
+         InputRect.bottom -=  OutputRect.bottom - ClipRegion->rclBounds.bottom;
+         OutputRect.bottom = ClipRegion->rclBounds.bottom;
+       }
+    }
+
+  /* Check for degenerate case: if height or width of OutputRect is 0 pixels there's
+     nothing to do */
+  if (OutputRect.right <= OutputRect.left || OutputRect.bottom <= OutputRect.top)
+    {
+    IntEngLeave(&EnterLeaveSource);
+    return TRUE;
+    }
+
+  if (! IntEngEnter(&EnterLeaveDest, DestObj, &OutputRect, FALSE, &Translate, &OutputObj))
+    {
+    IntEngLeave(&EnterLeaveSource);
+    return FALSE;
+    }
+
+  OutputRect.left = DestRect->left + Translate.x;
+  OutputRect.right = DestRect->right + Translate.x;
+  OutputRect.top = DestRect->top + Translate.y;
+  OutputRect.bottom = DestRect->bottom + Translate.y;
+
+  if(BrushOrigin)
+  {
+    AdjustedBrushOrigin.x = BrushOrigin->x + Translate.x;
+    AdjustedBrushOrigin.y = BrushOrigin->y + Translate.y;
+  }
+  else
+    AdjustedBrushOrigin = Translate;
+
+  // Determine clipping type
+  if (ClipRegion == (CLIPOBJ *) NULL)
+  {
+    clippingType = DC_TRIVIAL;
+  } else {
+    clippingType = ClipRegion->iDComplexity;
+  }
+
+  switch(clippingType)
+  {
+    case DC_TRIVIAL:
+      if(Mask->iBitmapFormat == BMF_8BPP)
+        Ret = AlphaBltMask(OutputObj, InputObj, Mask, DestColorTranslation, SourceColorTranslation,
+                           &OutputRect, &InputPoint, MaskOrigin, Brush, &AdjustedBrushOrigin);
+      else
+        Ret = BltMask(OutputObj, InputObj, Mask, DestColorTranslation,
+                           &OutputRect, &InputPoint, MaskOrigin, Brush, &AdjustedBrushOrigin,
+                           R4_MASK);
+      break;
+    case DC_RECT:
+      // Clip the blt to the clip rectangle
+      ClipRect.left = ClipRegion->rclBounds.left + Translate.x;
+      ClipRect.right = ClipRegion->rclBounds.right + Translate.x;
+      ClipRect.top = ClipRegion->rclBounds.top + Translate.y;
+      ClipRect.bottom = ClipRegion->rclBounds.bottom + Translate.y;
+      if (EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
+        {
+          Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
+          Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
+          if(Mask->iBitmapFormat == BMF_8BPP)
+            {
+              Ret = AlphaBltMask(OutputObj, InputObj, Mask, DestColorTranslation, SourceColorTranslation,
+                                 &CombinedRect, &Pt, MaskOrigin, Brush, &AdjustedBrushOrigin);
+            }
+          else
+            {
+              Ret = BltMask(OutputObj, InputObj, Mask, DestColorTranslation,
+                            &CombinedRect, &Pt, MaskOrigin, Brush, &AdjustedBrushOrigin, R4_MASK);
+            }
+        }
+      break;
+    case DC_COMPLEX:
+      Ret = TRUE;
+      if (OutputObj == InputObj)
+       {
+         if (OutputRect.top < InputPoint.y)
+           {
+             Direction = OutputRect.left < InputPoint.x ? CD_RIGHTDOWN : CD_LEFTDOWN;
+           }
+         else
+           {
+             Direction = OutputRect.left < InputPoint.x ? CD_RIGHTUP : CD_LEFTUP;
+           }
+       }
+      else
+       {
+         Direction = CD_ANY;
+       }
+      CLIPOBJ_cEnumStart(ClipRegion, FALSE, CT_RECTANGLES, Direction, 0);
+      do
+       {
+         EnumMore = CLIPOBJ_bEnum(ClipRegion,(ULONG) sizeof(RectEnum), (PVOID) &RectEnum);
+
+         for (i = 0; i < RectEnum.c; i++)
+           {
+             ClipRect.left = RectEnum.arcl[i].left + Translate.x;
+             ClipRect.right = RectEnum.arcl[i].right + Translate.x;
+             ClipRect.top = RectEnum.arcl[i].top + Translate.y;
+             ClipRect.bottom = RectEnum.arcl[i].bottom + Translate.y;
+             if (EngIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
+                {
+                  Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
+                  Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
+                  if(Mask->iBitmapFormat == BMF_8BPP)
+                    {
+                      Ret = AlphaBltMask(OutputObj, InputObj, Mask,
+                                         DestColorTranslation,
+                                         SourceColorTranslation,
+                                         &CombinedRect, &Pt, MaskOrigin, Brush,
+                                         &AdjustedBrushOrigin) && Ret;
+                    }
+                  else
+                    {
+                      Ret = BltMask(OutputObj, InputObj, Mask,
+                                    DestColorTranslation, &CombinedRect, &Pt,
+                                    MaskOrigin, Brush, &AdjustedBrushOrigin,
+                                    R4_MASK) && Ret;
+                    }
+                }
+           }
+       }
+      while(EnumMore);
+      break;
+  }
+
+
+  IntEngLeave(&EnterLeaveDest);
+  IntEngLeave(&EnterLeaveSource);
+
+  return Ret;
+}
+
+BOOL STDCALL
+IntEngMaskBlt(SURFOBJ *DestObj,
+              SURFOBJ *Mask,
+              CLIPOBJ *ClipRegion,
+              XLATEOBJ *DestColorTranslation,
+              XLATEOBJ *SourceColorTranslation,
+              RECTL *DestRect,
+              POINTL *SourcePoint,
+              POINTL *MaskOrigin,
+              BRUSHOBJ *Brush,
+              POINTL *BrushOrigin)
+{
+  BOOLEAN ret;
+  RECTL OutputRect;
+  POINTL InputPoint;
+
+  ASSERT(Mask);
+
+  if (NULL != SourcePoint)
     {
-    MouseSafetyOnDrawEnd(SourceObj, SourceGDI);
+      InputPoint = *SourcePoint;
     }
 
+  /* Clip against the bounds of the clipping region so we won't try to write
+   * outside the surface */
+  if (NULL != ClipRegion)
+    {
+      if (! EngIntersectRect(&OutputRect, DestRect, &ClipRegion->rclBounds))
+       {
+         return TRUE;
+       }
+      InputPoint.x += OutputRect.left - DestRect->left;
+      InputPoint.y += OutputRect.top - DestRect->top;
+    }
+  else
+    {
+      OutputRect = *DestRect;
+    }
+
+  /* No success yet */
+  ret = FALSE;
+  ASSERT(DestObj);
+  MouseSafetyOnDrawStart(DestObj, OutputRect.left, OutputRect.top,
+                         OutputRect.right, OutputRect.bottom);
+
+  /* Dummy BitBlt to let driver know that it should flush its changes.
+     This should really be done using a call to DrvSynchronizeSurface,
+     but the VMware driver doesn't hook that call. */
+  /* FIXME: Remove the typecast! */
+  IntEngBitBlt((BITMAPOBJ*)DestObj, NULL, (BITMAPOBJ*)Mask, ClipRegion, DestColorTranslation,
+               DestRect, SourcePoint, MaskOrigin, Brush, BrushOrigin, R4_NOOP);
+
+  ret = EngMaskBitBlt(DestObj, Mask, ClipRegion, DestColorTranslation, SourceColorTranslation,
+                      &OutputRect, &InputPoint, MaskOrigin, Brush, BrushOrigin);
+
+  /* Dummy BitBlt to let driver know that something has changed. */
+  /* FIXME: Remove the typecast! */
+  IntEngBitBlt((BITMAPOBJ*)DestObj, NULL, (BITMAPOBJ*)Mask, ClipRegion, DestColorTranslation,
+               DestRect, SourcePoint, MaskOrigin, Brush, BrushOrigin, R4_NOOP);
+
+  MouseSafetyOnDrawEnd(DestObj);
+
   return ret;
 }
 /* EOF */