Home | History | Annotate | Download | only in gpu

Lines Matching refs:fPathEffect

96         fPathEffect = that.fPathEffect;
104 fPathEffect.reset(nullptr);
113 bool isSimpleFill() const { return fStrokeRec.isFillStyle() && !fPathEffect; }
116 bool isSimpleHairline() const { return fStrokeRec.isHairlineStyle() && !fPathEffect; }
118 SkPathEffect* pathEffect() const { return fPathEffect.get(); }
119 sk_sp<SkPathEffect> refPathEffect() const { return fPathEffect; }
121 bool hasPathEffect() const { return SkToBool(fPathEffect.get()); }
123 bool hasNonDashPathEffect() const { return fPathEffect.get() && !this->isDashed(); }
211 sk_sp<SkPathEffect> fPathEffect;