|
|
|
@ -46,17 +46,6 @@ composite(alpha blending) calls
|
|
|
|
|
#define LLOGLN(_level, _args) \
|
|
|
|
|
do { if (_level < LOG_LEVEL) { ErrorF _args ; ErrorF("\n"); } } while (0)
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
static void
|
|
|
|
|
rdpCompositePre(rdpPtr dev, rdpClientCon *clientCon,
|
|
|
|
|
PictureScreenPtr ps, CARD8 op, PicturePtr pSrc,
|
|
|
|
|
PicturePtr pMask, PicturePtr pDst,
|
|
|
|
|
INT16 xSrc, INT16 ySrc, INT16 xMask, INT16 yMask,
|
|
|
|
|
INT16 xDst, INT16 yDst, CARD16 width, CARD16 height,
|
|
|
|
|
BoxPtr box)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
static void
|
|
|
|
|
rdpCompositeOrg(PictureScreenPtr ps, rdpPtr dev,
|
|
|
|
@ -70,30 +59,6 @@ rdpCompositeOrg(PictureScreenPtr ps, rdpPtr dev,
|
|
|
|
|
ps->Composite = rdpComposite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
static void
|
|
|
|
|
rdpCompositePost(rdpPtr dev, rdpClientCon *clientCon,
|
|
|
|
|
PictureScreenPtr ps, CARD8 op, PicturePtr pSrc,
|
|
|
|
|
PicturePtr pMask, PicturePtr pDst,
|
|
|
|
|
INT16 xSrc, INT16 ySrc, INT16 xMask, INT16 yMask,
|
|
|
|
|
INT16 xDst, INT16 yDst, CARD16 width, CARD16 height,
|
|
|
|
|
BoxPtr box)
|
|
|
|
|
{
|
|
|
|
|
RegionRec reg;
|
|
|
|
|
|
|
|
|
|
if (!XRDP_DRAWABLE_IS_VISIBLE(dev, pDst->pDrawable))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
rdpRegionInit(®, box, 0);
|
|
|
|
|
if (pDst->pCompositeClip != 0)
|
|
|
|
|
{
|
|
|
|
|
rdpRegionIntersect(®, pDst->pCompositeClip, ®);
|
|
|
|
|
}
|
|
|
|
|
rdpClientConAddDirtyScreenReg(dev, clientCon, ®);
|
|
|
|
|
rdpRegionUninit(®);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
void
|
|
|
|
|
rdpComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
|
|
|
|
@ -102,9 +67,9 @@ rdpComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
|
|
|
|
|
{
|
|
|
|
|
ScreenPtr pScreen;
|
|
|
|
|
rdpPtr dev;
|
|
|
|
|
rdpClientCon *clientCon;
|
|
|
|
|
PictureScreenPtr ps;
|
|
|
|
|
BoxRec box;
|
|
|
|
|
RegionRec reg;
|
|
|
|
|
|
|
|
|
|
LLOGLN(10, ("rdpComposite:"));
|
|
|
|
|
pScreen = pDst->pDrawable->pScreen;
|
|
|
|
@ -114,24 +79,15 @@ rdpComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
|
|
|
|
|
box.y1 = yDst + pDst->pDrawable->y;
|
|
|
|
|
box.x2 = box.x1 + width;
|
|
|
|
|
box.y2 = box.y1 + height;
|
|
|
|
|
ps = GetPictureScreen(pScreen);
|
|
|
|
|
clientCon = dev->clientConHead;
|
|
|
|
|
while (clientCon != NULL)
|
|
|
|
|
rdpRegionInit(®, &box, 0);
|
|
|
|
|
if (pDst->pCompositeClip != NULL)
|
|
|
|
|
{
|
|
|
|
|
rdpCompositePre(dev, clientCon, ps, op, pSrc, pMask, pDst,
|
|
|
|
|
xSrc, ySrc, xMask, yMask, xDst, yDst,
|
|
|
|
|
width, height, &box);
|
|
|
|
|
clientCon = clientCon->next;
|
|
|
|
|
rdpRegionIntersect(®, pDst->pCompositeClip, ®);
|
|
|
|
|
}
|
|
|
|
|
ps = GetPictureScreen(pScreen);
|
|
|
|
|
/* do original call */
|
|
|
|
|
rdpCompositeOrg(ps, dev, op, pSrc, pMask, pDst, xSrc, ySrc,
|
|
|
|
|
xMask, yMask, xDst, yDst, width, height);
|
|
|
|
|
clientCon = dev->clientConHead;
|
|
|
|
|
while (clientCon != NULL)
|
|
|
|
|
{
|
|
|
|
|
rdpCompositePost(dev, clientCon, ps, op, pSrc, pMask, pDst,
|
|
|
|
|
xSrc, ySrc, xMask, yMask, xDst, yDst,
|
|
|
|
|
width, height, &box);
|
|
|
|
|
clientCon = clientCon->next;
|
|
|
|
|
}
|
|
|
|
|
rdpClientConAddAllReg(dev, ®, pDst->pDrawable);
|
|
|
|
|
rdpRegionUninit(®);
|
|
|
|
|
}
|
|
|
|
|