diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-25 07:51:13 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-25 07:51:13 +0100 |
commit | a93da46ada76df7aa4559826e63ab1ac02bed4b3 (patch) | |
tree | 2b02ef32c62e05c1aa2e77593ab47057c3a74305 /mupdf/build.c | |
parent | 6796693d6b7db5933aaf5c6a33793abbfd3dd93c (diff) | |
download | mupdf-a93da46ada76df7aa4559826e63ab1ac02bed4b3.tar.xz |
handle inline resources
Diffstat (limited to 'mupdf/build.c')
-rw-r--r-- | mupdf/build.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mupdf/build.c b/mupdf/build.c index 06c09f84..72c1cfda 100644 --- a/mupdf/build.c +++ b/mupdf/build.c @@ -293,18 +293,11 @@ addpatternshape(pdf_gstate *gs, fz_node *shape, bbox.max.x += pat->bbox.max.x; bbox.max.y += pat->bbox.max.y; -printf("stamping pattern [%g %g] over [%g %g %g %g]\n", - pat->xstep, pat->ystep, - bbox.min.x, bbox.min.y, - bbox.max.x, bbox.max.y); - x0 = fz_floor(bbox.min.x / pat->xstep); y0 = fz_floor(bbox.min.y / pat->ystep); x1 = fz_ceil(bbox.max.x / pat->xstep); y1 = fz_ceil(bbox.max.y / pat->ystep); -printf(" %d,%d to %d,%d\n", x0, y0, x1, y1); - for (y = y0; y <= y1; y++) { for (x = x0; x <= x1; x++) |