From f28ad894272018fd2855e3f77ea1236ea0cce1c0 Mon Sep 17 00:00:00 2001 From: reed Date: Fri, 18 Mar 2016 10:17:27 -0700 Subject: Revert of switch patheffects over to sk_sp (patchset #5 id:80001 of https://codereview.chromium.org/1813553005/ ) Reason for revert: some build breaks, possibly related to paint having to know what a patheffect is Original issue's description: > 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 > > Committed: https://skia.googlesource.com/skia/+/9fbee18f691a0afed1e38a851048ce06063505ed TBR=caryclark@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1817543002 --- gm/dashcircle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gm/dashcircle.cpp') diff --git a/gm/dashcircle.cpp b/gm/dashcircle.cpp index a02c7d0f7b..cddd913723 100644 --- a/gm/dashcircle.cpp +++ b/gm/dashcircle.cpp @@ -68,7 +68,7 @@ DEF_SIMPLE_GM(dashcircle, canvas, 900, 1200) { for (int index = 0; index < dashExample.length; ++index) { intervals[index] = dashExample.pattern[index] * dashLength; } - p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0)); + p.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref(); canvas->drawPath(circle, p); canvas->translate(0, radius * 2 + 50); } -- cgit v1.2.3