diff options
Diffstat (limited to 'gm/textbloblooper.cpp')
-rw-r--r-- | gm/textbloblooper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gm/textbloblooper.cpp b/gm/textbloblooper.cpp index d54490272c..8d462c9b09 100644 --- a/gm/textbloblooper.cpp +++ b/gm/textbloblooper.cpp @@ -66,18 +66,18 @@ static void mask_filter(SkPaint* paint) { paint->setMaskFilter(mf)->unref(); } -static sk_sp<SkPathEffect> make_tile_effect() { +static SkPathEffect* make_tile_effect() { SkMatrix m; m.setScale(1.f, 1.f); SkPath path; path.addCircle(0, 0, SkIntToScalar(5)); - return SkPath2DPathEffect::Make(m, path); + return SkPath2DPathEffect::Create(m, path); } static void path_effect(SkPaint* paint) { - paint->setPathEffect(make_tile_effect()); + paint->setPathEffect(make_tile_effect())->unref(); } static sk_sp<SkShader> make_shader(const SkRect& bounds) { |