HomeSort by relevance Sort by last modified time
    Searched refs:fPath (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium_org/third_party/skia/src/animator/
SkPathParts.cpp 16 SkPathPart::SkPathPart() : fPath(NULL) {
20 fPath->dirty();
24 return fPath;
31 fPath = (SkDrawPath*) parent;
51 fPath->fPath.moveTo(x, y);
68 fPath->fPath.rMoveTo(x, y);
89 fPath->fPath.lineTo(x, y)
    [all...]
SkParseSVGPath.cpp 28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
33 fPath.getLastPt(&c);
44 fPath.quadTo(mid,q);
50 fPath.quadTo(mid,p2);
114 fPath.reset();
145 fPath.moveTo(points[0]);
151 fPath.lineTo(points[0]);
157 fPath.lineTo(x, c.fY);
164 fPath.lineTo(c.fX, y);
182 quadApprox(fPath, points[0], points[1], points[2])
    [all...]
SkDrawPath.cpp 103 return fPath;
111 fPath.reset();
116 return fPath;
147 value->fOperand.fS32 = (int) fPath.getFillType();
172 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
199 fPath.reset();
200 fPath.moveTo(points[0], points[1]);
203 fPath.lineTo(points[index], points[index+1]);
219 fPath.close();
SkDrawClip.cpp 36 maker.fCanvas->clipPath(path->fPath);
  /external/chromium_org/third_party/skia/bench/
CoverageBench.cpp 20 SkPath fPath;
31 fPath.moveTo(0, 0);
32 fPath.quadTo(500, 0, 500, 500);
33 fPath.quadTo(250, 0, 0, 500);
38 fRC.setRect(fPath.getBounds().round());
54 fDraw.drawPathCoverage(fPath, fPaint);
58 fDraw.drawPath(fPath, fPaint);
PathIterBench.cpp 30 SkPath fPath;
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]);
71 SkPath::RawIter iter(fPath);
79 SkPath::Iter iter(fPath, false);
  /external/chromium_org/third_party/skia/samplecode/
SamplePath.cpp 87 SkPath fPath[6];
113 fPath[0].moveTo(SkIntToScalar(40), SkIntToScalar(70));
114 fPath[0].lineTo(SkIntToScalar(70), SkIntToScalar(70) + SK_Scalar1/1);
115 fPath[0].lineTo(SkIntToScalar(110), SkIntToScalar(70));
117 fPath[1].moveTo(SkIntToScalar(40), SkIntToScalar(70));
118 fPath[1].lineTo(SkIntToScalar(70), SkIntToScalar(70) - SK_Scalar1/1);
119 fPath[1].lineTo(SkIntToScalar(110), SkIntToScalar(70));
121 fPath[2].moveTo(SkIntToScalar(V), SkIntToScalar(V));
122 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(V));
123 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(50))
    [all...]
SampleStrokePath.cpp 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)
    [all...]
SampleCull.cpp 116 fPath.moveTo(x, y);
118 fPath.lineTo(x, y);
122 subdivide(&fPath, bump);
123 subdivide(&fPath, bump);
124 subdivide(&fPath, bump);
125 fPoints = getpts(fPath, &fPtCount);
163 canvas->drawPath(fPath, paint);
188 SkPath fPath;
SampleEffects.cpp 65 SkPath fPath;
79 fPath.moveTo(pts[0], pts[1]);
81 fPath.lineTo(pts[i], pts[i+1]);
111 canvas->drawPath(fPath, fPaint[i]);
SampleFillType.cpp 20 SkPath fPath;
24 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
25 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
SamplePathEffects.cpp 102 SkPath fPath;
112 fPath.moveTo(x, y);
117 fPath.moveTo(x, tmpY);
119 fPath.lineTo(x, tmpY);
128 fPath.addRoundRect(oval, SkIntToScalar(8), SkIntToScalar(8));
156 canvas->drawPath(fPath, paint);
161 canvas->drawPath(fPath, paint);
168 canvas->drawPath(fPath, paint);
174 canvas->drawPath(fPath, paint);
182 canvas->drawPath(fPath, paint)
    [all...]
SampleTextOnPath.cpp 93 SkPath fPath;
100 fPath.addOval(r);
101 fPath.offset(SkIntToScalar(-50), SkIntToScalar(-50));
128 canvas->drawTextOnPathHV(text, len, fPath,
132 canvas->drawTextOnPathHV(text, len, fPath,
136 canvas->drawTextOnPathHV(text, len, fPath,
142 canvas->drawPath(fPath, paint);
SampleMovie.cpp 56 SkPath fPath;
  /external/chromium_org/third_party/skia/include/gpu/
GrGlyph.h 27 SkPath* fPath;
34 fPath = NULL;
41 if (fPath) {
42 delete fPath;
43 fPath = NULL;
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.h 17 : fPath(path.nativePath())
24 : fPath(&path)
51 const SkPath* fPath;
  /external/chromium_org/third_party/skia/experimental/Intersection/
LogoPlay.cpp 72 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
77 fPath.getLastPt(&c);
88 fPath.quadTo(mid,q);
94 fPath.quadTo(mid,p2);
208 SkPath fPath;
240 fPath.moveTo(points[0]);
246 fPath.lineTo(points[0]);
252 fPath.lineTo(x, c.fY);
259 fPath.lineTo(c.fX, y);
277 quadApprox(fPath, points[0], points[1], points[2])
    [all...]
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteGeometrySink.cpp 17 SkDWriteGeometrySink::SkDWriteGeometrySink(SkPath* path) : fRefCount(1), fPath(path) { }
50 fPath->setFillType(SkPath::kEvenOdd_FillType);
53 fPath->setFillType(SkPath::kWinding_FillType);
68 fPath->moveTo(startPoint.x, startPoint.y);
76 fPath->lineTo(points->x, points->y);
114 fPath->getLastPt(&lastPt);
124 fPath->quadTo(quadratic[1].x, quadratic[1].y,
127 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
136 fPath->close();
  /external/chromium_org/third_party/skia/gm/
filltypes.cpp 13 SkPath fPath;
20 if (fPath.isEmpty()) {
22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
filltypespersp.cpp 14 SkPath fPath;
19 if (fPath.isEmpty()) {
21 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
22 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
48 fPath.setFillType(ft);
52 canvas->drawPath(fPath, paint);
poly2poly.cpp 35 SkPath fPath;
51 void SkJSCanvas::beginPath() { fPath.reset(); }
53 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
57 fPath.lineTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
60 void SkJSCanvas::closePath() { fPath.close(); }
63 fTarget->drawPath(fPath, fFillPaint);
68 fTarget->drawPath(fPath, fStrokePaint);
linepaths.cpp 77 SkPath fPath;
81 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
82 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
119 this->drawPath(path.fPath, canvas, color, rect,
220 SkPath fPath;
224 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
225 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
226 path.fPath.close();
263 this->drawPath(path.fPath, canvas, color, rect,
quadpaths.cpp 77 SkPath fPath;
81 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
82 path.fPath.quadTo(50*SK_Scalar1, 20*SK_Scalar1,
120 this->drawPath(path.fPath, canvas, color, rect,
225 SkPath fPath;
229 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
230 path.fPath.quadTo(50*SK_Scalar1, 20*SK_Scalar1,
232 path.fPath.close();
269 this->drawPath(path.fPath, canvas, color, rect,
  /external/chromium_org/third_party/skia/src/core/
SkTextToPathIter.h 26 const SkPath* fPath; // may be null for "whitespace" glyphs
  /external/chromium_org/third_party/skia/include/utils/
SkCullPoints.h 65 SkPath* fPath;

Completed in 378 milliseconds

1 2 3 4