aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkPathPriv.h
diff options
context:
space:
mode:
authorGravatar reed <reed@chromium.org>2015-06-26 05:06:43 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-26 05:06:43 -0700
commit9730f4a663534009d216c2f6d834bd534dd44a3d (patch)
tree17cb01d25653d1695a4ca35f309c9ebff8cef968 /src/core/SkPathPriv.h
parentf9ad558943ee14bdff824ebfb33988bece8ed3db (diff)
Revert of added stroking support to GrAALinearizingConvexPathRenderer (patchset #6 id:100001 of https://codereview.chromium.org/1180903006/)
Reason for revert: speculative revert to try to fix DEPS roll (layouttests) Original issue's description: > added stroking support to GrAALinearizingConvexPathRenderer > > BUG=skia: > > Committed: https://skia.googlesource.com/skia/+/2436f191e6602953b32a51cf50f2d7a4e2af90fd TBR=bsalomon@google.com,robertphillips@google.com,ethannicholas@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1212833002
Diffstat (limited to 'src/core/SkPathPriv.h')
-rw-r--r--src/core/SkPathPriv.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/SkPathPriv.h b/src/core/SkPathPriv.h
index 934c730660..98e50e3025 100644
--- a/src/core/SkPathPriv.h
+++ b/src/core/SkPathPriv.h
@@ -55,10 +55,6 @@ public:
return computedDir == dir;
}
- static bool LastVerbIsClose(const SkPath& path) {
- int count = path.countVerbs();
- return count >= 1 && path.fPathRef->verbs()[~(count - 1)] == SkPath::Verb::kClose_Verb;
- }
};
#endif