summaryrefslogtreecommitdiff
path: root/pixman/src/fbedgeimp.h
diff options
context:
space:
mode:
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)
{