Lines Matching defs:pts
44 void SkOpContourBuilder::addConic(SkPoint pts[3], SkScalar weight) {
46 fContour->addConic(pts, weight);
49 void SkOpContourBuilder::addCubic(SkPoint pts[4]) {
51 fContour->addCubic(pts);
54 void SkOpContourBuilder::addCurve(SkPath::Verb verb, const SkPoint pts[4], SkScalar weight) {
56 this->addLine(pts);
63 memcpy(ptStorage, pts, sizeof(SkPoint) * 3);
68 memcpy(ptStorage, pts, sizeof(SkPoint) * 3);
73 memcpy(ptStorage, pts, sizeof(SkPoint) * 4);
81 void SkOpContourBuilder::addLine(const SkPoint pts[2]) {
84 if (fLastLine[0] == pts[1] && fLastLine[1] == pts[0]) {
91 memcpy(fLastLine, pts, sizeof(fLastLine));
95 void SkOpContourBuilder::addQuad(SkPoint pts[3]) {
97 fContour->addQuad(pts);