Lines Matching refs:polys
1356 Poly* polys = nullptr; in tessellate() local
1423 leftPoly = this->makePoly(&polys, leftPoly->lastVertex(), in tessellate()
1427 rightPoly = this->makePoly(&polys, rightPoly->lastVertex(), in tessellate()
1447 Poly* poly = this->makePoly(&polys, v, winding); in tessellate()
1464 return polys; in tessellate()
1525 void* GrTriangulator::polysToTriangles(Poly* polys, void* data, in polysToTriangles() argument
1527 for (Poly* poly = polys; poly; poly = poly->fNext) { in polysToTriangles()
1585 int64_t GrTriangulator::CountPoints(Poly* polys, SkPathFillType overrideFillType) { in CountPoints() argument
1587 for (Poly* poly = polys; poly; poly = poly->fNext) { in CountPoints()
1597 int GrTriangulator::polysToTriangles(Poly* polys, GrEagerVertexAllocator* vertexAllocator) const { in polysToTriangles() argument
1598 int64_t count64 = CountPoints(polys, fPath.getFillType()); in polysToTriangles()
1615 void* end = this->polysToTriangles(polys, verts, fPath.getFillType()); in polysToTriangles()