/third_party/skia/src/core/ |
D | SkPathEffect.cpp | 16 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() function in SkPathEffect 18 return this->filterPath(dst, src, rec, bounds, SkMatrix::I()); in filterPath() 21 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() function in SkPathEffect 106 if (fPE1->filterPath(&tmp, src, rec, cullRect, ctm)) { in onFilterPath() 109 return fPE0->filterPath(dst, *ptr, rec, cullRect, ctm); in onFilterPath() 165 bool filteredFirst = fPE0->filterPath(dst, src, rec, cullRect, ctm); in onFilterPath() 166 bool filteredSecond = fPE1->filterPath(dst, src, rec, cullRect, ctm); in onFilterPath()
|
D | SkMaskFilterBase.h | 229 bool filterPath(const SkPath& devPath, const SkMatrix& ctm, const SkRasterClip&, SkBlitter*,
|
D | SkPaint.cpp | 393 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect, ctm)) { in getFillPath()
|
D | SkMaskFilter.cpp | 233 bool SkMaskFilterBase::filterPath(const SkPath& devPath, const SkMatrix& matrix, in filterPath() function in SkMaskFilterBase
|
/third_party/flutter/skia/src/core/ |
D | SkPathEffect.cpp | 15 bool SkPathEffect::filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, in filterPath() function in SkPathEffect 106 if (fPE1->filterPath(&tmp, src, rec, cullRect)) { in onFilterPath() 109 return fPE0->filterPath(dst, *ptr, rec, cullRect); in onFilterPath() 162 return fPE0->filterPath(dst, src, rec, cullRect) | in onFilterPath() 163 fPE1->filterPath(dst, src, rec, cullRect); in onFilterPath()
|
D | SkMaskFilterBase.h | 214 bool filterPath(const SkPath& devPath, const SkMatrix& ctm, const SkRasterClip&, SkBlitter*,
|
D | SkPaint.cpp | 455 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) { in getFillPath()
|
/third_party/skia/include/core/ |
D | SkPathEffect.h | 87 bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect* cullR) const; 90 bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect* cullR,
|
/third_party/skia/modules/sksg/src/ |
D | SkSGGeometryEffect.cpp | 68 SkAssertResult(trim->filterPath(&path, path, &rec, nullptr)); in onRevalidateEffect() 126 dash_patheffect->filterPath(&path, path, &rec, nullptr); in onRevalidateEffect() 138 SkAssertResult(round->filterPath(&path, path, &rec, nullptr)); in onRevalidateEffect()
|
/third_party/flutter/skia/src/effects/ |
D | SkOpPathEffect.cpp | 25 if (!fOne->filterPath(&one, src, rec, cull)) { in onFilterPath() 32 if (!fTwo->filterPath(&two, src, rec, cull)) { in onFilterPath()
|
/third_party/flutter/skia/modules/sksg/src/ |
D | SkSGRoundEffect.cpp | 52 SkAssertResult(round->filterPath(&fRoundedPath, path, &rec, &childbounds)); in onRevalidate()
|
D | SkSGTrimEffect.cpp | 52 SkAssertResult(trim->filterPath(&fTrimmedPath, path, &rec, &childbounds)); in onRevalidate()
|
/third_party/skia/src/effects/ |
D | SkOpPathEffect.cpp | 27 if (!fOne->filterPath(&one, src, rec, cull, ctm)) { in onFilterPath() 34 if (!fTwo->filterPath(&two, src, rec, cull, ctm)) { in onFilterPath()
|
/third_party/flutter/skia/include/core/ |
D | SkPathEffect.h | 61 bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect* cullR) const;
|
/third_party/flutter/skia/samplecode/ |
D | SampleTextEffects.cpp | 133 pe->filterPath(&dstPath, path, &rec, nullptr); in drawdots()
|
/third_party/flutter/skia/src/gpu/ |
D | GrStyle.cpp | 151 } else if (!fPathEffect->filterPath(dst, src, strokeRec, nullptr)) { in applyPathEffect()
|
/third_party/skia/src/gpu/ |
D | GrStyle.cpp | 156 } else if (!fPathEffect->filterPath(dst, src, strokeRec, nullptr)) { in applyPathEffect()
|
/third_party/skia/modules/pathkit/ |
D | pathkit_wasm_bindings.cpp | 368 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyDash() 383 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyTrim()
|
/third_party/flutter/skia/modules/pathkit/ |
D | pathkit_wasm_bindings.cpp | 381 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyDash() 396 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyTrim()
|
/third_party/flutter/skia/tests/ |
D | DrawPathTest.cpp | 320 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, nullptr)); in test_crbug_165432()
|
/third_party/skia/tests/ |
D | DrawPathTest.cpp | 368 REPORTER_ASSERT(reporter, !dash->filterPath(&filteredPath, path, &rec, nullptr)); in test_crbug_165432()
|
/third_party/skia/experimental/graphite/src/ |
D | Device.cpp | 238 if (paint.getPathEffect()->filterPath(&dst, shape.asPath(), &newStyle, in drawShape()
|
/third_party/flutter/skia/bench/ |
D | DashBench.cpp | 199 fPE->filterPath(&dst, fPath, &rec, nullptr); in onDraw()
|
/third_party/skia/bench/ |
D | DashBench.cpp | 198 fPE->filterPath(&dst, fPath, &rec, nullptr); in onDraw()
|
/third_party/flutter/skia/modules/canvaskit/ |
D | canvaskit_bindings.cpp | 438 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyDash() 453 if (pe->filterPath(&path, path, &rec, nullptr)) { in ApplyTrim()
|