Home | History | Annotate | Download | only in bench

Lines Matching defs:pts

17 static int rand_pts(SkRandom& rand, SkPoint pts[4]) {
22 pts[i].fX = rand.nextSScalar1();
23 pts[i].fY = rand.nextSScalar1();
40 SkPoint pts[4];
41 int n = rand_pts(rand, pts);
44 fPath.moveTo(pts[0]);
47 fPath.lineTo(pts[1]);
50 fPath.quadTo(pts[1], pts[2]);
53 fPath.cubicTo(pts[1], pts[2], pts[3]);
73 SkPoint pts[4];
75 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }
81 SkPoint pts[4];
83 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { }