Lines Matching refs:bounds
1124 BoxRec bounds; in exaTrapezoids() local
1131 miTrapezoidBounds(ntrap, traps, &bounds); in exaTrapezoids()
1133 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) in exaTrapezoids()
1140 bounds.x2 - bounds.x1, in exaTrapezoids()
1141 bounds.y2 - bounds.y1); in exaTrapezoids()
1148 (*ps->RasterizeTrapezoid) (pPicture, traps, -bounds.x1, -bounds.y1); in exaTrapezoids()
1151 xRel = bounds.x1 + xSrc - xDst; in exaTrapezoids()
1152 yRel = bounds.y1 + ySrc - yDst; in exaTrapezoids()
1154 xRel, yRel, 0, 0, bounds.x1, bounds.y1, in exaTrapezoids()
1155 bounds.x2 - bounds.x1, bounds.y2 - bounds.y1); in exaTrapezoids()
1188 BoxRec bounds; in exaTriangles() local
1195 miTriangleBounds(ntri, tris, &bounds); in exaTriangles()
1197 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) in exaTriangles()
1204 bounds.x2 - bounds.x1, in exaTriangles()
1205 bounds.y2 - bounds.y1); in exaTriangles()
1210 (*ps->AddTriangles) (pPicture, -bounds.x1, -bounds.y1, ntri, tris); in exaTriangles()
1213 xRel = bounds.x1 + xSrc - xDst; in exaTriangles()
1214 yRel = bounds.y1 + ySrc - yDst; in exaTriangles()
1216 xRel, yRel, 0, 0, bounds.x1, bounds.y1, in exaTriangles()
1217 bounds.x2 - bounds.x1, bounds.y2 - bounds.y1); in exaTriangles()