Lines Matching defs:fPath
99 SkPath fPath;
111 SkParsePath::FromSVGString(str, &fPath);
113 fPath.addCircle(0, 0, SkIntToScalar(50), SkPathDirection::kCW);
114 fPath.addCircle(0, SkIntToScalar(-50), SkIntToScalar(30), SkPathDirection::kCW);
117 scale_to_width(&fPath, fWidth);
118 const SkRect& bounds = fPath.getBounds();
119 fPath.offset(-bounds.fLeft, -bounds.fTop);
135 canvas->drawPath(fPath, *paint);
189 fPath = p;
190 fPath.offset(100, 0);
193 fPath.setFillType(SkPathFillType::kWinding);
196 canvas->translate(0, fPath.getBounds().height() * 5 / 4);
197 fPath.setFillType(SkPathFillType::kEvenOdd);