Searched refs:SkPath1DPathEffect (Results 1 – 12 of 12) sorted by relevance
/external/skia/src/effects/ |
D | Sk1DPathEffect.cpp | 34 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, in SkPath1DPathEffect() function in SkPath1DPathEffect 66 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() 144 SkScalar SkPath1DPathEffect::begin(SkScalar contourLength) const { in begin() 148 sk_sp<SkFlattenable> SkPath1DPathEffect::CreateProc(SkReadBuffer& buffer) { in CreateProc() 155 return SkPath1DPathEffect::Make(path, advance, phase, style); in CreateProc() 160 void SkPath1DPathEffect::flatten(SkWriteBuffer& buffer) const { in flatten() 169 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, in next() 196 void SkPath1DPathEffect::toString(SkString* str) const { in toString() 206 sk_sp<SkPathEffect> SkPath1DPathEffect::Make(const SkPath& path, SkScalar advance, SkScalar phase, in Make() 212 return sk_sp<SkPathEffect>(new SkPath1DPathEffect(path, advance, phase, style)); in Make()
|
/external/skia/include/effects/ |
D | Sk1DPathEffect.h | 42 class SK_API SkPath1DPathEffect : public Sk1DPathEffect { 65 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPath1DPathEffect) 68 SkPath1DPathEffect(const SkPath& path, SkScalar advance, SkScalar phase, Style);
|
/external/skia/samplecode/ |
D | SamplePathEffects.cpp | 41 auto outer = SkPath1DPathEffect::Make(path, 12, phase, SkPath1DPathEffect::kRotate_Style); in make_pe() 60 auto outer = SkPath1DPathEffect::Make( in make_warp_pe() 61 path, 12, phase, SkPath1DPathEffect::kMorph_Style); in make_warp_pe()
|
D | SampleFilterFuzz.cpp | 203 static SkPath1DPathEffect::Style make_path_1d_path_effect_style() { in make_path_1d_path_effect_style() 204 return static_cast<SkPath1DPathEffect::Style>(R((int)SkPath1DPathEffect::kLastEnum_Style + 1)); in make_path_1d_path_effect_style() 444 pathEffect = SkPath1DPathEffect::Make(make_path(), make_scalar(), make_scalar(), in make_path_effect()
|
D | SampleAll.cpp | 489 auto outer = SkPath1DPathEffect::Make(path, SkIntToScalar(12), in pathEffectTest() 490 gPhase, SkPath1DPathEffect::kRotate_Style); in pathEffectTest()
|
D | SampleSlides.cpp | 84 paint->setPathEffect(SkPath1DPathEffect::Make(path, SkIntToScalar(21), 0, in one_d_pe() 85 SkPath1DPathEffect::kRotate_Style)); in one_d_pe()
|
/external/skia/gm/ |
D | patheffects.cpp | 70 paint->setPathEffect(SkPath1DPathEffect::Make(path, SkIntToScalar(21), 0, in one_d_pe() 71 SkPath1DPathEffect::kRotate_Style)); in one_d_pe()
|
/external/skia/src/ports/ |
D | SkGlobalInitialization_default.cpp | 102 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkPath1DPathEffect) in InitEffects()
|
/external/skia/fuzz/ |
D | FilterFuzz.cpp | 190 static SkPath1DPathEffect::Style make_path_1d_path_effect_style() { in make_path_1d_path_effect_style() 192 fuzz->nextRange(&i, 0, (uint8_t)SkPath1DPathEffect::kLastEnum_Style); in make_path_1d_path_effect_style() 193 return static_cast<SkPath1DPathEffect::Style>(i); in make_path_1d_path_effect_style() 454 SkPath1DPathEffect::Style style = make_path_1d_path_effect_style(); in make_path_effect() 455 pathEffect = SkPath1DPathEffect::Make(path, a, b, style); in make_path_effect()
|
D | FuzzCanvas.cpp | 516 SkPath1DPathEffect::Style style; in make_fuzz_patheffect() 517 fuzz_enum_range(fuzz, &style, 0, SkPath1DPathEffect::kLastEnum_Style); in make_fuzz_patheffect() 518 return SkPath1DPathEffect::Make(path, advance, phase, style); in make_fuzz_patheffect()
|
/external/skia/site/user/api/ |
D | index.md | 62 …- [SkPath1DPathEffect](http://skia-doc.commondatastorage.googleapis.com/doxygen/doxygen/html/cla…
|
D | skpaint.md | 173 * SkPath1DPathEffect: create dash-like effects by replicating the specified path along the drawn …
|