aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/InterpolatorTest.cpp
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2016-01-07 11:33:15 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-07 11:33:15 -0800
commit6544817b9848b7b6ffb28c761a1011e0df42f0e9 (patch)
tree2167dc0b485dac693067d97833204cff113e7acd /tests/InterpolatorTest.cpp
parentf9bc796e0dbd31674c22b34761913ee6e8fdd66a (diff)
test & doc for SkUnitCubicInterp
Diffstat (limited to 'tests/InterpolatorTest.cpp')
-rw-r--r--tests/InterpolatorTest.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/InterpolatorTest.cpp b/tests/InterpolatorTest.cpp
index 3cfd19f56b..f520ebb700 100644
--- a/tests/InterpolatorTest.cpp
+++ b/tests/InterpolatorTest.cpp
@@ -58,4 +58,35 @@ DEF_TEST(Interpolator, reporter) {
result = inter.timeToValues(175, v);
REPORTER_ASSERT(reporter, result == SkInterpolator::kNormal_Result);
+ for (SkScalar val = -0.1f; val <= 1.1f; val += 0.1f) {
+ REPORTER_ASSERT(reporter, SkScalarNearlyEqual(SkTPin(0.f, val, 1.f),
+ SkUnitCubicInterp(val, 1.f/3, 1.f/3, 2.f/3, 2.f/3)));
+ }
+
+ // These numbers come from
+ // http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag.
+ const SkScalar testTransitions[][4] = {
+ { 0.25f, 0.1f, 0.25f, 1 }, // ease
+ { 0.42f, 0, 1, 1 }, // ease in
+ { 0, 0, 0.58f, 1 }, // ease out
+ { 0.42f, 0, 0.58f, 1 }, // ease in out
+ };
+
+ const SkScalar expectedOutput[][5] = {
+ { 0.0947876f, 0.513367f, 0.80249f, 0.940796f, 0.994263f }, // ease
+ { 0.0170288f, 0.129639f, 0.31543f, 0.554749f, 0.839417f }, // ease in
+ { 0.160583f, 0.445251f, 0.684692f, 0.870361f, 0.982971f }, // ease out
+ { 0.0197144f, 0.187439f, 0.500122f, 0.812561f, 0.980286f }, // ease in out
+ };
+
+ int i = 0;
+ for (const SkScalar* t : testTransitions) {
+ int j = 0;
+ for (SkScalar val = 0.1f; val < 1; val += 0.2f) {
+ REPORTER_ASSERT(reporter, SkScalarNearlyEqual(expectedOutput[i][j++],
+ SkUnitCubicInterp(val, t[0], t[1], t[2], t[3])));
+ }
+ ++i;
+ SkDebugf("\n");
+ }
}