Lines Matching refs:bounds
37 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds) in miPointFixedBounds() argument
39 bounds->x1 = xFixedToInt(points->x); in miPointFixedBounds()
40 bounds->x2 = xFixedToInt(xFixedCeil(points->x)); in miPointFixedBounds()
41 bounds->y1 = xFixedToInt(points->y); in miPointFixedBounds()
42 bounds->y2 = xFixedToInt(xFixedCeil(points->y)); in miPointFixedBounds()
51 if (x1 < bounds->x1) in miPointFixedBounds()
52 bounds->x1 = x1; in miPointFixedBounds()
53 else if (x2 > bounds->x2) in miPointFixedBounds()
54 bounds->x2 = x2; in miPointFixedBounds()
55 if (y1 < bounds->y1) in miPointFixedBounds()
56 bounds->y1 = y1; in miPointFixedBounds()
57 else if (y2 > bounds->y2) in miPointFixedBounds()
58 bounds->y2 = y2; in miPointFixedBounds()
64 miTriangleBounds(int ntri, xTriangle * tris, BoxPtr bounds) in miTriangleBounds() argument
66 miPointFixedBounds(ntri * 3, (xPointFixed *) tris, bounds); in miTriangleBounds()