Lines Matching refs:leftPoly
1269 Poly* leftPoly; in tessellate() local
1272 leftPoly = v->fFirstEdgeAbove->fLeftPoly; in tessellate()
1275 leftPoly = leftEnclosingEdge ? leftEnclosingEdge->fRightPoly : nullptr; in tessellate()
1295 if (leftPoly) { in tessellate()
1296 leftPoly = leftPoly->addEdge(v->fFirstEdgeAbove, kRight_Side, fAlloc); in tessellate()
1313 if (leftPoly && rightPoly && leftPoly != rightPoly) { in tessellate()
1314 SkASSERT(leftPoly->fPartner == nullptr && rightPoly->fPartner == nullptr); in tessellate()
1315 rightPoly->fPartner = leftPoly; in tessellate()
1316 leftPoly->fPartner = rightPoly; in tessellate()
1322 if (leftPoly && rightPoly) { in tessellate()
1323 if (leftPoly == rightPoly) { in tessellate()
1324 if (leftPoly->fTail && leftPoly->fTail->fSide == kLeft_Side) { in tessellate()
1325 leftPoly = this->makePoly(&polys, leftPoly->lastVertex(), in tessellate()
1326 leftPoly->fWinding); in tessellate()
1327 leftEnclosingEdge->fRightPoly = leftPoly; in tessellate()
1334 Edge* join = fAlloc->make<Edge>(leftPoly->lastVertex(), v, 1, in tessellate()
1336 leftPoly = leftPoly->addEdge(join, kRight_Side, fAlloc); in tessellate()
1341 leftEdge->fLeftPoly = leftPoly; in tessellate()