Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrTriangulator.cpp1270 Poly* rightPoly; in tessellate() local
1273 rightPoly = v->fLastEdgeAbove->fRightPoly; in tessellate()
1276 rightPoly = rightEnclosingEdge ? rightEnclosingEdge->fLeftPoly : nullptr; in tessellate()
1298 if (rightPoly) { in tessellate()
1299 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, kLeft_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()
[all …]
/external/skqp/src/gpu/
DGrTessellator.cpp1545 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()
[all …]