aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPathEffect.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2016-10-31 15:11:04 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-10-31 19:35:15 +0000
commit09d9435835f48b06954904f16d14c1c2eeaaad2e (patch)
tree717ad84a3204cdb81646e0d9dee23977965ce2e5 /include/core/SkPathEffect.h
parentfc49b403eb3353fdefe97672017df10b64dee95a (diff)
remove lots of legacy flags
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4209 Change-Id: I49ae36a9b2bb51a6470638d3264923ff4a4dea0a Reviewed-on: https://skia-review.googlesource.com/4209 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core/SkPathEffect.h')
-rw-r--r--include/core/SkPathEffect.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/core/SkPathEffect.h b/include/core/SkPathEffect.h
index f5ca9183a3..ff3fa01f36 100644
--- a/include/core/SkPathEffect.h
+++ b/include/core/SkPathEffect.h
@@ -193,12 +193,6 @@ public:
return sk_sp<SkPathEffect>(new SkComposePathEffect(outer, inner));
}
-#ifdef SK_SUPPORT_LEGACY_PATHEFFECT_PTR
- static SkPathEffect* Create(SkPathEffect* outer, SkPathEffect* inner) {
- return Make(sk_ref_sp(outer), sk_ref_sp(inner)).release();
- }
-#endif
-
virtual bool filterPath(SkPath* dst, const SkPath& src,
SkStrokeRec*, const SkRect*) const override;
@@ -243,11 +237,6 @@ public:
return sk_sp<SkPathEffect>(new SkSumPathEffect(first, second));
}
-#ifdef SK_SUPPORT_LEGACY_PATHEFFECT_PTR
- static SkPathEffect* Create(SkPathEffect* first, SkPathEffect* second) {
- return Make(sk_ref_sp(first), sk_ref_sp(second)).release();
- }
-#endif
virtual bool filterPath(SkPath* dst, const SkPath& src,
SkStrokeRec*, const SkRect*) const override;