Home | History | Annotate | Download | only in gpu

Lines Matching defs:polys

1533     Poly* polys = nullptr;
1596 leftPoly = new_poly(&polys, leftPoly->lastVertex(),
1600 rightPoly = new_poly(&polys, rightPoly->lastVertex(),
1619 Poly* poly = new_poly(&polys, v, winding, alloc);
1634 return polys;
2161 void* polys_to_triangles(Poly* polys, SkPath::FillType fillType, bool emitCoverage, void* data) {
2162 for (Poly* poly = polys; poly; poly = poly->fNext) {
2193 int64_t count_points(Poly* polys, SkPath::FillType fillType) {
2195 for (Poly* poly = polys; poly; poly = poly->fNext) {
2242 Poly* polys = path_to_polys(path, tolerance, clipBounds, contourCnt, alloc, antialias,
2245 int64_t count64 = count_points(polys, fillType);
2261 void* end = polys_to_triangles(polys, fillType, antialias, verts);
2280 Poly* polys = path_to_polys(path, tolerance, clipBounds, contourCnt, alloc, false, &isLinear,
2283 int64_t count64 = count_points(polys, fillType);
2294 for (Poly* poly = polys; poly; poly = poly->fNext) {