summaryrefslogtreecommitdiff
path: root/base/rect.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-11-16 10:46:23 +0100
committerTor Andersson <tor@ghostscript.com>2004-11-16 10:46:23 +0100
commitd4de3f89649314eb58f779763ee99b62688ff3ec (patch)
tree21d81bbe5a49df69c428e4e35b242e0ff07e27d8 /base/rect.c
parent3b425b8bf0c58e25da576ed86496171ea19240f9 (diff)
downloadmupdf-d4de3f89649314eb58f779763ee99b62688ff3ec.tar.xz
changed order of child nodes in over/mask
Diffstat (limited to 'base/rect.c')
-rw-r--r--base/rect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/rect.c b/base/rect.c
index a40701cc..6df6749a 100644
--- a/base/rect.c
+++ b/base/rect.c
@@ -44,10 +44,10 @@ fz_irect
fz_roundrect(fz_rect f)
{
fz_irect i;
- i.min.x = fz_floor(f.min.x);// - 1;
- i.min.y = fz_floor(f.min.y);// - 1;
- i.max.x = fz_ceil(f.max.x);// + 1;
- i.max.y = fz_ceil(f.max.y);// + 1;
+ i.min.x = fz_floor(f.min.x);
+ i.min.y = fz_floor(f.min.y);
+ i.max.x = fz_ceil(f.max.x);
+ i.max.y = fz_ceil(f.max.y);
return i;
}