From efdfd51b68a300d5c6e28743fe0344ca05d1cec9 Mon Sep 17 00:00:00 2001 From: reed Date: Mon, 4 Apr 2016 10:02:58 -0700 Subject: switch maskfilters to sk_sp BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1852113003 Review URL: https://codereview.chromium.org/1852113003 --- samplecode/SampleStrokePath.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'samplecode/SampleStrokePath.cpp') diff --git a/samplecode/SampleStrokePath.cpp b/samplecode/SampleStrokePath.cpp index f3cdee33a6..e69625e9bf 100644 --- a/samplecode/SampleStrokePath.cpp +++ b/samplecode/SampleStrokePath.cpp @@ -165,12 +165,10 @@ protected: kSolid_SkBlurStyle, }; for (int x = 0; x < 5; x++) { - SkMaskFilter* mf; SkScalar sigma = SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(4)); for (int y = 0; y < 10; y++) { if (x) { - mf = SkBlurMaskFilter::Create(gStyle[x - 1], sigma); - paint.setMaskFilter(mf)->unref(); + paint.setMaskFilter(SkBlurMaskFilter::Make(gStyle[x - 1], sigma)); } canvas->drawText("Title Bar", 9, x*SkIntToScalar(100), y*SkIntToScalar(30), paint); sigma *= 0.75f; -- cgit v1.2.3