Lines Matching refs:SkPathEffect
8 #include "include/core/SkPathEffect.h"
17 sk_sp<SkPathEffect> pe(SkCornerPathEffect::Make(1.0));
18 SkPathEffect::DashInfo info;
20 SkPathEffect::DashType dashType = pe->asADash(&info);
21 REPORTER_ASSERT(reporter, SkPathEffect::kNone_DashType == dashType);
27 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
29 SkPathEffect::DashType dashType = pe->asADash(nullptr);
30 REPORTER_ASSERT(reporter, SkPathEffect::kDash_DashType == dashType);
38 sk_sp<SkPathEffect> pe(SkDashPathEffect::Make(inIntervals, 4, phase));
40 SkPathEffect::DashInfo info;
42 SkPathEffect::DashType dashType = pe->asADash(&info);
43 REPORTER_ASSERT(reporter, SkPathEffect::kDash_DashType == dashType);