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) {
|
2019-11-22 18:34:02 +00:00
|
|
|
const SkPathDirection dirs[] = {SkPathDirection::kCW, SkPathDirection::kCCW};
|
2019-11-26 17:17:17 +00:00
|
|
|
const SkPathFillType fts[] = {
|
|
|
|
SkPathFillType::kWinding, SkPathFillType::kEvenOdd,
|
|
|
|
SkPathFillType::kInverseWinding, SkPathFillType::kInverseEvenOdd
|
|
|
|
};
|
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-11-26 17:17:17 +00:00
|
|
|
for (auto oneFill : fts) {
|
2019-11-22 18:34:02 +00:00
|
|
|
for (auto oneDir : dirs) {
|
2013-04-22 14:37:05 +00:00
|
|
|
one.reset();
|
2019-11-26 17:17:17 +00:00
|
|
|
one.setFillType(oneFill);
|
2019-11-22 18:34:02 +00:00
|
|
|
one.addRect(0, 0, 6, 6, oneDir);
|
2019-11-26 17:17:17 +00:00
|
|
|
for (auto twoFill : fts) {
|
2019-11-22 18:34:02 +00:00
|
|
|
for (auto twoDir : dirs) {
|
2013-04-22 14:37:05 +00:00
|
|
|
two.reset();
|
2019-11-26 17:17:17 +00:00
|
|
|
two.setFillType(twoFill);
|
2019-11-22 18:34:02 +00:00
|
|
|
two.addRect(3, 3, 9, 9, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|