Searched refs:RoundEffect (Results 1 – 6 of 6) sorted by relevance
16 RoundEffect::RoundEffect(sk_sp<GeometryNode> child) in RoundEffect() function in sksg::RoundEffect21 RoundEffect::~RoundEffect() { in ~RoundEffect()25 void RoundEffect::onClip(SkCanvas* canvas, bool antiAlias) const { in onClip()29 void RoundEffect::onDraw(SkCanvas* canvas, const SkPaint& paint) const { in onDraw()35 bool RoundEffect::onContains(const SkPoint& p) const { in onContains()39 SkPath RoundEffect::onAsPath() const { in onAsPath()43 SkRect RoundEffect::onRevalidate(InvalidationController* ic, const SkMatrix& ctm) { in onRevalidate()
16 RoundEffect::RoundEffect(sk_sp<GeometryNode> child) in RoundEffect() function in sksg::RoundEffect21 RoundEffect::~RoundEffect() { in ~RoundEffect()25 void RoundEffect::onClip(SkCanvas* canvas, bool antiAlias) const { in onClip()29 void RoundEffect::onDraw(SkCanvas* canvas, const SkPaint& paint) const { in onDraw()35 SkPath RoundEffect::onAsPath() const { in onAsPath()39 SkRect RoundEffect::onRevalidate(InvalidationController* ic, const SkMatrix& ctm) { in onRevalidate()
20 class RoundEffect final : public GeometryNode {22 static sk_sp<RoundEffect> Make(sk_sp<GeometryNode> child) { in Make()23 return child ? sk_sp<RoundEffect>(new RoundEffect(std::move(child))) : nullptr; in Make()26 ~RoundEffect() override;38 explicit RoundEffect(sk_sp<GeometryNode>);
20 class RoundEffect final : public GeometryNode {22 static sk_sp<RoundEffect> Make(sk_sp<GeometryNode> child) { in Make()23 return child ? sk_sp<RoundEffect>(new RoundEffect(std::move(child))) : nullptr; in Make()26 ~RoundEffect() override;39 explicit RoundEffect(sk_sp<GeometryNode>);
348 const auto roundEffect = sksg::RoundEffect::Make(std::move(g)); in AttachRoundGeometryEffect()