Searched refs:fPath (Results 1 - 25 of 148) sorted by relevance

123456

/external/chromium_org/third_party/skia/src/animator/
H A DSkPathParts.cpp16 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
[all...]
H A DSkParseSVGPath.cpp28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2) argument
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, point
[all...]
H A DSkDrawPath.cpp103 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();
/external/skia/src/animator/
H A DSkPathParts.cpp16 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
[all...]
H A DSkParseSVGPath.cpp28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2) argument
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, point
[all...]
H A DSkDrawPath.cpp103 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();
/external/chromium_org/third_party/skia/bench/
H A DCoverageBench.cpp20 SkPath fPath; member in class:DrawPathBench
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);
H A DPathIterBench.cpp30 SkPath fPath; member in class:PathIterBench
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/skia/bench/
H A DCoverageBench.cpp20 SkPath fPath; member in class:DrawPathBench
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);
H A DPathIterBench.cpp30 SkPath fPath; member in class:PathIterBench
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/
H A DSamplePath.cpp87 SkPath fPath[6]; member in class:PathView
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[
[all...]
H A DSampleStrokePath.cpp100 SkPath fPath; member in class:StrokePathView
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
[all...]
H A DSampleCull.cpp116 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; member in class:CullView
/external/skia/samplecode/
H A DSamplePath.cpp87 SkPath fPath[6]; member in class:PathView
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[
[all...]
H A DSampleStrokePath.cpp100 SkPath fPath; member in class:StrokePathView
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
[all...]
/external/chromium_org/third_party/skia/include/gpu/
H A DGrGlyph.h27 SkPath* fPath; member in struct:GrGlyph
34 fPath = NULL;
41 if (fPath) {
42 delete fPath;
43 fPath = NULL;
/external/skia/include/gpu/
H A DGrGlyph.h26 SkPath* fPath; member in struct:GrGlyph
33 fPath = NULL;
40 if (fPath) {
41 delete fPath;
42 fPath = NULL;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpEdgeBuilder.h17 : fPath(path.nativePath())
24 : fPath(&path)
51 const SkPath* fPath; member in class:SkOpEdgeBuilder
/external/skia/src/pathops/
H A DSkOpEdgeBuilder.h17 : fPath(path.nativePath())
24 : fPath(&path)
51 const SkPath* fPath; member in class:SkOpEdgeBuilder
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLogoPlay.cpp72 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2) argument
77 fPath.getLastPt(&c);
88 fPath.quadTo(mid,q);
94 fPath.quadTo(mid,p2);
208 SkPath fPath; local
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, point
[all...]
/external/skia/experimental/Intersection/
H A DLogoPlay.cpp72 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2) argument
77 fPath.getLastPt(&c);
88 fPath.quadTo(mid,q);
94 fPath.quadTo(mid,p2);
208 SkPath fPath; local
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, point
[all...]
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp17 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/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp17 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/
H A Dfilltypes.cpp13 SkPath fPath; member in class:skiagm::FillTypeGM
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);
/external/skia/gm/
H A Dfilltypes.cpp13 SkPath fPath; member in class:skiagm::FillTypeGM
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);

Completed in 5615 milliseconds

123456