2013-04-22 14:37:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tests/PathOpsExtendedTest.h"
|
2013-04-22 14:37:05 +00:00
|
|
|
|
2014-01-02 21:45:03 +00:00
|
|
|
DEF_TEST(PathOpsInverse, reporter) {
|
2013-04-22 14:37:05 +00:00
|
|
|
SkPath one, two;
|
2018-08-08 13:48:09 +00:00
|
|
|
int testCount = 0;
|
2015-03-26 14:52:43 +00:00
|
|
|
for (int op = kDifference_SkPathOp; op <= kReverseDifference_SkPathOp; ++op) {
|
2019-09-13 19:58:25 +00:00
|
|
|
for (int oneFill = (int)SkPathFillType::kWinding; oneFill <= (int)SkPathFillType::kInverseEvenOdd;
|
2013-04-22 14:37:05 +00:00
|
|
|
++oneFill) {
|
2019-09-13 19:58:25 +00:00
|
|
|
for (int oneDir = (int)SkPathDirection::kCW; oneDir != (int)SkPathDirection::kCCW; ++oneDir) {
|
2013-04-22 14:37:05 +00:00
|
|
|
one.reset();
|
|
|
|
one.setFillType((SkPath::FillType) oneFill);
|
|
|
|
one.addRect(0, 0, 6, 6, (SkPath::Direction) oneDir);
|
2019-09-13 19:58:25 +00:00
|
|
|
for (int twoFill = (int)SkPathFillType::kWinding;
|
|
|
|
twoFill <= (int)SkPathFillType::kInverseEvenOdd; ++twoFill) {
|
2013-04-22 14:37:05 +00:00
|
|
|
for (int twoDir = SkPath::kCW_Direction; twoDir != SkPath::kCCW_Direction;
|
|
|
|
++twoDir) {
|
|
|
|
two.reset();
|
2019-09-13 19:58:25 +00:00
|
|
|
two.setFillType((SkPathFillType) twoFill);
|
|
|
|
two.addRect({3, 3, 9, 9}, (SkPathDirection) twoDir);
|
2018-08-08 13:48:09 +00:00
|
|
|
SkString testName;
|
|
|
|
testName.printf("inverseTest%d", ++testCount);
|
|
|
|
testPathOp(reporter, one, two, (SkPathOp) op, testName.c_str());
|
2013-04-22 14:37:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|