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

Unified Diff: src/pathops/SkOpSpan.h

Issue 2275703003: remove point aliases (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 months 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
« no previous file with comments | « src/pathops/SkOpSegment.cpp ('k') | src/pathops/SkOpSpan.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pathops/SkOpSpan.h
diff --git a/src/pathops/SkOpSpan.h b/src/pathops/SkOpSpan.h
index 9e91f154ae471967b16ede216d11a6d9970d6036..aff3646190202765938bef6860e2fe2b5148b7b8 100644
--- a/src/pathops/SkOpSpan.h
+++ b/src/pathops/SkOpSpan.h
@@ -369,7 +369,7 @@ public:
}
const SkOpSpan* upCast() const {
- SkASSERT(!final());
+ SkOPASSERT(!final());
return (const SkOpSpan*) this;
}
@@ -520,7 +520,7 @@ public:
SkASSERT(!final());
SkASSERT(windValue >= 0);
SkASSERT(fWindSum == SK_MinS32);
- SkASSERT(!windValue || !fDone);
+ SkOPASSERT(!windValue || !fDone);
fWindValue = windValue;
}
@@ -537,7 +537,7 @@ public:
}
int windValue() const {
- SkASSERT(!final());
+ SkOPASSERT(!final());
return fWindValue;
}
« no previous file with comments | « src/pathops/SkOpSegment.cpp ('k') | src/pathops/SkOpSpan.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698