Home
last modified time | relevance | path

Searched refs:strokePath (Results 1 – 20 of 20) sorted by relevance

/third_party/flutter/skia/docs/examples/
DPaint_getFillPath.cpp11 SkPath strokePath; in draw() local
12 strokePath.moveTo(.08f, .08f); in draw()
13 strokePath.quadTo(.09f, .08f, .17f, .17f); in draw()
19 strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision); in draw()
25 strokePath.transform(scale); in draw()
27 canvas->drawPath(strokePath, strokePaint); in draw()
DPaint_getFillPath_2.cpp10 SkPath strokePath; in draw() local
11 strokePath.moveTo(20, 20); in draw()
12 strokePath.lineTo(100, 100); in draw()
13 canvas->drawPath(strokePath, paint); in draw()
15 paint.getFillPath(strokePath, &fillPath); in draw()
/third_party/skia/docs/examples/
DPaint_getFillPath.cpp11 SkPath strokePath; in draw() local
12 strokePath.moveTo(.08f, .08f); in draw()
13 strokePath.quadTo(.09f, .08f, .17f, .17f); in draw()
19 strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision); in draw()
25 strokePath.transform(scale); in draw()
27 canvas->drawPath(strokePath, strokePaint); in draw()
DPaint_getFillPath_2.cpp10 SkPath strokePath; in draw() local
11 strokePath.moveTo(20, 20); in draw()
12 strokePath.lineTo(100, 100); in draw()
13 canvas->drawPath(strokePath, paint); in draw()
15 paint.getFillPath(strokePath, &fillPath); in draw()
/third_party/flutter/skia/gm/
Dgetpostextpath.cpp26 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function
50 strokePath(canvas, path);
71 strokePath(canvas, path);
/third_party/skia/gm/
Dgetpostextpath.cpp26 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function
50 strokePath(canvas, path);
71 strokePath(canvas, path);
/third_party/skia/experimental/graphite/src/
DDrawContext.cpp70 void DrawContext::strokePath(const Transform& localToDevice, in strokePath() function in skgpu::DrawContext
77 fPendingDraws->strokePath(localToDevice, shape, stroke, clip, order, paint); in strokePath()
DDrawContext.h66 void strokePath(const Transform& localToDevice,
DDrawList.cpp76 void DrawList::strokePath(const Transform& localToDevice, in strokePath() function in skgpu::DrawList
DDrawList.h177 void strokePath(const Transform& localToDevice,
DDevice.cpp301 fDC->strokePath(localToDevice, shape, stroke, clip, order, &shading); in drawShape()
/third_party/flutter/skia/src/core/
DSkStroke.h66 void strokePath(const SkPath& path, SkPath*) const;
DSkStrokeRec.cpp121 stroker.strokePath(src, dst); in applyToPath()
DSkScalerContext.cpp678 SkPath strokePath; in internalGetPath() local
679 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath()
680 localPath.swap(strokePath); in internalGetPath()
DSkStroke.cpp1379 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
/third_party/skia/src/core/
DSkStroke.h66 void strokePath(const SkPath& path, SkPath*) const;
DSkScalerContext.cpp463 SkPath strokePath; in generateMask() local
501 if (rec.needToApply() && rec.applyToPath(&strokePath, path)) { in generateMask()
502 pathToUse = &strokePath; in generateMask()
756 SkPath strokePath; in internalGetPath() local
757 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath()
758 localPath.swap(strokePath); in internalGetPath()
DSkStrokeRec.cpp121 stroker.strokePath(src, dst); in applyToPath()
DSkStroke.cpp1419 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
/third_party/flutter/skia/samplecode/
DSampleAAGeometry.cpp1516 SkPath strokePath; in onDrawContent() local
1518 canvas->drawPath(strokePath, fSkeletonPaint); in onDrawContent()