Lines Matching refs:bounds
1092 BoxRec bounds;
1096 miTrapezoidBounds (ntrap, traps, &bounds);
1098 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1135 width = bounds.x2 - bounds.x1;
1136 height = bounds.y2 - bounds.y1;
1145 -bounds.x1, -bounds.y1);
1152 xRel = bounds.x1 + xSrc - xDst;
1153 yRel = bounds.y1 + ySrc - yDst;
1155 xRel, yRel, 0, 0, bounds.x1, bounds.y1,
1156 bounds.x2 - bounds.x1,
1157 bounds.y2 - bounds.y1);
1191 BoxRec bounds;
1195 miTriangleBounds (ntri, tris, &bounds);
1197 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1217 int width = bounds.x2 - bounds.x1;
1218 int height = bounds.y2 - bounds.y1;
1245 (*ps->AddTriangles) (pPicture, -bounds.x1, -bounds.y1, ntri, tris);
1249 xRel = bounds.x1 + xSrc - xDst;
1250 yRel = bounds.y1 + ySrc - yDst;
1252 xRel, yRel, 0, 0, bounds.x1, bounds.y1,
1253 bounds.x2 - bounds.x1, bounds.y2 - bounds.y1);