aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/text/GrSDFMaskFilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/text/GrSDFMaskFilter.cpp')
-rw-r--r--src/gpu/text/GrSDFMaskFilter.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gpu/text/GrSDFMaskFilter.cpp b/src/gpu/text/GrSDFMaskFilter.cpp
index 82adaaa4ac..ff79cdb3f0 100644
--- a/src/gpu/text/GrSDFMaskFilter.cpp
+++ b/src/gpu/text/GrSDFMaskFilter.cpp
@@ -26,6 +26,7 @@ public:
void computeFastBounds(const SkRect&, SkRect*) const override;
+ void toString(SkString* str) const override;
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(GrSDFMaskFilterImpl)
protected:
@@ -86,6 +87,10 @@ sk_sp<SkFlattenable> GrSDFMaskFilterImpl::CreateProc(SkReadBuffer& buffer) {
return GrSDFMaskFilter::Make();
}
+void GrSDFMaskFilterImpl::toString(SkString* str) const {
+ str->append("GrSDFMaskFilterImpl: ()");
+}
+
void gr_register_sdf_maskfilter_createproc() {
SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(GrSDFMaskFilterImpl)
}