diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-06 15:25:49 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-06 15:25:49 -0700 |
commit | 80b8deb1e4f9d0b856106031c6a7a629cca7552c (patch) | |
tree | 904372df192e3894d3418fd5adaaa0f41487a5f4 /pixman/src/fbedgeimp.h | |
parent | 28d47d332aafa81bcbc669603357298cb0a14322 (diff) |
Remove extraneous whitespace from "blank" lines.
This patch was produced with the following (GNU) sed script:
sed -i -r -e 's/^[ \t]+$//'
run on all *.[ch] files within cairo.
Diffstat (limited to 'pixman/src/fbedgeimp.h')
-rw-r--r-- | pixman/src/fbedgeimp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pixman/src/fbedgeimp.h b/pixman/src/fbedgeimp.h index aa9ca90f..121c2d76 100644 --- a/pixman/src/fbedgeimp.h +++ b/pixman/src/fbedgeimp.h @@ -34,14 +34,14 @@ rasterizeEdges (FbBits *buf, { xFixed y = t; FbBits *line; - + line = buf + xFixedToInt (y) * stride; - + for (;;) { xFixed lx, rx; int lxi, rxi; - + /* clip X */ lx = l->x; if (lx < 0) @@ -49,7 +49,7 @@ rasterizeEdges (FbBits *buf, rx = r->x; if (xFixedToInt (rx) >= width) rx = IntToxFixed (width); - + /* Skip empty (or backwards) sections */ if (rx > lx) { |