aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects/Sk2DPathEffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/effects/Sk2DPathEffect.h')
-rw-r--r--include/effects/Sk2DPathEffect.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/effects/Sk2DPathEffect.h b/include/effects/Sk2DPathEffect.h
index 3bdf5ded30..841e5b8ab2 100644
--- a/include/effects/Sk2DPathEffect.h
+++ b/include/effects/Sk2DPathEffect.h
@@ -40,6 +40,8 @@ protected:
explicit Sk2DPathEffect(const SkMatrix& mat);
void flatten(SkWriteBuffer&) const override;
+ void toString(SkString* str) const override;
+
private:
SkMatrix fMatrix, fInverse;
bool fMatrixIsInvertible;
@@ -64,6 +66,8 @@ public:
virtual bool filterPath(SkPath* dst, const SkPath& src,
SkStrokeRec*, const SkRect*) const override;
+ void toString(SkString* str) const override;
+
Factory getFactory() const override { return CreateProc; }
protected:
@@ -94,6 +98,8 @@ public:
return sk_sp<SkPathEffect>(new SkPath2DPathEffect(matrix, path));
}
+ void toString(SkString* str) const override;
+
Factory getFactory() const override { return CreateProc; }
protected: