Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(711)

Unified Diff: src/pathops/SkOpSpan.h

Issue 75453003: optimize pathops coverage (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: remove unused code now that testing is complete Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/pathops/SkOpSpan.h
diff --git a/src/pathops/SkOpSpan.h b/src/pathops/SkOpSpan.h
index 50c76d2640cd8d33903646e64945d61151c5e446..81ede1c9ab7ce7f39e4398ff34cfb89ecd052681 100644
--- a/src/pathops/SkOpSpan.h
+++ b/src/pathops/SkOpSpan.h
@@ -12,10 +12,6 @@
class SkOpSegment;
struct SkOpSpan {
- enum PointMatch {
- kPointIsExact,
- kPointIsNear
- };
SkOpSegment* fOther;
SkPoint fPt; // computed when the curves are intersected
double fT;
@@ -31,7 +27,6 @@ struct SkOpSpan {
bool fSmall; // if set, consecutive points are almost equal
bool fTiny; // if set, span may still be considered once for edge following
bool fLoop; // set when a cubic loops back to this point
- bool fNear; // set if point is near segment end point
#ifdef SK_DEBUG
void dump() const;

Powered by Google App Engine
This is Rietveld 408576698