Lines Matching refs:rightPoly
1545 Poly* rightPoly; in tessellate() local
1548 rightPoly = v->fLastEdgeAbove->fRightPoly; in tessellate()
1551 rightPoly = rightEnclosingEdge ? rightEnclosingEdge->fLeftPoly : nullptr; in tessellate()
1569 if (rightPoly) { in tessellate()
1570 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, Poly::kLeft_Side, alloc); in tessellate()
1584 if (leftPoly && rightPoly && leftPoly != rightPoly) { in tessellate()
1585 SkASSERT(leftPoly->fPartner == nullptr && rightPoly->fPartner == nullptr); in tessellate()
1586 rightPoly->fPartner = leftPoly; in tessellate()
1587 leftPoly->fPartner = rightPoly; in tessellate()
1593 if (leftPoly && rightPoly) { in tessellate()
1594 if (leftPoly == rightPoly) { in tessellate()
1600 rightPoly = new_poly(&polys, rightPoly->lastVertex(), in tessellate()
1601 rightPoly->fWinding, alloc); in tessellate()
1602 rightEnclosingEdge->fLeftPoly = rightPoly; in tessellate()
1607 rightPoly = rightPoly->addEdge(join, Poly::kLeft_Side, alloc); in tessellate()
1624 v->fLastEdgeBelow->fRightPoly = rightPoly; in tessellate()