Index: src/pathops/SkPathOpsDebug.cpp |
diff --git a/src/pathops/SkPathOpsDebug.cpp b/src/pathops/SkPathOpsDebug.cpp |
index 1b19fe5ce18902a5b7e4341be3b830f7d7883a45..95e2204c33b606ee8e54b8e39a8dcdca9509c9af 100644 |
--- a/src/pathops/SkPathOpsDebug.cpp |
+++ b/src/pathops/SkPathOpsDebug.cpp |
@@ -103,7 +103,7 @@ void SkOpSpan::dump() const { |
SkDebugf("t="); |
DebugDumpDouble(fT); |
SkDebugf(" pt="); |
- SkDPoint::DumpSkPoint(fPt); |
+ SkDPoint::dump(fPt); |
SkDebugf(" other.fID=%d", fOther->debugID()); |
SkDebugf(" [%d] otherT=", fOtherIndex); |
DebugDumpDouble(fOtherT); |
@@ -157,3 +157,8 @@ void Dump(const SkTArray<class SkOpAngle* , true>* angles) { |
} |
#endif |
+ |
+#if !FORCE_RELEASE && 0 // enable when building without extended test |
+void SkPathOpsDebug::ShowPath(const SkPath& one, const SkPath& two, SkPathOp op, const char* name) { |
+} |
+#endif |