From 927b7028d44c46e9cbc18368f16ec2262d59d94d Mon Sep 17 00:00:00 2001 From: "caryclark@google.com" Date: Mon, 25 Nov 2013 14:18:21 +0000 Subject: remove unused reduce order code BUG= Review URL: https://codereview.chromium.org/85763002 git-svn-id: http://skia.googlecode.com/svn/trunk@12377 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tests/PathOpsCubicIntersectionTest.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/PathOpsCubicIntersectionTest.cpp') diff --git a/tests/PathOpsCubicIntersectionTest.cpp b/tests/PathOpsCubicIntersectionTest.cpp index c8a2e05e66..8eb1756a14 100644 --- a/tests/PathOpsCubicIntersectionTest.cpp +++ b/tests/PathOpsCubicIntersectionTest.cpp @@ -19,10 +19,8 @@ static void standardTestCases(skiatest::Reporter* reporter) { const SkDCubic& cubic1 = tests[index][0]; const SkDCubic& cubic2 = tests[index][1]; SkReduceOrder reduce1, reduce2; - int order1 = reduce1.reduce(cubic1, SkReduceOrder::kNo_Quadratics, - SkReduceOrder::kFill_Style); - int order2 = reduce2.reduce(cubic2, SkReduceOrder::kNo_Quadratics, - SkReduceOrder::kFill_Style); + int order1 = reduce1.reduce(cubic1, SkReduceOrder::kNo_Quadratics); + int order2 = reduce2.reduce(cubic2, SkReduceOrder::kNo_Quadratics); const bool showSkipped = false; if (order1 < 4) { if (showSkipped) { -- cgit v1.2.3