Home
last modified time | relevance | path

Searched refs:rightPoly (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/src/gpu/geometry/
DGrTriangulator.cpp1368 Poly* rightPoly; in tessellate() local
1371 rightPoly = v->fLastEdgeAbove->fRightPoly; in tessellate()
1374 rightPoly = rightEnclosingEdge ? rightEnclosingEdge->fLeftPoly : nullptr; in tessellate()
1396 if (rightPoly) { in tessellate()
1397 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, kLeft_Side, fAlloc); in tessellate()
1411 if (leftPoly && rightPoly && leftPoly != rightPoly) { in tessellate()
1412 SkASSERT(leftPoly->fPartner == nullptr && rightPoly->fPartner == nullptr); in tessellate()
1413 rightPoly->fPartner = leftPoly; in tessellate()
1414 leftPoly->fPartner = rightPoly; in tessellate()
1420 if (leftPoly && rightPoly) { in tessellate()
[all …]
/third_party/flutter/skia/src/gpu/
DGrTessellator.cpp1599 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()
[all …]