| Index: src/pathops/SkDConicLineIntersection.cpp
|
| diff --git a/src/pathops/SkDConicLineIntersection.cpp b/src/pathops/SkDConicLineIntersection.cpp
|
| index eb32068d0e617e9199f8ec1593a2d6f72dd55c4a..102a4c3c90315c49a4e4a04831d505ca3e3fd8cf 100644
|
| --- a/src/pathops/SkDConicLineIntersection.cpp
|
| +++ b/src/pathops/SkDConicLineIntersection.cpp
|
| @@ -105,8 +105,8 @@ public:
|
| double conicT = rootVals[index];
|
| double lineT = this->findLineT(conicT);
|
| #ifdef SK_DEBUG
|
| - if (!fIntersections->debugGlobalState()
|
| - || !fIntersections->debugGlobalState()->debugSkipAssert()) {
|
| + if (!fIntersections->globalState()
|
| + || !fIntersections->globalState()->debugSkipAssert()) {
|
| SkDEBUGCODE(SkDPoint conicPt = fConic.ptAtT(conicT));
|
| SkDEBUGCODE(SkDPoint linePt = fLine->ptAtT(lineT));
|
| SkASSERT(conicPt.approximatelyDEqual(linePt));
|
|
|