aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PathTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-12 23:03:51 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-12-12 23:03:51 +0000
commit6b8dbb668f1f069270d35a47cfe98decd059c625 (patch)
tree0935dd2115f13c4df762c4aad8ccf10e80395702 /tests/PathTest.cpp
parentc7a8507e97dba1f46f6a3bc59426bf1d57fd9c1c (diff)
Move segment mask from SkPath to SkPathRef
Diffstat (limited to 'tests/PathTest.cpp')
-rw-r--r--tests/PathTest.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index bea3ea5ab8..991b4fd367 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -3138,6 +3138,78 @@ static void test_contains(skiatest::Reporter* reporter) {
}
}
+static void test_pathref(skiatest::Reporter* reporter) {
+ static const int kRepeatCnt = 10;
+
+ SkPathRef* pathRef = SkPathRef::CreateEmpty();
+ SkAutoTUnref<SkPathRef> pathRef2(SkPathRef::CreateEmpty());
+ SkMatrix mat;
+
+ mat.setTranslate(10, 10);
+
+ SkPathRef::CreateTransformedCopy(&pathRef2, *pathRef, mat);
+
+ SkPathRef::Editor ed(&pathRef2);
+
+ {
+ ed.growForRepeatedVerb(SkPath::kMove_Verb, kRepeatCnt);
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countVerbs());
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countPoints());
+ REPORTER_ASSERT(reporter, 0 == pathRef2->getSegmentMasks());
+ for (int i = 0; i < kRepeatCnt; ++i) {
+ REPORTER_ASSERT(reporter, SkPath::kMove_Verb == pathRef2->atVerb(i));
+ }
+ ed.resetToSize(0, 0, 0);
+ }
+
+ {
+ ed.growForRepeatedVerb(SkPath::kLine_Verb, kRepeatCnt);
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countVerbs());
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countPoints());
+ REPORTER_ASSERT(reporter, SkPath::kLine_SegmentMask == pathRef2->getSegmentMasks());
+ for (int i = 0; i < kRepeatCnt; ++i) {
+ REPORTER_ASSERT(reporter, SkPath::kLine_Verb == pathRef2->atVerb(i));
+ }
+ ed.resetToSize(0, 0, 0);
+ }
+
+ {
+ ed.growForRepeatedVerb(SkPath::kQuad_Verb, kRepeatCnt);
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countVerbs());
+ REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef2->countPoints());
+ REPORTER_ASSERT(reporter, SkPath::kQuad_SegmentMask == pathRef2->getSegmentMasks());
+ for (int i = 0; i < kRepeatCnt; ++i) {
+ REPORTER_ASSERT(reporter, SkPath::kQuad_Verb == pathRef2->atVerb(i));
+ }
+ ed.resetToSize(0, 0, 0);
+ }
+
+ {
+ SkScalar* weights = NULL;
+ ed.growForRepeatedVerb(SkPath::kConic_Verb, kRepeatCnt, &weights);
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countVerbs());
+ REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef2->countPoints());
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countWeights());
+ REPORTER_ASSERT(reporter, SkPath::kConic_SegmentMask == pathRef2->getSegmentMasks());
+ REPORTER_ASSERT(reporter, NULL != weights);
+ for (int i = 0; i < kRepeatCnt; ++i) {
+ REPORTER_ASSERT(reporter, SkPath::kConic_Verb == pathRef2->atVerb(i));
+ }
+ ed.resetToSize(0, 0, 0);
+ }
+
+ {
+ ed.growForRepeatedVerb(SkPath::kCubic_Verb, kRepeatCnt);
+ REPORTER_ASSERT(reporter, kRepeatCnt == pathRef2->countVerbs());
+ REPORTER_ASSERT(reporter, 3*kRepeatCnt == pathRef2->countPoints());
+ REPORTER_ASSERT(reporter, SkPath::kCubic_SegmentMask == pathRef2->getSegmentMasks());
+ for (int i = 0; i < kRepeatCnt; ++i) {
+ REPORTER_ASSERT(reporter, SkPath::kCubic_Verb == pathRef2->atVerb(i));
+ }
+ ed.resetToSize(0, 0, 0);
+ }
+}
+
static void test_operatorEqual(skiatest::Reporter* reporter) {
SkPath a;
SkPath b;
@@ -3297,5 +3369,6 @@ DEF_TEST(Path, reporter) {
test_conicTo_special_case(reporter);
test_get_point(reporter);
test_contains(reporter);
+ test_pathref(reporter);
PathTest_Private::TestPathTo(reporter);
}