Lines Matching refs:pSeg
98 int nseg, xSegment *pSeg);
799 int nseg, xSegment *pSeg)
805 pGC->ops->PolySegment(dst, pGC, nseg, pSeg);
814 if (pSeg->x2 > pSeg->x1) {
815 box.x1 = pSeg->x1;
816 box.x2 = pSeg->x2;
818 box.x2 = pSeg->x1;
819 box.x1 = pSeg->x2;
822 if (pSeg->y2 > pSeg->y1) {
823 box.y1 = pSeg->y1;
824 box.y2 = pSeg->y2;
826 box.y2 = pSeg->y1;
827 box.y1 = pSeg->y2;
831 pSeg++;
832 if (pSeg->x2 > pSeg->x1) {
833 if (pSeg->x1 < box.x1) box.x1 = pSeg->x1;
834 if (pSeg->x2 > box.x2) box.x2 = pSeg->x2;
836 if (pSeg->x2 < box.x1) box.x1 = pSeg->x2;
837 if (pSeg->x1 > box.x2) box.x2 = pSeg->x1;
839 if (pSeg->y2 > pSeg->y1) {
840 if (pSeg->y1 < box.y1) box.y1 = pSeg->y1;
841 if (pSeg->y2 > box.y2) box.y2 = pSeg->y2;
843 if (pSeg->y2 < box.y1) box.y1 = pSeg->y2;
844 if (pSeg->y1 > box.y2) box.y2 = pSeg->y1;