Index: src/pathops/SkPathOpsTCubicSect.cpp |
diff --git a/src/pathops/SkPathOpsTCubicSect.cpp b/src/pathops/SkPathOpsTCubicSect.cpp |
index 0b3ddd7d0d5db4de34915c40710982afd5d38de3..10a84a384346b73ad4708500811b0c3c6baffb08 100644 |
--- a/src/pathops/SkPathOpsTCubicSect.cpp |
+++ b/src/pathops/SkPathOpsTCubicSect.cpp |
@@ -7,9 +7,9 @@ |
#include "SkPathOpsTSect.h" |
-int SkIntersections::intersectB(const SkDCubic& cubic1, const SkDCubic& cubic2) { |
- SkTSect<SkDCubic> sect1(cubic1 PATH_OPS_DEBUG_PARAMS(1)); |
- SkTSect<SkDCubic> sect2(cubic2 PATH_OPS_DEBUG_PARAMS(2)); |
+int SkIntersections::intersect(const SkDCubic& cubic1, const SkDCubic& cubic2) { |
+ SkTSect<SkDCubic> sect1(cubic1 PATH_OPS_DEBUG_T_SECT_PARAMS(1)); |
+ SkTSect<SkDCubic> sect2(cubic2 PATH_OPS_DEBUG_T_SECT_PARAMS(2)); |
SkTSect<SkDCubic>::BinarySearch(§1, §2, this); |
return used(); |
} |