| 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;
|
| }
|
|
|
|
|