From 9fbee18f691a0afed1e38a851048ce06063505ed Mon Sep 17 00:00:00 2001 From: reed Date: Fri, 18 Mar 2016 10:00:32 -0700 Subject: switch patheffects over to sk_sp BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1813553005 Review URL: https://codereview.chromium.org/1813553005 --- gm/textbloblooper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gm/textbloblooper.cpp') diff --git a/gm/textbloblooper.cpp b/gm/textbloblooper.cpp index 8d462c9b09..d54490272c 100644 --- a/gm/textbloblooper.cpp +++ b/gm/textbloblooper.cpp @@ -66,18 +66,18 @@ static void mask_filter(SkPaint* paint) { paint->setMaskFilter(mf)->unref(); } -static SkPathEffect* make_tile_effect() { +static sk_sp make_tile_effect() { SkMatrix m; m.setScale(1.f, 1.f); SkPath path; path.addCircle(0, 0, SkIntToScalar(5)); - return SkPath2DPathEffect::Create(m, path); + return SkPath2DPathEffect::Make(m, path); } static void path_effect(SkPaint* paint) { - paint->setPathEffect(make_tile_effect())->unref(); + paint->setPathEffect(make_tile_effect()); } static sk_sp make_shader(const SkRect& bounds) { -- cgit v1.2.3