Lines Matching refs:nextright
1183 nextleft, nextright; /* indices to second endpoints */ in miFillSppPoly() local
1209 nextleft = nextright = imin; in miFillSppPoly()
1238 if ((y > ptsIn[nextright].y + yFtrans) || in miFillSppPoly()
1239 (ISEQUAL(y, ptsIn[nextright].y + yFtrans) in miFillSppPoly()
1240 && Marked[nextright] != 1)) { in miFillSppPoly()
1241 Marked[nextright]++; in miFillSppPoly()
1242 right = nextright--; in miFillSppPoly()
1245 if (nextright < 0) in miFillSppPoly()
1246 nextright = count - 1; in miFillSppPoly()
1249 dy = ptsIn[nextright].y - ptsIn[right].y; in miFillSppPoly()
1251 mr = (ptsIn[nextright].x - ptsIn[right].x) / dy; in miFillSppPoly()
1261 i = (min(ptsIn[nextleft].y, ptsIn[nextright].y) + yFtrans) - y; in miFillSppPoly()
1264 if (Marked[nextleft] && Marked[nextright]) { in miFillSppPoly()