xorg: work on xorg driver
This commit is contained in:
parent
e3eeb4acaa
commit
127471ef1d
@ -35,14 +35,27 @@ composite(alpha blending) calls
|
||||
#include <picture.h>
|
||||
|
||||
#include "rdp.h"
|
||||
#include "rdpComposite.h"
|
||||
#include "rdpDraw.h"
|
||||
#include "rdpClientCon.h"
|
||||
#include "rdpReg.h"
|
||||
#include "rdpComposite.h"
|
||||
|
||||
/******************************************************************************/
|
||||
#define LOG_LEVEL 1
|
||||
#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,
|
||||
@ -56,6 +69,30 @@ 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, ®);
|
||||
RegionUninit(®);
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
void
|
||||
rdpComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
|
||||
@ -64,12 +101,35 @@ rdpComposite(CARD8 op, PicturePtr pSrc, PicturePtr pMask, PicturePtr pDst,
|
||||
{
|
||||
ScreenPtr pScreen;
|
||||
rdpPtr dev;
|
||||
rdpClientCon *clientCon;
|
||||
PictureScreenPtr ps;
|
||||
BoxRec box;
|
||||
|
||||
LLOGLN(10, ("rdpComposite:"));
|
||||
pScreen = pSrc->pDrawable->pScreen;
|
||||
dev = rdpGetDevFromScreen(pScreen);
|
||||
box.x1 = xDst + pDst->pDrawable->x;
|
||||
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)
|
||||
{
|
||||
rdpCompositePre(dev, clientCon, ps, op, pSrc, pMask, pDst,
|
||||
xSrc, ySrc, xMask, yMask, xDst, yDst,
|
||||
width, height, &box);
|
||||
clientCon = clientCon->next;
|
||||
}
|
||||
/* 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;
|
||||
}
|
||||
}
|
||||
|
@ -27,6 +27,12 @@ misc draw calls
|
||||
#include <xorg-server.h>
|
||||
#include <xf86.h>
|
||||
|
||||
/* true is drawable is window or pixmap is screen */
|
||||
#define XRDP_DRAWABLE_IS_VISIBLE(_dev, _drw) \
|
||||
(((_drw)->type == DRAWABLE_WINDOW && ((WindowPtr)(_drw))->viewable) || \
|
||||
((_drw)->type == DRAWABLE_PIXMAP && \
|
||||
((PixmapPtr)(_drw))->devPrivate.ptr == (_dev)->pfbMemory))
|
||||
|
||||
/******************************************************************************/
|
||||
#define GC_OP_VARS rdpPtr dev; rdpGCPtr priv; GCFuncs *oldFuncs
|
||||
|
||||
|
@ -69,19 +69,13 @@ rdpImageText16Post(rdpPtr dev, rdpClientCon *clientCon,
|
||||
int x, int y, int count, unsigned short *chars,
|
||||
BoxPtr box)
|
||||
{
|
||||
WindowPtr pDstWnd;
|
||||
RegionRec reg;
|
||||
|
||||
if (cd == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (pDrawable->type != DRAWABLE_WINDOW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
pDstWnd = (WindowPtr) pDrawable;
|
||||
if (pDstWnd->viewable == FALSE)
|
||||
if (!XRDP_DRAWABLE_IS_VISIBLE(dev, pDrawable))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ rdpPolyFillArcOrg(DrawablePtr pDrawable, GCPtr pGC, int narcs, xArc *parcs)
|
||||
void
|
||||
rdpPolyFillArc(DrawablePtr pDrawable, GCPtr pGC, int narcs, xArc *parcs)
|
||||
{
|
||||
LLOGLN(10, ("rdpPolyFillArc:"));
|
||||
LLOGLN(0, ("rdpPolyFillArc:"));
|
||||
/* do original call */
|
||||
rdpPolyFillArcOrg(pDrawable, pGC, narcs, parcs);
|
||||
}
|
||||
|
@ -65,18 +65,11 @@ rdpPolyFillRectPost(rdpPtr dev, rdpClientCon *clientCon,
|
||||
int cd, RegionPtr clip_reg,
|
||||
DrawablePtr pDrawable, GCPtr pGC, RegionPtr fill_reg)
|
||||
{
|
||||
WindowPtr pDstWnd;
|
||||
|
||||
if (cd == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (pDrawable->type != DRAWABLE_WINDOW)
|
||||
{
|
||||
return;
|
||||
}
|
||||
pDstWnd = (WindowPtr) pDrawable;
|
||||
if (pDstWnd->viewable == FALSE)
|
||||
if (!XRDP_DRAWABLE_IS_VISIBLE(dev, pDrawable))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user