Lines Matching refs:polys
1587 Poly* polys = nullptr; in tessellate() local
1650 leftPoly = new_poly(&polys, leftPoly->lastVertex(), in tessellate()
1654 rightPoly = new_poly(&polys, rightPoly->lastVertex(), in tessellate()
1673 Poly* poly = new_poly(&polys, v, winding, alloc); in tessellate()
1688 return polys; in tessellate()
2251 void* polys_to_triangles(Poly* polys, SkPath::FillType fillType, bool emitCoverage, void* data) { in polys_to_triangles() argument
2252 for (Poly* poly = polys; poly; poly = poly->fNext) { in polys_to_triangles()
2283 int64_t count_points(Poly* polys, SkPath::FillType fillType) { in count_points() argument
2285 for (Poly* poly = polys; poly; poly = poly->fNext) { in count_points()
2332 Poly* polys = path_to_polys(path, tolerance, clipBounds, contourCnt, alloc, antialias, in PathToTriangles() local
2335 int64_t count64 = count_points(polys, fillType); in PathToTriangles()
2351 void* end = polys_to_triangles(polys, fillType, antialias, verts); in PathToTriangles()
2370 Poly* polys = path_to_polys(path, tolerance, clipBounds, contourCnt, alloc, false, &isLinear, in PathToVertices() local
2373 int64_t count64 = count_points(polys, fillType); in PathToVertices()
2384 for (Poly* poly = polys; poly; poly = poly->fNext) { in PathToVertices()