Home | History | Annotate | Download | only in samplecode

Lines Matching full:fpath

100     SkPath      fPath;
112 SkParsePath::FromSVGString(str, &fPath);
114 fPath.addCircle(0, 0, SkIntToScalar(50), SkPath::kCW_Direction);
115 fPath.addCircle(0, SkIntToScalar(-50), SkIntToScalar(30), SkPath::kCW_Direction);
118 scale_to_width(&fPath, fWidth);
119 const SkRect& bounds = fPath.getBounds();
120 fPath.offset(-bounds.fLeft, -bounds.fTop);
144 canvas->drawPath(fPath, *paint);
200 fPath = p;
201 fPath.offset(100, 0);
204 fPath.setFillType(SkPath::kWinding_FillType);
207 canvas->translate(0, fPath.getBounds().height() * 5 / 4);
208 fPath.setFillType(SkPath::kEvenOdd_FillType);