diff options
author | Adam Jackson <ajax@redhat.com> | 2008-07-24 09:00:22 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-07-24 15:46:08 -0400 |
commit | d6228cb22aa89b90834d80d98b91862c1fc01b54 (patch) | |
tree | 4e284d35f26e728cfe5c4502f25ddf1c5591aa58 /xfixes | |
parent | 990fc643ae90c034187707e7de414d80640ec6da (diff) |
Shape extension is built-in and mandatory.
Diffstat (limited to 'xfixes')
-rw-r--r--[-rwxr-xr-x] | xfixes/region.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/xfixes/region.c b/xfixes/region.c index d90b1e0ff..cac24b5da 100755..100644 --- a/xfixes/region.c +++ b/xfixes/region.c @@ -169,20 +169,16 @@ ProcXFixesCreateRegionFromWindow (ClientPtr client) } switch (stuff->kind) { case WindowRegionBounding: -#ifdef SHAPE pRegion = wBoundingShape(pWin); if (!pRegion) -#endif { pRegion = CreateBoundingShape (pWin); copy = FALSE; } break; case WindowRegionClip: -#ifdef SHAPE pRegion = wClipShape(pWin); if (!pRegion) -#endif { pRegion = CreateClipShape (pWin); copy = FALSE; @@ -678,7 +674,6 @@ typedef RegionPtr (*CreateDftPtr)(WindowPtr pWin); int ProcXFixesSetWindowShapeRegion (ClientPtr client) { -#ifdef SHAPE WindowPtr pWin; ScreenPtr pScreen; RegionPtr pRegion; @@ -753,9 +748,6 @@ ProcXFixesSetWindowShapeRegion (ClientPtr client) (*pScreen->SetShape) (pWin); SendShapeNotify (pWin, stuff->destKind); return (client->noClientException); -#else - return BadRequest; -#endif } int |