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

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

Issue 2169863002: fix fuzzer bug (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 5 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/SkOpSegment.cpp ('k') | src/pathops/SkPathOpsTypes.h » ('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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 const SkOpSegment* SkOpPtT::segment() const { 166 const SkOpSegment* SkOpPtT::segment() const {
167 return span()->segment(); 167 return span()->segment();
168 } 168 }
169 169
170 SkOpSegment* SkOpPtT::segment() { 170 SkOpSegment* SkOpPtT::segment() {
171 return span()->segment(); 171 return span()->segment();
172 } 172 }
173 173
174 void SkOpPtT::setDeleted() { 174 void SkOpPtT::setDeleted() {
175 SkASSERT(this->span()->debugDeleted() || this->span()->ptT() != this); 175 SkASSERT(this->span()->debugDeleted() || this->span()->ptT() != this);
176 SkASSERT(this->globalState()->debugSkipAssert() || !fDeleted); 176 SkOPASSERT(!fDeleted);
177 fDeleted = true; 177 fDeleted = true;
178 } 178 }
179 179
180 // please keep this in sync with debugAddOppAndMerge 180 // please keep this in sync with debugAddOppAndMerge
181 // If the added points envelop adjacent spans, merge them in. 181 // If the added points envelop adjacent spans, merge them in.
182 void SkOpSpanBase::addOppAndMerge(SkOpSpanBase* opp) { 182 void SkOpSpanBase::addOppAndMerge(SkOpSpanBase* opp) {
183 if (this->ptT()->addOpp(opp->ptT())) { 183 if (this->ptT()->addOpp(opp->ptT())) {
184 this->checkForCollapsedCoincidence(); 184 this->checkForCollapsedCoincidence();
185 } 185 }
186 // compute bounds of points in span 186 // compute bounds of points in span
(...skipping 261 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/SkOpSegment.cpp ('k') | src/pathops/SkPathOpsTypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698