summaryrefslogtreecommitdiff
path: root/xserver/render/mitri.c
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2012-06-10 13:21:33 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2012-06-10 13:21:33 +0000
commit171e929a08098b6c844887adc43879c7579dc15f (patch)
tree6b4d2e3bc20dbd4dc9a1f031416e66614c53dd21 /xserver/render/mitri.c
parent68781b09de2c95b87ea898c4ecf3018dfb4460d2 (diff)
Update to xserver 1.12.2. tested by naddy@, krw@, mpi@.
Diffstat (limited to 'xserver/render/mitri.c')
-rw-r--r--xserver/render/mitri.c43
1 files changed, 21 insertions, 22 deletions
diff --git a/xserver/render/mitri.c b/xserver/render/mitri.c
index b322a7c62..922f22a6a 100644
--- a/xserver/render/mitri.c
+++ b/xserver/render/mitri.c
@@ -34,35 +34,34 @@
#include "mipict.h"
void
-miPointFixedBounds (int npoint, xPointFixed *points, BoxPtr bounds)
+miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds)
{
- bounds->x1 = xFixedToInt (points->x);
- bounds->x2 = xFixedToInt (xFixedCeil (points->x));
- bounds->y1 = xFixedToInt (points->y);
- bounds->y2 = xFixedToInt (xFixedCeil (points->y));
+ bounds->x1 = xFixedToInt(points->x);
+ bounds->x2 = xFixedToInt(xFixedCeil(points->x));
+ bounds->y1 = xFixedToInt(points->y);
+ bounds->y2 = xFixedToInt(xFixedCeil(points->y));
points++;
npoint--;
- while (npoint-- > 0)
- {
- INT16 x1 = xFixedToInt (points->x);
- INT16 x2 = xFixedToInt (xFixedCeil (points->x));
- INT16 y1 = xFixedToInt (points->y);
- INT16 y2 = xFixedToInt (xFixedCeil (points->y));
+ while (npoint-- > 0) {
+ INT16 x1 = xFixedToInt(points->x);
+ INT16 x2 = xFixedToInt(xFixedCeil(points->x));
+ INT16 y1 = xFixedToInt(points->y);
+ INT16 y2 = xFixedToInt(xFixedCeil(points->y));
- if (x1 < bounds->x1)
- bounds->x1 = x1;
- else if (x2 > bounds->x2)
- bounds->x2 = x2;
- if (y1 < bounds->y1)
- bounds->y1 = y1;
- else if (y2 > bounds->y2)
- bounds->y2 = y2;
- points++;
+ if (x1 < bounds->x1)
+ bounds->x1 = x1;
+ else if (x2 > bounds->x2)
+ bounds->x2 = x2;
+ if (y1 < bounds->y1)
+ bounds->y1 = y1;
+ else if (y2 > bounds->y2)
+ bounds->y2 = y2;
+ points++;
}
}
void
-miTriangleBounds (int ntri, xTriangle *tris, BoxPtr bounds)
+miTriangleBounds(int ntri, xTriangle * tris, BoxPtr bounds)
{
- miPointFixedBounds (ntri * 3, (xPointFixed *) tris, bounds);
+ miPointFixedBounds(ntri * 3, (xPointFixed *) tris, bounds);
}