summaryrefslogtreecommitdiff
path: root/pixman/src/fbedgeimp.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 15:25:49 -0700
commit80b8deb1e4f9d0b856106031c6a7a629cca7552c (patch)
tree904372df192e3894d3418fd5adaaa0f41487a5f4 /pixman/src/fbedgeimp.h
parent28d47d332aafa81bcbc669603357298cb0a14322 (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.h8
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)
{