Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/geometry/
DGrTriangulator.cpp1367 Poly* leftPoly; in tessellate() local
1370 leftPoly = v->fFirstEdgeAbove->fLeftPoly; in tessellate()
1373 leftPoly = leftEnclosingEdge ? leftEnclosingEdge->fRightPoly : nullptr; in tessellate()
1393 if (leftPoly) { in tessellate()
1394 leftPoly = leftPoly->addEdge(v->fFirstEdgeAbove, kRight_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.cpp1598 Poly* leftPoly; in tessellate() local
1601 leftPoly = v->fFirstEdgeAbove->fLeftPoly; in tessellate()
1604 leftPoly = leftEnclosingEdge ? leftEnclosingEdge->fRightPoly : nullptr; in tessellate()
1620 if (leftPoly) { in tessellate()
1621 leftPoly = leftPoly->addEdge(v->fFirstEdgeAbove, Poly::kRight_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 …]