Lines Matching refs:path
38 SkPath path; in getRoundRect() local
41 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction); in getRoundRect()
43 texture = addTexture(entry, &path, paint); in getRoundRect()
62 SkPath path; in getCircle() local
63 path.addCircle(radius, radius, radius, SkPath::kCW_Direction); in getCircle()
65 texture = addTexture(entry, &path, paint); in getCircle()
84 SkPath path; in getOval() local
87 path.addOval(r, SkPath::kCW_Direction); in getOval()
89 texture = addTexture(entry, &path, paint); in getOval()
150 SkPath path; in getArc() local
154 path.moveTo(r.centerX(), r.centerY()); in getArc()
156 path.arcTo(r, startAngle, sweepAngle, !useCenter); in getArc()
158 path.close(); in getArc()
161 texture = addTexture(entry, &path, paint); in getArc()