Home | History | Annotate | Download | only in bench

Lines Matching refs:pts

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