diff options
author | Arcady Goldmints-Orlov <arcadyg@nvidia.com> | 2007-06-20 16:31:55 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2007-06-20 16:46:22 -0700 |
commit | 5138f710a1574fef6f553f3fe2fccac0620d2584 (patch) | |
tree | 50c07803f529c67c6e84807ed0dda3679845b81b /fb | |
parent | c9b79a355845c895aca8303a39798264d80b6212 (diff) |
Fixed fbSolidBoxClipped() to fill the right place.
Changed an X2 to a Y1.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbfill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fb/fbfill.c b/fb/fbfill.c index 0d624fdbd..a3147ecc2 100644 --- a/fb/fbfill.c +++ b/fb/fbfill.c @@ -221,7 +221,7 @@ fbSolidBoxClipped (DrawablePtr pDrawable, if (!and) { if (pixman_fill (dst, dstStride, dstBpp, - partX1 + dstXoff, partX2 + dstYoff, (partX2 - partX1), (partY2 - partY1), + partX1 + dstXoff, partY1 + dstYoff, (partX2 - partX1), (partY2 - partY1), xor)) { fbFinishAccess (pDrawable); |