commit | f28ad894272018fd2855e3f77ea1236ea0cce1c0 | [log] [tgz] |
---|---|---|
author | reed <reed@google.com> | Fri Mar 18 10:17:27 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Fri Mar 18 10:17:27 2016 -0700 |
tree | 25dfb6f13e3bbbde1c9d7af7b41ea39b2df78dd4 | |
parent | 9fbee18f691a0afed1e38a851048ce06063505ed [diff] [blame] |
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
diff --git a/src/effects/SkArcToPathEffect.cpp b/src/effects/SkArcToPathEffect.cpp index c660de9..06cba96 100644 --- a/src/effects/SkArcToPathEffect.cpp +++ b/src/effects/SkArcToPathEffect.cpp
@@ -62,7 +62,7 @@ } SkFlattenable* SkArcToPathEffect::CreateProc(SkReadBuffer& buffer) { - return SkArcToPathEffect::Make(buffer.readScalar()).release(); + return SkArcToPathEffect::Create(buffer.readScalar()); } void SkArcToPathEffect::flatten(SkWriteBuffer& buffer) const {