Integration of DAMAGE-XFIXES branch to trunk
https://freedesktop.org/bugzilla/show_bug.cgi?id=859 DAMAGE calls some shape functions. Modified Files: Imakefile shape.c
This commit is contained in:
parent
0bca00e120
commit
406c49eb81
14
Xext/shape.c
14
Xext/shape.c
|
@ -1,4 +1,4 @@
|
||||||
/* $XdotOrg$ */
|
/* $XdotOrg: xc/programs/Xserver/Xext/shape.c,v 1.2 2004/04/23 18:44:41 eich Exp $ */
|
||||||
/* $XFree86: xc/programs/Xserver/Xext/shape.c,v 3.18 2003/10/28 23:08:43 tsi Exp $ */
|
/* $XFree86: xc/programs/Xserver/Xext/shape.c,v 3.18 2003/10/28 23:08:43 tsi Exp $ */
|
||||||
/************************************************************
|
/************************************************************
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ static int ShapeFreeEvents(
|
||||||
pointer /* data */,
|
pointer /* data */,
|
||||||
XID /* id */
|
XID /* id */
|
||||||
);
|
);
|
||||||
static void SendShapeNotify(
|
void SendShapeNotify(
|
||||||
WindowPtr /* pWin */,
|
WindowPtr /* pWin */,
|
||||||
int /* which */
|
int /* which */
|
||||||
);
|
);
|
||||||
|
@ -87,8 +87,8 @@ RegionOperate (
|
||||||
|
|
||||||
#define CREATE_PROC(func) RegionPtr func(WindowPtr /* pWin */)
|
#define CREATE_PROC(func) RegionPtr func(WindowPtr /* pWin */)
|
||||||
|
|
||||||
static CREATE_PROC(CreateBoundingShape);
|
CREATE_PROC(CreateBoundingShape);
|
||||||
static CREATE_PROC(CreateClipShape);
|
CREATE_PROC(CreateClipShape);
|
||||||
|
|
||||||
#undef CREATE_PROC
|
#undef CREATE_PROC
|
||||||
|
|
||||||
|
@ -261,7 +261,7 @@ RegionOperate (client, pWin, kind, destRgnp, srcRgn, op, xoff, yoff, create)
|
||||||
return Success;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
static RegionPtr
|
RegionPtr
|
||||||
CreateBoundingShape (pWin)
|
CreateBoundingShape (pWin)
|
||||||
WindowPtr pWin;
|
WindowPtr pWin;
|
||||||
{
|
{
|
||||||
|
@ -274,7 +274,7 @@ CreateBoundingShape (pWin)
|
||||||
return REGION_CREATE(pWin->drawable.pScreen, &extents, 1);
|
return REGION_CREATE(pWin->drawable.pScreen, &extents, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static RegionPtr
|
RegionPtr
|
||||||
CreateClipShape (pWin)
|
CreateClipShape (pWin)
|
||||||
WindowPtr pWin;
|
WindowPtr pWin;
|
||||||
{
|
{
|
||||||
|
@ -880,7 +880,7 @@ ProcShapeSelectInput (client)
|
||||||
* deliver the event
|
* deliver the event
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static void
|
void
|
||||||
SendShapeNotify (pWin, which)
|
SendShapeNotify (pWin, which)
|
||||||
WindowPtr pWin;
|
WindowPtr pWin;
|
||||||
int which;
|
int which;
|
||||||
|
|
Loading…
Reference in New Issue