Lines Matching refs:pts
18 static int rand_pts(SkRandom& rand, SkPoint pts[4]) { in rand_pts()
23 pts[i].fX = rand.nextSScalar1(); in rand_pts()
24 pts[i].fY = rand.nextSScalar1(); in rand_pts()
41 SkPoint pts[4]; in PathIterBench() local
42 int n = rand_pts(rand, pts); in PathIterBench()
45 fPath.moveTo(pts[0]); in PathIterBench()
48 fPath.lineTo(pts[1]); in PathIterBench()
51 fPath.quadTo(pts[1], pts[2]); in PathIterBench()
54 fPath.cubicTo(pts[1], pts[2], pts[3]); in PathIterBench()
74 SkPoint pts[4]; in onDraw() local
76 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { } in onDraw()
82 SkPoint pts[4]; in onDraw() local
84 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { } in onDraw()