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

Side by Side Diff: src/pathops/SkOpSpan.cpp

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 unified diff | Download patch
« no previous file with comments | « src/pathops/SkOpSpan.h ('k') | src/pathops/SkPathOpsDebug.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 #include "SkOpCoincidence.h" 7 #include "SkOpCoincidence.h"
8 #include "SkOpContour.h" 8 #include "SkOpContour.h"
9 #include "SkOpSegment.h" 9 #include "SkOpSegment.h"
10 #include "SkPathWriter.h" 10 #include "SkPathWriter.h"
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 } 231 }
232 } 232 }
233 #if DEBUG_COINCIDENCE 233 #if DEBUG_COINCIDENCE
234 this->globalState()->coincidence()->debugValidate(); 234 this->globalState()->coincidence()->debugValidate();
235 #endif 235 #endif
236 } 236 }
237 237
238 bool SkOpSpanBase::contains(const SkOpSpanBase* span) const { 238 bool SkOpSpanBase::contains(const SkOpSpanBase* span) const {
239 const SkOpPtT* start = &fPtT; 239 const SkOpPtT* start = &fPtT;
240 const SkOpPtT* check = &span->fPtT; 240 const SkOpPtT* check = &span->fPtT;
241 SkASSERT(start != check); 241 SkOPASSERT(start != check);
242 const SkOpPtT* walk = start; 242 const SkOpPtT* walk = start;
243 while ((walk = walk->next()) != start) { 243 while ((walk = walk->next()) != start) {
244 if (walk == check) { 244 if (walk == check) {
245 return true; 245 return true;
246 } 246 }
247 } 247 }
248 return false; 248 return false;
249 } 249 }
250 250
251 const SkOpPtT* SkOpSpanBase::contains(const SkOpSegment* segment) const { 251 const SkOpPtT* SkOpSpanBase::contains(const SkOpSegment* segment) const {
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 448
449 void SkOpSpan::setWindSum(int windSum) { 449 void SkOpSpan::setWindSum(int windSum) {
450 SkASSERT(!final()); 450 SkASSERT(!final());
451 if (fWindSum != SK_MinS32 && fWindSum != windSum) { 451 if (fWindSum != SK_MinS32 && fWindSum != windSum) {
452 this->globalState()->setWindingFailed(); 452 this->globalState()->setWindingFailed();
453 return; 453 return;
454 } 454 }
455 SkASSERT(!DEBUG_LIMIT_WIND_SUM || SkTAbs(windSum) <= DEBUG_LIMIT_WIND_SUM); 455 SkASSERT(!DEBUG_LIMIT_WIND_SUM || SkTAbs(windSum) <= DEBUG_LIMIT_WIND_SUM);
456 fWindSum = windSum; 456 fWindSum = windSum;
457 } 457 }
OLDNEW
« no previous file with comments | « src/pathops/SkOpSpan.h ('k') | src/pathops/SkPathOpsDebug.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698