aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/effects
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-07-22 22:12:59 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-24 12:53:19 +0000
commit40e7e655341c5bf56e398cd2f5902dda79d702a0 (patch)
tree1f4e887f232d53e24a9cdf791eea8660c9dac70b /include/effects
parent71f867c2294655ccf8981500ad5a3beefb71295e (diff)
remove (unused?) arcto patheffect
Bug: skia: Change-Id: I80943cc495eb1edce839387f4b9512a66a4e5c11 Reviewed-on: https://skia-review.googlesource.com/25981 Reviewed-by: Cary Clark <caryclark@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'include/effects')
-rw-r--r--include/effects/SkArcToPathEffect.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/include/effects/SkArcToPathEffect.h b/include/effects/SkArcToPathEffect.h
deleted file mode 100644
index fcf4a3a5dc..0000000000
--- a/include/effects/SkArcToPathEffect.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2014 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkArcToPathEffect_DEFINED
-#define SkArcToPathEffect_DEFINED
-
-#include "SkPathEffect.h"
-
-class SK_API SkArcToPathEffect : public SkPathEffect {
-public:
- /** radius must be > 0 to have an effect. It specifies the distance from each corner
- that should be "rounded".
- */
- static sk_sp<SkPathEffect> Make(SkScalar radius) {
- if (radius <= 0) {
- return NULL;
- }
- return sk_sp<SkPathEffect>(new SkArcToPathEffect(radius));
- }
-
- bool filterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*) const override;
-
- SK_TO_STRING_OVERRIDE()
- SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkArcToPathEffect)
-
-protected:
- explicit SkArcToPathEffect(SkScalar radius);
- void flatten(SkWriteBuffer&) const override;
-
-private:
- SkScalar fRadius;
-
- typedef SkPathEffect INHERITED;
-};
-
-#endif