mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
b2f64ac552
svn path=/branches/cmake-bringup/; revision=49307
971 lines
30 KiB
C
971 lines
30 KiB
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* PURPOSE: GDI BitBlt Functions
|
|
* FILE: subsys/win32k/eng/bitblt.c
|
|
* PROGRAMER: Jason Filby
|
|
* Timo Kreuzer
|
|
* REVISION HISTORY:
|
|
* 2/10/1999: Created
|
|
*/
|
|
|
|
#include <win32k.h>
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
typedef BOOLEAN (APIENTRY *PBLTRECTFUNC)(SURFOBJ* OutputObj,
|
|
SURFOBJ* InputObj,
|
|
SURFOBJ* Mask,
|
|
XLATEOBJ* ColorTranslation,
|
|
RECTL* OutputRect,
|
|
POINTL* InputPoint,
|
|
POINTL* MaskOrigin,
|
|
BRUSHOBJ* pbo,
|
|
POINTL* BrushOrigin,
|
|
ROP4 Rop4);
|
|
|
|
static BOOLEAN APIENTRY
|
|
BltMask(SURFOBJ* psoDest,
|
|
SURFOBJ* psoSource, // unused
|
|
SURFOBJ* psoMask,
|
|
XLATEOBJ* ColorTranslation, // unused
|
|
RECTL* prclDest,
|
|
POINTL* pptlSource, // unused
|
|
POINTL* pptlMask,
|
|
BRUSHOBJ* pbo,
|
|
POINTL* pptlBrush,
|
|
ROP4 Rop4)
|
|
{
|
|
LONG x, y;
|
|
BYTE *pjMskLine, *pjMskCurrent;
|
|
BYTE fjMaskBit0, fjMaskBit;
|
|
/* Pattern brushes */
|
|
PEBRUSHOBJ pebo = NULL;
|
|
SURFOBJ *psoPattern = NULL;
|
|
PSURFACE psurfPattern;
|
|
ULONG PatternWidth = 0, PatternHeight = 0;
|
|
LONG PatternX0 = 0, PatternX = 0, PatternY = 0;
|
|
PFN_DIB_PutPixel fnDest_PutPixel = NULL;
|
|
PFN_DIB_GetPixel fnPattern_GetPixel = NULL;
|
|
ULONG Pattern = 0;
|
|
HBITMAP hbmPattern;
|
|
|
|
ASSERT(psoSource == NULL);
|
|
ASSERT(pptlSource == NULL);
|
|
|
|
if (psoMask == NULL)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
if (pbo && pbo->iSolidColor == 0xFFFFFFFF)
|
|
{
|
|
pebo = CONTAINING_RECORD(pbo, EBRUSHOBJ, BrushObject);
|
|
|
|
hbmPattern = EBRUSHOBJ_pvGetEngBrush(pebo);
|
|
psurfPattern = SURFACE_LockSurface(hbmPattern);
|
|
if (psurfPattern != NULL)
|
|
{
|
|
psoPattern = &psurfPattern->SurfObj;
|
|
PatternWidth = psoPattern->sizlBitmap.cx;
|
|
PatternHeight = psoPattern->sizlBitmap.cy;
|
|
fnPattern_GetPixel = DibFunctionsForBitmapFormat[psoPattern->iBitmapFormat].DIB_GetPixel;
|
|
}
|
|
}
|
|
else
|
|
psurfPattern = NULL;
|
|
|
|
pjMskLine = (PBYTE)psoMask->pvScan0 + pptlMask->y * psoMask->lDelta + (pptlMask->x >> 3);
|
|
fjMaskBit0 = 0x80 >> (pptlMask->x & 0x07);
|
|
|
|
fnDest_PutPixel = DibFunctionsForBitmapFormat[psoDest->iBitmapFormat].DIB_PutPixel;
|
|
if (psurfPattern)
|
|
{
|
|
PatternY = (prclDest->top - pptlBrush->y) % PatternHeight;
|
|
if (PatternY < 0)
|
|
{
|
|
PatternY += PatternHeight;
|
|
}
|
|
PatternX0 = (prclDest->left - pptlBrush->x) % PatternWidth;
|
|
if (PatternX0 < 0)
|
|
{
|
|
PatternX0 += PatternWidth;
|
|
}
|
|
|
|
for (y = prclDest->top; y < prclDest->bottom; y++)
|
|
{
|
|
pjMskCurrent = pjMskLine;
|
|
fjMaskBit = fjMaskBit0;
|
|
PatternX = PatternX0;
|
|
|
|
for (x = prclDest->left; x < prclDest->right; x++)
|
|
{
|
|
if (*pjMskCurrent & fjMaskBit)
|
|
{
|
|
fnDest_PutPixel(psoDest, x, y,
|
|
fnPattern_GetPixel(psoPattern, PatternX, PatternY));
|
|
}
|
|
fjMaskBit = _rotr8(fjMaskBit, 1);
|
|
pjMskCurrent += (fjMaskBit >> 7);
|
|
PatternX++;
|
|
PatternX %= PatternWidth;
|
|
}
|
|
pjMskLine += psoMask->lDelta;
|
|
PatternY++;
|
|
PatternY %= PatternHeight;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Pattern = pbo ? pbo->iSolidColor : 0;
|
|
for (y = prclDest->top; y < prclDest->bottom; y++)
|
|
{
|
|
pjMskCurrent = pjMskLine;
|
|
fjMaskBit = fjMaskBit0;
|
|
|
|
for (x = prclDest->left; x < prclDest->right; x++)
|
|
{
|
|
if (*pjMskCurrent & fjMaskBit)
|
|
{
|
|
fnDest_PutPixel(psoDest, x, y, Pattern);
|
|
}
|
|
fjMaskBit = _rotr8(fjMaskBit, 1);
|
|
pjMskCurrent += (fjMaskBit >> 7);
|
|
}
|
|
pjMskLine += psoMask->lDelta;
|
|
}
|
|
}
|
|
|
|
if (psurfPattern)
|
|
SURFACE_UnlockSurface(psurfPattern);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOLEAN APIENTRY
|
|
BltPatCopy(SURFOBJ* Dest,
|
|
SURFOBJ* Source,
|
|
SURFOBJ* Mask,
|
|
XLATEOBJ* ColorTranslation,
|
|
RECTL* DestRect,
|
|
POINTL* SourcePoint,
|
|
POINTL* MaskPoint,
|
|
BRUSHOBJ* pbo,
|
|
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
|
|
|
|
DibFunctionsForBitmapFormat[Dest->iBitmapFormat].DIB_ColorFill(Dest, DestRect, pbo ? pbo->iSolidColor : 0);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static BOOLEAN APIENTRY
|
|
CallDibBitBlt(SURFOBJ* OutputObj,
|
|
SURFOBJ* InputObj,
|
|
SURFOBJ* Mask,
|
|
XLATEOBJ* ColorTranslation,
|
|
RECTL* OutputRect,
|
|
POINTL* InputPoint,
|
|
POINTL* MaskOrigin,
|
|
BRUSHOBJ* pbo,
|
|
POINTL* BrushOrigin,
|
|
ROP4 Rop4)
|
|
{
|
|
BLTINFO BltInfo;
|
|
PEBRUSHOBJ GdiBrush = NULL;
|
|
SURFACE *psurfPattern;
|
|
BOOLEAN Result;
|
|
HBITMAP hbmPattern;
|
|
|
|
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.Brush = pbo;
|
|
BltInfo.BrushOrigin = *BrushOrigin;
|
|
BltInfo.Rop4 = Rop4;
|
|
|
|
/* Pattern brush */
|
|
if (ROP4_USES_PATTERN(Rop4) && pbo && pbo->iSolidColor == 0xFFFFFFFF)
|
|
{
|
|
GdiBrush = CONTAINING_RECORD(pbo, EBRUSHOBJ, BrushObject);
|
|
hbmPattern = EBRUSHOBJ_pvGetEngBrush(GdiBrush);
|
|
psurfPattern = SURFACE_LockSurface(hbmPattern);
|
|
if (psurfPattern)
|
|
{
|
|
BltInfo.PatternSurface = &psurfPattern->SurfObj;
|
|
}
|
|
else
|
|
{
|
|
/* FIXME - What to do here? */
|
|
}
|
|
}
|
|
else
|
|
{
|
|
psurfPattern = NULL;
|
|
}
|
|
|
|
Result = DibFunctionsForBitmapFormat[OutputObj->iBitmapFormat].DIB_BitBlt(&BltInfo);
|
|
|
|
/* Pattern brush */
|
|
if (psurfPattern)
|
|
{
|
|
SURFACE_UnlockSurface(psurfPattern);
|
|
}
|
|
|
|
return Result;
|
|
}
|
|
|
|
INT __cdecl abs(INT nm);
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL APIENTRY
|
|
NtGdiEngBitBlt(
|
|
IN SURFOBJ *psoTrg,
|
|
IN SURFOBJ *psoSrc,
|
|
IN SURFOBJ *psoMask,
|
|
IN CLIPOBJ *pco,
|
|
IN XLATEOBJ *pxlo,
|
|
IN RECTL *prclTrg,
|
|
IN POINTL *pptlSrc,
|
|
IN POINTL *pptlMask,
|
|
IN BRUSHOBJ *pbo,
|
|
IN POINTL *pptlBrush,
|
|
IN ROP4 rop4 )
|
|
{
|
|
RECTL rclTrg;
|
|
POINTL ptlSrc;
|
|
POINTL ptlMask;
|
|
POINTL ptlBrush;
|
|
|
|
_SEH2_TRY
|
|
{
|
|
ProbeForRead(prclTrg, sizeof(RECTL), 1);
|
|
RtlCopyMemory(&rclTrg,prclTrg, sizeof(RECTL));
|
|
|
|
ProbeForRead(pptlSrc, sizeof(POINTL), 1);
|
|
RtlCopyMemory(&ptlSrc, pptlSrc, sizeof(POINTL));
|
|
|
|
ProbeForRead(pptlMask, sizeof(POINTL), 1);
|
|
RtlCopyMemory(&ptlMask, pptlMask, sizeof(POINTL));
|
|
|
|
ProbeForRead(pptlBrush, sizeof(POINTL), 1);
|
|
RtlCopyMemory(&ptlBrush, pptlBrush, sizeof(POINTL));
|
|
|
|
}
|
|
_SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
_SEH2_YIELD(return FALSE);
|
|
}
|
|
_SEH2_END;
|
|
|
|
return EngBitBlt(psoTrg, psoSrc, psoMask, pco, pxlo, &rclTrg, &ptlSrc, &ptlMask, pbo, &ptlBrush, rop4);
|
|
}
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL APIENTRY
|
|
EngBitBlt(SURFOBJ *DestObj,
|
|
SURFOBJ *SourceObj,
|
|
SURFOBJ *Mask,
|
|
CLIPOBJ *ClipRegion,
|
|
XLATEOBJ *ColorTranslation,
|
|
RECTL *DestRect,
|
|
POINTL *SourcePoint,
|
|
POINTL *MaskOrigin,
|
|
BRUSHOBJ *pbo,
|
|
POINTL *BrushOrigin,
|
|
ROP4 rop4)
|
|
{
|
|
BYTE clippingType;
|
|
RECTL CombinedRect;
|
|
RECT_ENUM RectEnum;
|
|
BOOL EnumMore;
|
|
POINTL InputPoint;
|
|
RECTL InputRect;
|
|
RECTL OutputRect;
|
|
SURFOBJ* InputObj = 0;
|
|
SURFOBJ* OutputObj;
|
|
PBLTRECTFUNC BltRectFunc;
|
|
BOOLEAN Ret = TRUE;
|
|
RECTL ClipRect;
|
|
unsigned i;
|
|
POINTL Pt;
|
|
ULONG Direction;
|
|
BOOL UsesSource;
|
|
POINTL AdjustedBrushOrigin;
|
|
|
|
UsesSource = ROP4_USES_SOURCE(rop4);
|
|
if (R4_NOOP == rop4)
|
|
{
|
|
/* Copy destination onto itself: nop */
|
|
return TRUE;
|
|
}
|
|
|
|
OutputRect = *DestRect;
|
|
if (OutputRect.right < OutputRect.left)
|
|
{
|
|
OutputRect.left = DestRect->right;
|
|
OutputRect.right = DestRect->left;
|
|
}
|
|
if (OutputRect.bottom < OutputRect.top)
|
|
{
|
|
OutputRect.left = DestRect->right;
|
|
OutputRect.right = DestRect->left;
|
|
}
|
|
|
|
if (UsesSource)
|
|
{
|
|
if (NULL == SourcePoint)
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
/* Make sure we don't try to copy anything outside the valid source
|
|
region */
|
|
InputPoint = *SourcePoint;
|
|
if (InputPoint.x < 0)
|
|
{
|
|
OutputRect.left -= InputPoint.x;
|
|
InputPoint.x = 0;
|
|
}
|
|
if (InputPoint.y < 0)
|
|
{
|
|
OutputRect.top -= InputPoint.y;
|
|
InputPoint.y = 0;
|
|
}
|
|
if (SourceObj->sizlBitmap.cx < InputPoint.x +
|
|
OutputRect.right - OutputRect.left)
|
|
{
|
|
OutputRect.right = OutputRect.left +
|
|
SourceObj->sizlBitmap.cx - InputPoint.x;
|
|
}
|
|
if (SourceObj->sizlBitmap.cy < InputPoint.y +
|
|
OutputRect.bottom - OutputRect.top)
|
|
{
|
|
OutputRect.bottom = OutputRect.top +
|
|
SourceObj->sizlBitmap.cy - InputPoint.y;
|
|
}
|
|
|
|
InputRect.left = InputPoint.x;
|
|
InputRect.right = InputPoint.x + (OutputRect.right - OutputRect.left);
|
|
InputRect.top = InputPoint.y;
|
|
InputRect.bottom = InputPoint.y + (OutputRect.bottom - OutputRect.top);
|
|
|
|
InputObj = SourceObj;
|
|
}
|
|
else
|
|
{
|
|
InputRect.left = 0;
|
|
InputRect.right = DestRect->right - DestRect->left;
|
|
InputRect.top = 0;
|
|
InputRect.bottom = DestRect->bottom - DestRect->top;
|
|
}
|
|
|
|
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)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
OutputObj = DestObj;
|
|
|
|
if (BrushOrigin)
|
|
{
|
|
AdjustedBrushOrigin.x = BrushOrigin->x;
|
|
AdjustedBrushOrigin.y = BrushOrigin->y;
|
|
}
|
|
else
|
|
{
|
|
AdjustedBrushOrigin.x = 0;
|
|
AdjustedBrushOrigin.y = 0;
|
|
}
|
|
|
|
/* Determine clipping type */
|
|
if (ClipRegion == (CLIPOBJ *) NULL)
|
|
{
|
|
clippingType = DC_TRIVIAL;
|
|
}
|
|
else
|
|
{
|
|
clippingType = ClipRegion->iDComplexity;
|
|
}
|
|
|
|
if (R4_MASK == rop4)
|
|
{
|
|
BltRectFunc = BltMask;
|
|
}
|
|
else if (ROP3_TO_ROP4(PATCOPY) == rop4)
|
|
{
|
|
if (pbo && pbo->iSolidColor == 0xFFFFFFFF)
|
|
BltRectFunc = CallDibBitBlt;
|
|
else
|
|
BltRectFunc = BltPatCopy;
|
|
}
|
|
else
|
|
{
|
|
BltRectFunc = CallDibBitBlt;
|
|
}
|
|
|
|
|
|
switch (clippingType)
|
|
{
|
|
case DC_TRIVIAL:
|
|
Ret = (*BltRectFunc)(OutputObj, InputObj, Mask, ColorTranslation,
|
|
&OutputRect, &InputPoint, MaskOrigin, pbo,
|
|
&AdjustedBrushOrigin, rop4);
|
|
break;
|
|
case DC_RECT:
|
|
/* Clip the blt to the clip rectangle */
|
|
ClipRect.left = ClipRegion->rclBounds.left;
|
|
ClipRect.right = ClipRegion->rclBounds.right;
|
|
ClipRect.top = ClipRegion->rclBounds.top;
|
|
ClipRect.bottom = ClipRegion->rclBounds.bottom;
|
|
if (RECTL_bIntersectRect(&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, pbo,
|
|
&AdjustedBrushOrigin, rop4);
|
|
}
|
|
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;
|
|
ClipRect.right = RectEnum.arcl[i].right;
|
|
ClipRect.top = RectEnum.arcl[i].top;
|
|
ClipRect.bottom = RectEnum.arcl[i].bottom;
|
|
if (RECTL_bIntersectRect(&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, pbo, &AdjustedBrushOrigin,
|
|
rop4) && Ret;
|
|
}
|
|
}
|
|
}
|
|
while (EnumMore);
|
|
break;
|
|
}
|
|
|
|
return Ret;
|
|
}
|
|
|
|
BOOL APIENTRY
|
|
IntEngBitBlt(
|
|
SURFOBJ *psoTrg,
|
|
SURFOBJ *psoSrc,
|
|
SURFOBJ *psoMask,
|
|
CLIPOBJ *pco,
|
|
XLATEOBJ *pxlo,
|
|
RECTL *prclTrg,
|
|
POINTL *pptlSrc,
|
|
POINTL *pptlMask,
|
|
BRUSHOBJ *pbo,
|
|
POINTL *pptlBrush,
|
|
ROP4 rop4)
|
|
{
|
|
SURFACE *psurfTrg;
|
|
SURFACE *psurfSrc = NULL;
|
|
BOOL bResult;
|
|
RECTL rclClipped;
|
|
RECTL rclSrc;
|
|
// INTENG_ENTER_LEAVE EnterLeaveSource;
|
|
// INTENG_ENTER_LEAVE EnterLeaveDest;
|
|
PFN_DrvBitBlt pfnBitBlt;
|
|
|
|
ASSERT(psoTrg);
|
|
psurfTrg = CONTAINING_RECORD(psoTrg, SURFACE, SurfObj);
|
|
|
|
/* FIXME: Should we really allow to pass non-well-ordered rects? */
|
|
rclClipped = *prclTrg;
|
|
RECTL_vMakeWellOrdered(&rclClipped);
|
|
|
|
/* Clip target rect against the bounds of the clipping region */
|
|
if (pco)
|
|
{
|
|
if (!RECTL_bIntersectRect(&rclClipped, &rclClipped, &pco->rclBounds))
|
|
{
|
|
/* Nothing left */
|
|
return TRUE;
|
|
}
|
|
|
|
/* Don't pass a clipobj with only a single rect */
|
|
if (pco->iDComplexity == DC_RECT)
|
|
pco = NULL;
|
|
}
|
|
|
|
if (ROP4_USES_SOURCE(rop4))
|
|
{
|
|
ASSERT(psoSrc);
|
|
psurfSrc = CONTAINING_RECORD(psoSrc, SURFACE, SurfObj);
|
|
|
|
/* Calculate source rect */
|
|
rclSrc.left = pptlSrc->x + rclClipped.left - prclTrg->left;
|
|
rclSrc.top = pptlSrc->y + rclClipped.top - prclTrg->top;
|
|
rclSrc.right = rclSrc.left + rclClipped.right - rclClipped.left;
|
|
rclSrc.bottom = rclSrc.top + rclClipped.bottom - rclClipped.top;
|
|
}
|
|
else
|
|
{
|
|
psoSrc = NULL;
|
|
psurfSrc = NULL;
|
|
}
|
|
|
|
/* Is the target surface device managed? */
|
|
if (psurfTrg->flags & HOOK_BITBLT)
|
|
{
|
|
/* Is the source a different device managed surface? */
|
|
if (psoSrc && psoSrc->hdev != psoTrg->hdev && psurfSrc->flags & HOOK_BITBLT)
|
|
{
|
|
DPRINT1("Need to copy to standard bitmap format!\n");
|
|
ASSERT(FALSE);
|
|
}
|
|
|
|
pfnBitBlt = GDIDEVFUNCS(psoTrg).BitBlt;
|
|
}
|
|
|
|
/* Is the source surface device managed? */
|
|
else if (psoSrc && psurfSrc->flags & HOOK_BITBLT)
|
|
{
|
|
pfnBitBlt = GDIDEVFUNCS(psoSrc).BitBlt;
|
|
}
|
|
else
|
|
{
|
|
pfnBitBlt = EngBitBlt;
|
|
}
|
|
|
|
bResult = pfnBitBlt(psoTrg,
|
|
psoSrc,
|
|
psoMask,
|
|
pco,
|
|
pxlo,
|
|
&rclClipped,
|
|
(POINTL*)&rclSrc,
|
|
pptlMask,
|
|
pbo,
|
|
pptlBrush,
|
|
rop4);
|
|
|
|
// FIXME: cleanup temp surface!
|
|
|
|
return bResult;
|
|
}
|
|
|
|
|
|
/**** REACTOS FONT RENDERING CODE *********************************************/
|
|
|
|
/* renders the alpha mask bitmap */
|
|
static BOOLEAN APIENTRY
|
|
AlphaBltMask(SURFOBJ* psoDest,
|
|
SURFOBJ* psoSource, // unused
|
|
SURFOBJ* psoMask,
|
|
XLATEOBJ* pxloRGB2Dest,
|
|
XLATEOBJ* pxloBrush,
|
|
RECTL* prclDest,
|
|
POINTL* pptlSource, // unused
|
|
POINTL* pptlMask,
|
|
BRUSHOBJ* pbo,
|
|
POINTL* pptlBrush)
|
|
{
|
|
LONG i, j, dx, dy;
|
|
int r, g, b;
|
|
ULONG Background, BrushColor, NewColor;
|
|
BYTE *tMask, *lMask;
|
|
|
|
ASSERT(psoSource == NULL);
|
|
ASSERT(pptlSource == NULL);
|
|
|
|
dx = prclDest->right - prclDest->left;
|
|
dy = prclDest->bottom - prclDest->top;
|
|
|
|
if (psoMask != NULL)
|
|
{
|
|
BrushColor = XLATEOBJ_iXlate(pxloBrush, pbo ? pbo->iSolidColor : 0);
|
|
r = (int)GetRValue(BrushColor);
|
|
g = (int)GetGValue(BrushColor);
|
|
b = (int)GetBValue(BrushColor);
|
|
|
|
tMask = (PBYTE)psoMask->pvScan0 + (pptlMask->y * psoMask->lDelta) + pptlMask->x;
|
|
for (j = 0; j < dy; j++)
|
|
{
|
|
lMask = tMask;
|
|
for (i = 0; i < dx; i++)
|
|
{
|
|
if (*lMask > 0)
|
|
{
|
|
if (*lMask == 0xff)
|
|
{
|
|
DibFunctionsForBitmapFormat[psoDest->iBitmapFormat].DIB_PutPixel(
|
|
psoDest, prclDest->left + i, prclDest->top + j, pbo ? pbo->iSolidColor : 0);
|
|
}
|
|
else
|
|
{
|
|
Background = DIB_GetSource(psoDest, prclDest->left + i, prclDest->top + j,
|
|
pxloBrush);
|
|
|
|
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(pxloRGB2Dest, NewColor);
|
|
DibFunctionsForBitmapFormat[psoDest->iBitmapFormat].DIB_PutPixel(
|
|
psoDest, prclDest->left + i, prclDest->top + j, Background);
|
|
}
|
|
}
|
|
lMask++;
|
|
}
|
|
tMask += psoMask->lDelta;
|
|
}
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
static
|
|
BOOL APIENTRY
|
|
EngMaskBitBlt(SURFOBJ *psoDest,
|
|
SURFOBJ *psoMask,
|
|
CLIPOBJ *ClipRegion,
|
|
XLATEOBJ *DestColorTranslation,
|
|
XLATEOBJ *SourceColorTranslation,
|
|
RECTL *DestRect,
|
|
POINTL *pptlMask,
|
|
BRUSHOBJ *pbo,
|
|
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* psoInput;
|
|
SURFOBJ* psoOutput;
|
|
BOOLEAN Ret = TRUE;
|
|
RECTL ClipRect;
|
|
unsigned i;
|
|
POINTL Pt;
|
|
ULONG Direction;
|
|
POINTL AdjustedBrushOrigin;
|
|
|
|
ASSERT(psoMask);
|
|
|
|
if (pptlMask)
|
|
{
|
|
InputRect.left = pptlMask->x;
|
|
InputRect.right = pptlMask->x + (DestRect->right - DestRect->left);
|
|
InputRect.top = pptlMask->y;
|
|
InputRect.bottom = pptlMask->y + (DestRect->bottom - DestRect->top);
|
|
}
|
|
else
|
|
{
|
|
InputRect.left = 0;
|
|
InputRect.right = DestRect->right - DestRect->left;
|
|
InputRect.top = 0;
|
|
InputRect.bottom = DestRect->bottom - DestRect->top;
|
|
}
|
|
|
|
OutputRect = *DestRect;
|
|
if (NULL != ClipRegion)
|
|
{
|
|
if (OutputRect.left < ClipRegion->rclBounds.left)
|
|
{
|
|
InputRect.left += 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;
|
|
OutputRect.top = ClipRegion->rclBounds.top;
|
|
}
|
|
if (ClipRegion->rclBounds.bottom < OutputRect.bottom)
|
|
{
|
|
InputRect.bottom -= OutputRect.bottom - ClipRegion->rclBounds.bottom;
|
|
OutputRect.bottom = ClipRegion->rclBounds.bottom;
|
|
}
|
|
}
|
|
|
|
if (! IntEngEnter(&EnterLeaveSource, psoMask, &InputRect, TRUE, &Translate, &psoInput))
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
InputPoint.x = InputRect.left + Translate.x;
|
|
InputPoint.y = InputRect.top + Translate.y;
|
|
|
|
/* 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, psoDest, &OutputRect, FALSE, &Translate, &psoOutput))
|
|
{
|
|
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 (psoMask->iBitmapFormat == BMF_8BPP)
|
|
Ret = AlphaBltMask(psoOutput, NULL , psoInput, DestColorTranslation, SourceColorTranslation,
|
|
&OutputRect, NULL, &InputPoint, pbo, &AdjustedBrushOrigin);
|
|
else
|
|
Ret = BltMask(psoOutput, NULL, psoInput, DestColorTranslation,
|
|
&OutputRect, NULL, &InputPoint, pbo, &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 (RECTL_bIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
|
|
{
|
|
Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
|
|
Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
|
|
if (psoMask->iBitmapFormat == BMF_8BPP)
|
|
{
|
|
Ret = AlphaBltMask(psoOutput, NULL, psoInput, DestColorTranslation, SourceColorTranslation,
|
|
&CombinedRect, NULL, &Pt, pbo, &AdjustedBrushOrigin);
|
|
}
|
|
else
|
|
{
|
|
Ret = BltMask(psoOutput, NULL, psoInput, DestColorTranslation,
|
|
&CombinedRect, NULL, &Pt, pbo, &AdjustedBrushOrigin, R4_MASK);
|
|
}
|
|
}
|
|
break;
|
|
case DC_COMPLEX:
|
|
Ret = TRUE;
|
|
if (psoOutput == psoInput)
|
|
{
|
|
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 (RECTL_bIntersectRect(&CombinedRect, &OutputRect, &ClipRect))
|
|
{
|
|
Pt.x = InputPoint.x + CombinedRect.left - OutputRect.left;
|
|
Pt.y = InputPoint.y + CombinedRect.top - OutputRect.top;
|
|
if (psoMask->iBitmapFormat == BMF_8BPP)
|
|
{
|
|
Ret = AlphaBltMask(psoOutput, NULL, psoInput,
|
|
DestColorTranslation,
|
|
SourceColorTranslation,
|
|
&CombinedRect, NULL, &Pt, pbo,
|
|
&AdjustedBrushOrigin) && Ret;
|
|
}
|
|
else
|
|
{
|
|
Ret = BltMask(psoOutput, NULL, psoInput,
|
|
DestColorTranslation, &CombinedRect, NULL,
|
|
&Pt, pbo, &AdjustedBrushOrigin,
|
|
R4_MASK) && Ret;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
while (EnumMore);
|
|
break;
|
|
}
|
|
|
|
|
|
IntEngLeave(&EnterLeaveDest);
|
|
IntEngLeave(&EnterLeaveSource);
|
|
|
|
return Ret;
|
|
}
|
|
|
|
BOOL APIENTRY
|
|
IntEngMaskBlt(SURFOBJ *psoDest,
|
|
SURFOBJ *psoMask,
|
|
CLIPOBJ *ClipRegion,
|
|
XLATEOBJ *DestColorTranslation,
|
|
XLATEOBJ *SourceColorTranslation,
|
|
RECTL *DestRect,
|
|
POINTL *pptlMask,
|
|
BRUSHOBJ *pbo,
|
|
POINTL *BrushOrigin)
|
|
{
|
|
BOOLEAN ret;
|
|
RECTL OutputRect;
|
|
POINTL InputPoint;
|
|
SURFACE *psurfDest;
|
|
|
|
ASSERT(psoMask);
|
|
|
|
if (pptlMask)
|
|
{
|
|
InputPoint = *pptlMask;
|
|
}
|
|
|
|
/* Clip against the bounds of the clipping region so we won't try to write
|
|
* outside the surface */
|
|
if (NULL != ClipRegion)
|
|
{
|
|
if (!RECTL_bIntersectRect(&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(psoDest);
|
|
psurfDest = CONTAINING_RECORD(psoDest, SURFACE, SurfObj);
|
|
|
|
/* 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. */
|
|
IntEngBitBlt(psoDest, NULL, psoMask, ClipRegion, DestColorTranslation,
|
|
DestRect, pptlMask, pptlMask, pbo, BrushOrigin,
|
|
R4_NOOP);
|
|
|
|
ret = EngMaskBitBlt(psoDest, psoMask, ClipRegion, DestColorTranslation, SourceColorTranslation,
|
|
&OutputRect, &InputPoint, pbo, BrushOrigin);
|
|
|
|
/* Dummy BitBlt to let driver know that something has changed. */
|
|
IntEngBitBlt(psoDest, NULL, psoMask, ClipRegion, DestColorTranslation,
|
|
DestRect, pptlMask, pptlMask, pbo, BrushOrigin,
|
|
R4_NOOP);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* EOF */
|