Lines Matching refs:rightPoly
1599 Poly* rightPoly; in tessellate() local
1602 rightPoly = v->fLastEdgeAbove->fRightPoly; in tessellate()
1605 rightPoly = rightEnclosingEdge ? rightEnclosingEdge->fLeftPoly : nullptr; in tessellate()
1623 if (rightPoly) { in tessellate()
1624 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, Poly::kLeft_Side, alloc); in tessellate()
1638 if (leftPoly && rightPoly && leftPoly != rightPoly) { in tessellate()
1639 SkASSERT(leftPoly->fPartner == nullptr && rightPoly->fPartner == nullptr); in tessellate()
1640 rightPoly->fPartner = leftPoly; in tessellate()
1641 leftPoly->fPartner = rightPoly; in tessellate()
1647 if (leftPoly && rightPoly) { in tessellate()
1648 if (leftPoly == rightPoly) { in tessellate()
1654 rightPoly = new_poly(&polys, rightPoly->lastVertex(), in tessellate()
1655 rightPoly->fWinding, alloc); in tessellate()
1656 rightEnclosingEdge->fLeftPoly = rightPoly; in tessellate()
1661 rightPoly = rightPoly->addEdge(join, Poly::kLeft_Side, alloc); in tessellate()
1678 v->fLastEdgeBelow->fRightPoly = rightPoly; in tessellate()