aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPath.cpp
diff options
context:
space:
mode:
authorGravatar Cary Clark <caryclark@skia.org>2017-08-25 15:13:38 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-08-29 18:37:11 +0000
commit0461e9fa44e0cb6035f14be00430f7294da68993 (patch)
tree6635af7e7537281c3b471a02c55a5149d475a4cd /src/core/SkPath.cpp
parent4eaadf1c548c421b985af35f5da286db92955f63 (diff)
simplify path validate
Reduce path validation interfaces, deferring the harder work of rewriting the callers until later. R=reed@google.com,enne@chromium.org Change-Id: Iea56f1cd1be93bb1d96b50836a9bd3cd4872ad23 Reviewed-on: https://skia-review.googlesource.com/37541 Commit-Queue: Cary Clark <caryclark@google.com> Reviewed-by: Adrienne Walker <enne@chromium.org>
Diffstat (limited to 'src/core/SkPath.cpp')
-rw-r--r--src/core/SkPath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp
index 32ec2c560b..5dcca6fff1 100644
--- a/src/core/SkPath.cpp
+++ b/src/core/SkPath.cpp
@@ -2220,7 +2220,7 @@ void SkPath::dumpHex() const {
}
-bool SkPath::isValid() const {
+bool SkPath::isValidImpl() const {
if ((fFillType & ~3) != 0) {
return false;
}