From a439334b6e758d38501e225e2e5d0ab73e2fb6eb Mon Sep 17 00:00:00 2001 From: reed Date: Fri, 18 Mar 2016 11:22:57 -0700 Subject: Reland of "switch patheffects over to sk_sp (patchset #5 id:80001 of https://codereview.chromium.org/1813553005/ )" This reverts commit f28ad894272018fd2855e3f77ea1236ea0cce1c0. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1813123003 TBR= Review URL: https://codereview.chromium.org/1813123003 --- gm/pathcontourstart.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gm/pathcontourstart.cpp') diff --git a/gm/pathcontourstart.cpp b/gm/pathcontourstart.cpp index de3644c9f1..dbda7c3cae 100644 --- a/gm/pathcontourstart.cpp +++ b/gm/pathcontourstart.cpp @@ -26,14 +26,11 @@ public: intervals.push_back(len); } - SkAutoTUnref effect( - SkDashPathEffect::Create(intervals.begin(), intervals.count(), 0)); - fDashPaint.setAntiAlias(true); fDashPaint.setStyle(SkPaint::kStroke_Style); fDashPaint.setStrokeWidth(6); fDashPaint.setColor(0xff008000); - fDashPaint.setPathEffect(effect); + fDashPaint.setPathEffect(SkDashPathEffect::Make(intervals.begin(), intervals.count(), 0)); fPointsPaint.setColor(0xff800000); fPointsPaint.setStrokeWidth(3); -- cgit v1.2.3