/third_party/flutter/skia/docs/examples/ |
D | Paint_getFillPath.cpp | 11 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()
|
D | Paint_getFillPath_2.cpp | 10 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/ |
D | Paint_getFillPath.cpp | 11 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()
|
D | Paint_getFillPath_2.cpp | 10 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/ |
D | getpostextpath.cpp | 26 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function 50 strokePath(canvas, path); 71 strokePath(canvas, path);
|
/third_party/skia/gm/ |
D | getpostextpath.cpp | 26 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/ |
D | DrawContext.cpp | 70 void DrawContext::strokePath(const Transform& localToDevice, in strokePath() function in skgpu::DrawContext 77 fPendingDraws->strokePath(localToDevice, shape, stroke, clip, order, paint); in strokePath()
|
D | DrawContext.h | 66 void strokePath(const Transform& localToDevice,
|
D | DrawList.cpp | 76 void DrawList::strokePath(const Transform& localToDevice, in strokePath() function in skgpu::DrawList
|
D | DrawList.h | 177 void strokePath(const Transform& localToDevice,
|
D | Device.cpp | 301 fDC->strokePath(localToDevice, shape, stroke, clip, order, &shading); in drawShape()
|
/third_party/flutter/skia/src/core/ |
D | SkStroke.h | 66 void strokePath(const SkPath& path, SkPath*) const;
|
D | SkStrokeRec.cpp | 121 stroker.strokePath(src, dst); in applyToPath()
|
D | SkScalerContext.cpp | 678 SkPath strokePath; in internalGetPath() local 679 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath() 680 localPath.swap(strokePath); in internalGetPath()
|
D | SkStroke.cpp | 1379 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
|
/third_party/skia/src/core/ |
D | SkStroke.h | 66 void strokePath(const SkPath& path, SkPath*) const;
|
D | SkScalerContext.cpp | 463 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()
|
D | SkStrokeRec.cpp | 121 stroker.strokePath(src, dst); in applyToPath()
|
D | SkStroke.cpp | 1419 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
|
/third_party/flutter/skia/samplecode/ |
D | SampleAAGeometry.cpp | 1516 SkPath strokePath; in onDrawContent() local 1518 canvas->drawPath(strokePath, fSkeletonPaint); in onDrawContent()
|