Index: tests/PathOpsTSectDebug.h |
diff --git a/tests/PathOpsTSectDebug.h b/tests/PathOpsTSectDebug.h |
index 4e04db794b8f0a315e6e4a838b5f52393f50b8a4..e18e0f89e6f3e9c93c615db41237383f289b3c20 100644 |
--- a/tests/PathOpsTSectDebug.h |
+++ b/tests/PathOpsTSectDebug.h |
@@ -9,16 +9,16 @@ |
template<typename TCurve, typename OppCurve> |
char SkTCoincident<TCurve, OppCurve>::dumpIsCoincidentStr() const { |
- if (!!fCoincident != fCoincident) { |
+ if (!!fMatch != fMatch) { |
return '?'; |
} |
- return fCoincident ? '*' : 0; |
+ return fMatch ? '*' : 0; |
} |
template<typename TCurve, typename OppCurve> |
void SkTCoincident<TCurve, OppCurve>::dump() const { |
SkDebugf("t=%1.9g pt=(%1.9g,%1.9g)%s\n", fPerpT, fPerpPt.fX, fPerpPt.fY, |
- fCoincident ? " coincident" : ""); |
+ fMatch ? " match" : ""); |
} |
template<typename TCurve, typename OppCurve> |