aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PathOpsDCubicTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PathOpsDCubicTest.cpp')
-rw-r--r--tests/PathOpsDCubicTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PathOpsDCubicTest.cpp b/tests/PathOpsDCubicTest.cpp
index d6994943bd..c7c9f2ab96 100644
--- a/tests/PathOpsDCubicTest.cpp
+++ b/tests/PathOpsDCubicTest.cpp
@@ -20,7 +20,8 @@ DEF_TEST(PathOpsDCubic, reporter) {
for (size_t index = 0; index < tests_count; ++index) {
const SkDCubic& cubic = tests[index];
SkASSERT(ValidCubic(cubic));
- bool result = cubic.clockwise();
+ bool skip;
+ bool result = cubic.clockwise(&skip);
if (!result) {
SkDebugf("%s [%d] expected clockwise\n", __FUNCTION__, index);
REPORTER_ASSERT(reporter, 0);