2 * Copyright © 1998 Keith Packard
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of Keith Packard not be used in
9 * advertising or publicity pertaining to distribution of the software without
10 * specific, written prior permission. Keith Packard makes no
11 * representations about the suitability of this software for any purpose. It
12 * is provided "as is" without express or implied warranty.
14 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
23 #ifdef HAVE_DIX_CONFIG_H
24 #include <dix-config.h>
30 fbPolyFillRect(DrawablePtr pDrawable
,
35 RegionPtr pClip
= fbGetCompositeClip(pGC
);
38 int extentX1
, extentX2
, extentY1
, extentY2
;
39 int fullX1
, fullX2
, fullY1
, fullY2
;
40 int partX1
, partX2
, partY1
, partY2
;
47 pextent
= REGION_EXTENTS(pGC
->pScreen
, pClip
);
48 extentX1
= pextent
->x1
;
49 extentY1
= pextent
->y1
;
50 extentX2
= pextent
->x2
;
51 extentY2
= pextent
->y2
;
54 fullX1
= prect
->x
+ xorg
;
55 fullY1
= prect
->y
+ yorg
;
56 fullX2
= fullX1
+ (int) prect
->width
;
57 fullY2
= fullY1
+ (int) prect
->height
;
60 if (fullX1
< extentX1
)
63 if (fullY1
< extentY1
)
66 if (fullX2
> extentX2
)
69 if (fullY2
> extentY2
)
72 if ((fullX1
>= fullX2
) || (fullY1
>= fullY2
))
74 n
= REGION_NUM_RECTS (pClip
);
79 fullX1
, fullY1
, fullX2
-fullX1
, fullY2
-fullY1
);
83 pbox
= REGION_RECTS(pClip
);
85 * clip the rectangle to each box in the clip region
86 * this is logically equivalent to calling Intersect()
105 if (partX1
< partX2
&& partY1
< partY2
)
106 fbFill (pDrawable
, pGC
,
108 partX2
- partX1
, partY2
- partY1
);