Index: src/pathops/SkPathOpsDebug.h |
diff --git a/src/pathops/SkPathOpsDebug.h b/src/pathops/SkPathOpsDebug.h |
index 912f2f5f50050ebe3e4280bbbcbf626f54429cbb..4fabd4cb228e158dd01cb66c84236561e8cc886b 100644 |
--- a/src/pathops/SkPathOpsDebug.h |
+++ b/src/pathops/SkPathOpsDebug.h |
@@ -160,8 +160,15 @@ public: |
static void ShowPath(const SkPath& one, const SkPath& two, SkPathOp op, const char* name); |
#endif |
static void DumpAngles(const SkTArray<class SkOpAngle, true>& angles); |
+ static void DumpAngles(const SkTArray<class SkOpAngle* , true>& angles); |
}; |
+// shorthand for calling from debugger |
+void Dump(const SkTArray<class SkOpAngle, true>& angles); |
+void Dump(const SkTArray<class SkOpAngle* , true>& angles); |
+void Dump(const SkTArray<class SkOpAngle, true>* angles); |
+void Dump(const SkTArray<class SkOpAngle* , true>* angles); |
+ |
#endif // SK_DEBUG || !FORCE_RELEASE |
#endif |