blob: 51c7687591ebc8227d8958fa1636bcd4af7e0159 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkMath.h"
9#include "include/core/SkPoint3.h"
10#include "include/utils/SkRandom.h"
11#include "src/core/SkMatrixPriv.h"
12#include "src/core/SkMatrixUtils.h"
13#include "tests/Test.h"
reed@android.comed673312009-02-27 16:24:51 +000014
15static bool nearly_equal_scalar(SkScalar a, SkScalar b) {
epoger@google.com2047f002011-05-17 17:36:59 +000016 const SkScalar tolerance = SK_Scalar1 / 200000;
reed@android.comed673312009-02-27 16:24:51 +000017 return SkScalarAbs(a - b) <= tolerance;
18}
19
20static bool nearly_equal(const SkMatrix& a, const SkMatrix& b) {
21 for (int i = 0; i < 9; i++) {
22 if (!nearly_equal_scalar(a[i], b[i])) {
Robert Phillipsc100d482018-07-10 10:11:01 -040023 SkDebugf("matrices not equal [%d] %g %g\n", i, (float)a[i], (float)b[i]);
reed@android.comed673312009-02-27 16:24:51 +000024 return false;
25 }
26 }
27 return true;
28}
29
Mike Kleine72e7732018-06-14 14:41:22 -040030static int float_bits(float f) {
31 int result;
32 memcpy(&result, &f, 4);
33 return result;
34}
35
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000036static bool are_equal(skiatest::Reporter* reporter,
37 const SkMatrix& a,
38 const SkMatrix& b) {
39 bool equal = a == b;
Mike Reed2c383152019-12-18 16:47:47 -050040 bool cheapEqual = SkMatrixPriv::CheapEqual(a, b);
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000041 if (equal != cheapEqual) {
bsalomon@google.com39d4f3a2012-03-26 17:25:45 +000042 if (equal) {
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000043 bool foundZeroSignDiff = false;
44 for (int i = 0; i < 9; ++i) {
45 float aVal = a.get(i);
46 float bVal = b.get(i);
Mike Kleine72e7732018-06-14 14:41:22 -040047 int aValI = float_bits(aVal);
48 int bValI = float_bits(bVal);
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000049 if (0 == aVal && 0 == bVal && aValI != bValI) {
50 foundZeroSignDiff = true;
51 } else {
halcanarye76ca8b2016-05-20 10:36:50 -070052 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI);
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000053 }
54 }
55 REPORTER_ASSERT(reporter, foundZeroSignDiff);
56 } else {
57 bool foundNaN = false;
58 for (int i = 0; i < 9; ++i) {
59 float aVal = a.get(i);
60 float bVal = b.get(i);
Mike Kleine72e7732018-06-14 14:41:22 -040061 int aValI = float_bits(aVal);
62 int bValI = float_bits(bVal);
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000063 if (sk_float_isnan(aVal) && aValI == bValI) {
64 foundNaN = true;
65 } else {
66 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI);
67 }
68 }
69 REPORTER_ASSERT(reporter, foundNaN);
70 }
bsalomon@google.com8fe84b52012-03-26 15:24:27 +000071 }
72 return equal;
73}
74
reed@android.comed673312009-02-27 16:24:51 +000075static bool is_identity(const SkMatrix& m) {
76 SkMatrix identity;
reed@android.com80e39a72009-04-02 16:59:40 +000077 identity.reset();
reed@android.comed673312009-02-27 16:24:51 +000078 return nearly_equal(m, identity);
79}
80
reed451e8222014-12-13 08:46:48 -080081static void assert9(skiatest::Reporter* reporter, const SkMatrix& m,
82 SkScalar a, SkScalar b, SkScalar c,
83 SkScalar d, SkScalar e, SkScalar f,
84 SkScalar g, SkScalar h, SkScalar i) {
85 SkScalar buffer[9];
86 m.get9(buffer);
87 REPORTER_ASSERT(reporter, buffer[0] == a);
88 REPORTER_ASSERT(reporter, buffer[1] == b);
89 REPORTER_ASSERT(reporter, buffer[2] == c);
90 REPORTER_ASSERT(reporter, buffer[3] == d);
91 REPORTER_ASSERT(reporter, buffer[4] == e);
92 REPORTER_ASSERT(reporter, buffer[5] == f);
93 REPORTER_ASSERT(reporter, buffer[6] == g);
94 REPORTER_ASSERT(reporter, buffer[7] == h);
95 REPORTER_ASSERT(reporter, buffer[8] == i);
John Stilesd4867c92020-09-22 16:52:40 -040096
97 REPORTER_ASSERT(reporter, m.rc(0, 0) == a);
98 REPORTER_ASSERT(reporter, m.rc(0, 1) == b);
99 REPORTER_ASSERT(reporter, m.rc(0, 2) == c);
100 REPORTER_ASSERT(reporter, m.rc(1, 0) == d);
101 REPORTER_ASSERT(reporter, m.rc(1, 1) == e);
102 REPORTER_ASSERT(reporter, m.rc(1, 2) == f);
103 REPORTER_ASSERT(reporter, m.rc(2, 0) == g);
104 REPORTER_ASSERT(reporter, m.rc(2, 1) == h);
105 REPORTER_ASSERT(reporter, m.rc(2, 2) == i);
reed451e8222014-12-13 08:46:48 -0800106}
107
108static void test_set9(skiatest::Reporter* reporter) {
109
110 SkMatrix m;
111 m.reset();
112 assert9(reporter, m, 1, 0, 0, 0, 1, 0, 0, 0, 1);
halcanary9d524f22016-03-29 09:03:52 -0700113
reed451e8222014-12-13 08:46:48 -0800114 m.setScale(2, 3);
115 assert9(reporter, m, 2, 0, 0, 0, 3, 0, 0, 0, 1);
halcanary9d524f22016-03-29 09:03:52 -0700116
reed451e8222014-12-13 08:46:48 -0800117 m.postTranslate(4, 5);
118 assert9(reporter, m, 2, 0, 4, 0, 3, 5, 0, 0, 1);
119
120 SkScalar buffer[9];
121 sk_bzero(buffer, sizeof(buffer));
122 buffer[SkMatrix::kMScaleX] = 1;
123 buffer[SkMatrix::kMScaleY] = 1;
124 buffer[SkMatrix::kMPersp2] = 1;
125 REPORTER_ASSERT(reporter, !m.isIdentity());
126 m.set9(buffer);
127 REPORTER_ASSERT(reporter, m.isIdentity());
128}
129
reed@google.com97cd69c2012-10-12 14:35:48 +0000130static void test_matrix_recttorect(skiatest::Reporter* reporter) {
131 SkRect src, dst;
132 SkMatrix matrix;
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000133
Mike Reed92b33352019-08-24 19:39:13 -0400134 src.setLTRB(0, 0, 10, 10);
reed@google.com97cd69c2012-10-12 14:35:48 +0000135 dst = src;
Mike Reed2ac6ce82021-01-15 12:26:22 -0500136 matrix = SkMatrix::RectToRect(src, dst);
reed@google.com97cd69c2012-10-12 14:35:48 +0000137 REPORTER_ASSERT(reporter, SkMatrix::kIdentity_Mask == matrix.getType());
138 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000139
Mike Reed97245822019-07-18 11:37:43 -0400140 dst.offset(1, 1);
Mike Reed2ac6ce82021-01-15 12:26:22 -0500141 matrix = SkMatrix::RectToRect(src, dst);
reed@google.com97cd69c2012-10-12 14:35:48 +0000142 REPORTER_ASSERT(reporter, SkMatrix::kTranslate_Mask == matrix.getType());
143 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
skia.committer@gmail.comf57c01b2012-10-13 02:01:56 +0000144
Mike Reed97245822019-07-18 11:37:43 -0400145 dst.fRight += 1;
Mike Reed2ac6ce82021-01-15 12:26:22 -0500146 matrix = SkMatrix::RectToRect(src, dst);
skia.committer@gmail.come659c2e2012-12-04 02:01:25 +0000147 REPORTER_ASSERT(reporter,
robertphillips@google.com93f03322012-12-03 17:35:19 +0000148 (SkMatrix::kTranslate_Mask | SkMatrix::kScale_Mask) == matrix.getType());
reed@google.com97cd69c2012-10-12 14:35:48 +0000149 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
150
151 dst = src;
152 dst.fRight = src.fRight * 2;
Mike Reed2ac6ce82021-01-15 12:26:22 -0500153 matrix = SkMatrix::RectToRect(src, dst);
reed@google.com97cd69c2012-10-12 14:35:48 +0000154 REPORTER_ASSERT(reporter, SkMatrix::kScale_Mask == matrix.getType());
155 REPORTER_ASSERT(reporter, matrix.rectStaysRect());
156}
157
reed@android.com4b7577b2009-06-29 16:14:41 +0000158static void test_flatten(skiatest::Reporter* reporter, const SkMatrix& m) {
159 // add 100 in case we have a bug, I don't want to kill my stack in the test
Cary Clark6d6d6032017-10-20 12:14:33 -0400160 static const size_t kBufferSize = SkMatrixPriv::kMaxFlattenSize + 100;
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000161 char buffer[kBufferSize];
Cary Clark6d6d6032017-10-20 12:14:33 -0400162 size_t size1 = SkMatrixPriv::WriteToMemory(m, nullptr);
163 size_t size2 = SkMatrixPriv::WriteToMemory(m, buffer);
reed@android.com4b7577b2009-06-29 16:14:41 +0000164 REPORTER_ASSERT(reporter, size1 == size2);
Cary Clark6d6d6032017-10-20 12:14:33 -0400165 REPORTER_ASSERT(reporter, size1 <= SkMatrixPriv::kMaxFlattenSize);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000166
reed@android.com4b7577b2009-06-29 16:14:41 +0000167 SkMatrix m2;
Cary Clark6d6d6032017-10-20 12:14:33 -0400168 size_t size3 = SkMatrixPriv::ReadFromMemory(&m2, buffer, kBufferSize);
djsollen@google.com94e75ee2012-06-08 18:30:46 +0000169 REPORTER_ASSERT(reporter, size1 == size3);
bsalomon@google.com8fe84b52012-03-26 15:24:27 +0000170 REPORTER_ASSERT(reporter, are_equal(reporter, m, m2));
rmistry@google.comd6176b02012-08-23 18:14:13 +0000171
commit-bot@chromium.org4faa8692013-11-05 15:46:56 +0000172 char buffer2[kBufferSize];
Cary Clark6d6d6032017-10-20 12:14:33 -0400173 size3 = SkMatrixPriv::WriteToMemory(m2, buffer2);
djsollen@google.com94e75ee2012-06-08 18:30:46 +0000174 REPORTER_ASSERT(reporter, size1 == size3);
reed@android.com4b7577b2009-06-29 16:14:41 +0000175 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
176}
177
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000178static void test_matrix_min_max_scale(skiatest::Reporter* reporter) {
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000179 SkScalar scales[2];
180 bool success;
181
bsalomon@google.com38396322011-09-09 19:32:04 +0000182 SkMatrix identity;
183 identity.reset();
Mike Reed97245822019-07-18 11:37:43 -0400184 REPORTER_ASSERT(reporter, 1 == identity.getMinScale());
185 REPORTER_ASSERT(reporter, 1 == identity.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000186 success = identity.getMinMaxScales(scales);
Mike Reed97245822019-07-18 11:37:43 -0400187 REPORTER_ASSERT(reporter, success && 1 == scales[0] && 1 == scales[1]);
bsalomon@google.com38396322011-09-09 19:32:04 +0000188
189 SkMatrix scale;
Mike Reed97245822019-07-18 11:37:43 -0400190 scale.setScale(2, 4);
191 REPORTER_ASSERT(reporter, 2 == scale.getMinScale());
192 REPORTER_ASSERT(reporter, 4 == scale.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000193 success = scale.getMinMaxScales(scales);
Mike Reed97245822019-07-18 11:37:43 -0400194 REPORTER_ASSERT(reporter, success && 2 == scales[0] && 4 == scales[1]);
bsalomon@google.com38396322011-09-09 19:32:04 +0000195
196 SkMatrix rot90Scale;
Mike Reed97245822019-07-18 11:37:43 -0400197 rot90Scale.setRotate(90).postScale(SK_Scalar1 / 4, SK_Scalar1 / 2);
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000198 REPORTER_ASSERT(reporter, SK_Scalar1 / 4 == rot90Scale.getMinScale());
199 REPORTER_ASSERT(reporter, SK_Scalar1 / 2 == rot90Scale.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000200 success = rot90Scale.getMinMaxScales(scales);
201 REPORTER_ASSERT(reporter, success && SK_Scalar1 / 4 == scales[0] && SK_Scalar1 / 2 == scales[1]);
bsalomon@google.com38396322011-09-09 19:32:04 +0000202
203 SkMatrix rotate;
Mike Reed97245822019-07-18 11:37:43 -0400204 rotate.setRotate(128);
205 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, rotate.getMinScale(), SK_ScalarNearlyZero));
206 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, rotate.getMaxScale(), SK_ScalarNearlyZero));
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000207 success = rotate.getMinMaxScales(scales);
208 REPORTER_ASSERT(reporter, success);
Mike Reed97245822019-07-18 11:37:43 -0400209 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, scales[0], SK_ScalarNearlyZero));
210 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, scales[1], SK_ScalarNearlyZero));
bsalomon@google.com38396322011-09-09 19:32:04 +0000211
212 SkMatrix translate;
Mike Reed97245822019-07-18 11:37:43 -0400213 translate.setTranslate(10, -5);
214 REPORTER_ASSERT(reporter, 1 == translate.getMinScale());
215 REPORTER_ASSERT(reporter, 1 == translate.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000216 success = translate.getMinMaxScales(scales);
Mike Reed97245822019-07-18 11:37:43 -0400217 REPORTER_ASSERT(reporter, success && 1 == scales[0] && 1 == scales[1]);
bsalomon@google.com38396322011-09-09 19:32:04 +0000218
219 SkMatrix perspX;
Mike Reed97245822019-07-18 11:37:43 -0400220 perspX.reset().setPerspX(SK_Scalar1 / 1000);
221 REPORTER_ASSERT(reporter, -1 == perspX.getMinScale());
222 REPORTER_ASSERT(reporter, -1 == perspX.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000223 success = perspX.getMinMaxScales(scales);
bsalomonef2c7c72015-12-17 15:33:13 -0800224 REPORTER_ASSERT(reporter, !success);
225
226 // skbug.com/4718
227 SkMatrix big;
228 big.setAll(2.39394089e+36f, 8.85347779e+36f, 9.26526204e+36f,
229 3.9159619e+36f, 1.44823453e+37f, 1.51559342e+37f,
230 0.f, 0.f, 1.f);
bsalomonef2c7c72015-12-17 15:33:13 -0800231 success = big.getMinMaxScales(scales);
232 REPORTER_ASSERT(reporter, !success);
bsalomon@google.com38396322011-09-09 19:32:04 +0000233
kolczykcea22ae2016-07-16 11:52:37 -0700234 // skbug.com/4718
235 SkMatrix givingNegativeNearlyZeros;
236 givingNegativeNearlyZeros.setAll(0.00436534f, 0.114138f, 0.37141f,
237 0.00358857f, 0.0936228f, -0.0174198f,
238 0.f, 0.f, 1.f);
239 success = givingNegativeNearlyZeros.getMinMaxScales(scales);
240 REPORTER_ASSERT(reporter, success && 0 == scales[0]);
241
bsalomon@google.com38396322011-09-09 19:32:04 +0000242 SkMatrix perspY;
Mike Reed97245822019-07-18 11:37:43 -0400243 perspY.reset().setPerspY(-SK_Scalar1 / 500);
244 REPORTER_ASSERT(reporter, -1 == perspY.getMinScale());
245 REPORTER_ASSERT(reporter, -1 == perspY.getMaxScale());
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000246 scales[0] = -5;
247 scales[1] = -5;
248 success = perspY.getMinMaxScales(scales);
Mike Reed97245822019-07-18 11:37:43 -0400249 REPORTER_ASSERT(reporter, !success && -5 == scales[0] && -5 == scales[1]);
bsalomon@google.com38396322011-09-09 19:32:04 +0000250
251 SkMatrix baseMats[] = {scale, rot90Scale, rotate,
252 translate, perspX, perspY};
253 SkMatrix mats[2*SK_ARRAY_COUNT(baseMats)];
tomhudson@google.com83a44462011-10-27 15:27:51 +0000254 for (size_t i = 0; i < SK_ARRAY_COUNT(baseMats); ++i) {
bsalomon@google.com38396322011-09-09 19:32:04 +0000255 mats[i] = baseMats[i];
bungemane55131c2016-08-24 12:01:31 -0700256 bool invertible = mats[i].invert(&mats[i + SK_ARRAY_COUNT(baseMats)]);
257 REPORTER_ASSERT(reporter, invertible);
bsalomon@google.com38396322011-09-09 19:32:04 +0000258 }
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000259 SkRandom rand;
bsalomon@google.com38396322011-09-09 19:32:04 +0000260 for (int m = 0; m < 1000; ++m) {
261 SkMatrix mat;
262 mat.reset();
263 for (int i = 0; i < 4; ++i) {
264 int x = rand.nextU() % SK_ARRAY_COUNT(mats);
265 mat.postConcat(mats[x]);
266 }
rmistry@google.comd6176b02012-08-23 18:14:13 +0000267
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000268 SkScalar minScale = mat.getMinScale();
269 SkScalar maxScale = mat.getMaxScale();
270 REPORTER_ASSERT(reporter, (minScale < 0) == (maxScale < 0));
271 REPORTER_ASSERT(reporter, (maxScale < 0) == mat.hasPerspective());
bsalomon@google.com38396322011-09-09 19:32:04 +0000272
commit-bot@chromium.org311a3cd2014-05-20 17:02:03 +0000273 SkScalar scales[2];
274 bool success = mat.getMinMaxScales(scales);
275 REPORTER_ASSERT(reporter, success == !mat.hasPerspective());
276 REPORTER_ASSERT(reporter, !success || (scales[0] == minScale && scales[1] == maxScale));
277
bsalomon@google.com38396322011-09-09 19:32:04 +0000278 if (mat.hasPerspective()) {
279 m -= 1; // try another non-persp matrix
280 continue;
281 }
282
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000283 // test a bunch of vectors. All should be scaled by between minScale and maxScale
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000284 // (modulo some error) and we should find a vector that is scaled by almost each.
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000285 static const SkScalar gVectorScaleTol = (105 * SK_Scalar1) / 100;
286 static const SkScalar gCloseScaleTol = (97 * SK_Scalar1) / 100;
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000287 SkScalar max = 0, min = SK_ScalarMax;
bsalomon@google.com38396322011-09-09 19:32:04 +0000288 SkVector vectors[1000];
tomhudson@google.com83a44462011-10-27 15:27:51 +0000289 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
bsalomon@google.com38396322011-09-09 19:32:04 +0000290 vectors[i].fX = rand.nextSScalar1();
291 vectors[i].fY = rand.nextSScalar1();
292 if (!vectors[i].normalize()) {
293 i -= 1;
294 continue;
295 }
296 }
297 mat.mapVectors(vectors, SK_ARRAY_COUNT(vectors));
tomhudson@google.com83a44462011-10-27 15:27:51 +0000298 for (size_t i = 0; i < SK_ARRAY_COUNT(vectors); ++i) {
bsalomon@google.com38396322011-09-09 19:32:04 +0000299 SkScalar d = vectors[i].length();
reed80ea19c2015-05-12 10:37:34 -0700300 REPORTER_ASSERT(reporter, d / maxScale < gVectorScaleTol);
301 REPORTER_ASSERT(reporter, minScale / d < gVectorScaleTol);
bsalomon@google.com38396322011-09-09 19:32:04 +0000302 if (max < d) {
303 max = d;
304 }
commit-bot@chromium.orgcea9abb2013-12-09 19:15:37 +0000305 if (min > d) {
306 min = d;
307 }
bsalomon@google.com38396322011-09-09 19:32:04 +0000308 }
reed80ea19c2015-05-12 10:37:34 -0700309 REPORTER_ASSERT(reporter, max / maxScale >= gCloseScaleTol);
310 REPORTER_ASSERT(reporter, minScale / min >= gCloseScaleTol);
bsalomon@google.com38396322011-09-09 19:32:04 +0000311 }
312}
313
jvanverth17a845f2014-09-02 13:15:40 -0700314static void test_matrix_preserve_shape(skiatest::Reporter* reporter) {
bsalomon@google.com69afee12012-04-25 15:07:40 +0000315 SkMatrix mat;
316
317 // identity
318 mat.setIdentity();
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000319 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700320 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000321
322 // translation only
Mike Reed97245822019-07-18 11:37:43 -0400323 mat.setTranslate(100, 100);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000324 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700325 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000326
327 // scale with same size
Mike Reed97245822019-07-18 11:37:43 -0400328 mat.setScale(15, 15);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000329 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700330 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000331
332 // scale with one negative
Mike Reed97245822019-07-18 11:37:43 -0400333 mat.setScale(-15, 15);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000334 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700335 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000336
337 // scale with different size
Mike Reed97245822019-07-18 11:37:43 -0400338 mat.setScale(15, 20);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000339 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700340 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000341
342 // scale with same size at a pivot point
Mike Reed97245822019-07-18 11:37:43 -0400343 mat.setScale(15, 15, 2, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000344 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700345 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000346
347 // scale with different size at a pivot point
Mike Reed97245822019-07-18 11:37:43 -0400348 mat.setScale(15, 20, 2, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000349 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700350 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000351
352 // skew with same size
Mike Reed97245822019-07-18 11:37:43 -0400353 mat.setSkew(15, 15);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000354 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700355 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000356
357 // skew with different size
Mike Reed97245822019-07-18 11:37:43 -0400358 mat.setSkew(15, 20);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000359 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700360 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000361
362 // skew with same size at a pivot point
Mike Reed97245822019-07-18 11:37:43 -0400363 mat.setSkew(15, 15, 2, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000364 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700365 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000366
367 // skew with different size at a pivot point
Mike Reed97245822019-07-18 11:37:43 -0400368 mat.setSkew(15, 20, 2, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000369 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700370 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000371
372 // perspective x
Mike Reed97245822019-07-18 11:37:43 -0400373 mat.reset().setPerspX(SK_Scalar1 / 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000374 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700375 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000376
377 // perspective y
Mike Reed97245822019-07-18 11:37:43 -0400378 mat.reset().setPerspY(SK_Scalar1 / 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000379 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700380 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000381
bsalomon@google.com69afee12012-04-25 15:07:40 +0000382 // rotate
383 for (int angle = 0; angle < 360; ++angle) {
bsalomon@google.com69afee12012-04-25 15:07:40 +0000384 mat.setRotate(SkIntToScalar(angle));
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000385 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700386 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000387 }
388
389 // see if there are any accumulated precision issues
390 mat.reset();
391 for (int i = 1; i < 360; i++) {
Mike Reed97245822019-07-18 11:37:43 -0400392 mat.postRotate(1);
bsalomon@google.com69afee12012-04-25 15:07:40 +0000393 }
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000394 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700395 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000396
397 // rotate + translate
Mike Reed97245822019-07-18 11:37:43 -0400398 mat.setRotate(30).postTranslate(10, 20);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000399 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700400 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000401
402 // rotate + uniform scale
Mike Reed97245822019-07-18 11:37:43 -0400403 mat.setRotate(30).postScale(2, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000404 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700405 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000406
407 // rotate + non-uniform scale
Mike Reed97245822019-07-18 11:37:43 -0400408 mat.setRotate(30).postScale(3, 2);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000409 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700410 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
411
412 // non-uniform scale + rotate
Mike Reed97245822019-07-18 11:37:43 -0400413 mat.setScale(3, 2).postRotate(30);
jvanverth17a845f2014-09-02 13:15:40 -0700414 REPORTER_ASSERT(reporter, !mat.isSimilarity());
415 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000416
417 // all zero
418 mat.setAll(0, 0, 0, 0, 0, 0, 0, 0, 0);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000419 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700420 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000421
422 // all zero except perspective
Mike Reed97245822019-07-18 11:37:43 -0400423 mat.setAll(0, 0, 0, 0, 0, 0, 0, 0, 1);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000424 REPORTER_ASSERT(reporter, !mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700425 REPORTER_ASSERT(reporter, !mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000426
jvanverth17a845f2014-09-02 13:15:40 -0700427 // scales zero, only skews (rotation)
Mike Reed97245822019-07-18 11:37:43 -0400428 mat.setAll(0, 1, 0,
429 -1, 0, 0,
430 0, 0, 1);
jvanverth17a845f2014-09-02 13:15:40 -0700431 REPORTER_ASSERT(reporter, mat.isSimilarity());
432 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
433
434 // scales zero, only skews (reflection)
Mike Reed97245822019-07-18 11:37:43 -0400435 mat.setAll(0, 1, 0,
436 1, 0, 0,
437 0, 0, 1);
jvanverth@google.com46d3d392013-01-22 13:34:01 +0000438 REPORTER_ASSERT(reporter, mat.isSimilarity());
jvanverth17a845f2014-09-02 13:15:40 -0700439 REPORTER_ASSERT(reporter, mat.preservesRightAngles());
bsalomon@google.com69afee12012-04-25 15:07:40 +0000440}
441
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000442// For test_matrix_decomposition, below.
skia.committer@gmail.com5c561cb2013-07-25 07:01:00 +0000443static bool scalar_nearly_equal_relative(SkScalar a, SkScalar b,
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000444 SkScalar tolerance = SK_ScalarNearlyZero) {
445 // from Bruce Dawson
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000446 // absolute check
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000447 SkScalar diff = SkScalarAbs(a - b);
448 if (diff < tolerance) {
449 return true;
450 }
451
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000452 // relative check
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000453 a = SkScalarAbs(a);
454 b = SkScalarAbs(b);
455 SkScalar largest = (b > a) ? b : a;
456
457 if (diff <= largest*tolerance) {
458 return true;
459 }
460
461 return false;
462}
463
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000464static bool check_matrix_recomposition(const SkMatrix& mat,
465 const SkPoint& rotation1,
466 const SkPoint& scale,
467 const SkPoint& rotation2) {
468 SkScalar c1 = rotation1.fX;
469 SkScalar s1 = rotation1.fY;
470 SkScalar scaleX = scale.fX;
471 SkScalar scaleY = scale.fY;
472 SkScalar c2 = rotation2.fX;
473 SkScalar s2 = rotation2.fY;
skia.committer@gmail.com85092f02013-09-04 07:01:39 +0000474
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000475 // We do a relative check here because large scale factors cause problems with an absolute check
476 bool result = scalar_nearly_equal_relative(mat[SkMatrix::kMScaleX],
477 scaleX*c1*c2 - scaleY*s1*s2) &&
478 scalar_nearly_equal_relative(mat[SkMatrix::kMSkewX],
479 -scaleX*s1*c2 - scaleY*c1*s2) &&
480 scalar_nearly_equal_relative(mat[SkMatrix::kMSkewY],
481 scaleX*c1*s2 + scaleY*s1*c2) &&
482 scalar_nearly_equal_relative(mat[SkMatrix::kMScaleY],
483 -scaleX*s1*s2 + scaleY*c1*c2);
484 return result;
485}
486
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000487static void test_matrix_decomposition(skiatest::Reporter* reporter) {
488 SkMatrix mat;
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000489 SkPoint rotation1, scale, rotation2;
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000490
491 const float kRotation0 = 15.5f;
492 const float kRotation1 = -50.f;
493 const float kScale0 = 5000.f;
494 const float kScale1 = 0.001f;
495
496 // identity
497 mat.reset();
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000498 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
499 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000500 // make sure it doesn't crash if we pass in NULLs
halcanary96fcdcc2015-08-27 07:41:13 -0700501 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, nullptr, nullptr, nullptr));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000502
503 // rotation only
504 mat.setRotate(kRotation0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000505 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
506 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000507
508 // uniform scale only
509 mat.setScale(kScale0, kScale0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000510 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
511 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000512
513 // anisotropic scale only
514 mat.setScale(kScale1, kScale0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000515 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
516 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000517
518 // rotation then uniform scale
Mike Reed97245822019-07-18 11:37:43 -0400519 mat.setRotate(kRotation1).postScale(kScale0, kScale0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000520 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
521 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000522
523 // uniform scale then rotation
Mike Reed97245822019-07-18 11:37:43 -0400524 mat.setScale(kScale0, kScale0).postRotate(kRotation1);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000525 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
526 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000527
528 // rotation then uniform scale+reflection
Mike Reed97245822019-07-18 11:37:43 -0400529 mat.setRotate(kRotation0).postScale(kScale1, -kScale1);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000530 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
531 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000532
533 // uniform scale+reflection, then rotate
Mike Reed97245822019-07-18 11:37:43 -0400534 mat.setScale(kScale0, -kScale0).postRotate(kRotation1);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000535 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
536 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000537
538 // rotation then anisotropic scale
Mike Reed97245822019-07-18 11:37:43 -0400539 mat.setRotate(kRotation1).postScale(kScale1, kScale0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000540 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
541 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000542
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000543 // rotation then anisotropic scale
Mike Reed97245822019-07-18 11:37:43 -0400544 mat.setRotate(90).postScale(kScale1, kScale0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000545 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
546 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
skia.committer@gmail.com85092f02013-09-04 07:01:39 +0000547
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000548 // anisotropic scale then rotation
Mike Reed97245822019-07-18 11:37:43 -0400549 mat.setScale(kScale1, kScale0).postRotate(kRotation0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000550 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
551 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
skia.committer@gmail.com85092f02013-09-04 07:01:39 +0000552
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000553 // anisotropic scale then rotation
Mike Reed97245822019-07-18 11:37:43 -0400554 mat.setScale(kScale1, kScale0).postRotate(90);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000555 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
556 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000557
558 // rotation, uniform scale, then different rotation
Mike Reed97245822019-07-18 11:37:43 -0400559 mat.setRotate(kRotation1).postScale(kScale0, kScale0).postRotate(kRotation0);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000560 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
561 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000562
563 // rotation, anisotropic scale, then different rotation
Mike Reed97245822019-07-18 11:37:43 -0400564 mat.setRotate(kRotation0).postScale(kScale1, kScale0).postRotate(kRotation1);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000565 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
566 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
skia.committer@gmail.com85092f02013-09-04 07:01:39 +0000567
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000568 // rotation, anisotropic scale + reflection, then different rotation
Mike Reed97245822019-07-18 11:37:43 -0400569 mat.setRotate(kRotation0).postScale(-kScale1, kScale0).postRotate(kRotation1);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000570 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
571 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000572
573 // try some random matrices
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000574 SkRandom rand;
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000575 for (int m = 0; m < 1000; ++m) {
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000576 SkScalar rot0 = rand.nextRangeF(-180, 180);
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000577 SkScalar sx = rand.nextRangeF(-3000.f, 3000.f);
578 SkScalar sy = rand.nextRangeF(-3000.f, 3000.f);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000579 SkScalar rot1 = rand.nextRangeF(-180, 180);
Mike Reed97245822019-07-18 11:37:43 -0400580 mat.setRotate(rot0).postScale(sx, sy).postRotate(rot1);
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000581
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000582 if (SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)) {
583 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000584 } else {
585 // if the matrix is degenerate, the basis vectors should be near-parallel or near-zero
586 SkScalar perpdot = mat[SkMatrix::kMScaleX]*mat[SkMatrix::kMScaleY] -
587 mat[SkMatrix::kMSkewX]*mat[SkMatrix::kMSkewY];
588 REPORTER_ASSERT(reporter, SkScalarNearlyZero(perpdot));
589 }
590 }
591
592 // translation shouldn't affect this
593 mat.postTranslate(-1000.f, 1000.f);
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000594 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
595 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000596
597 // perspective shouldn't affect this
jvanverth@google.com588f3d32013-07-24 18:44:10 +0000598 mat[SkMatrix::kMPersp0] = 12.f;
599 mat[SkMatrix::kMPersp1] = 4.f;
600 mat[SkMatrix::kMPersp2] = 1872.f;
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000601 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
602 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000603
604 // degenerate matrices
605 // mostly zero entries
606 mat.reset();
607 mat[SkMatrix::kMScaleX] = 0.f;
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000608 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000609 mat.reset();
610 mat[SkMatrix::kMScaleY] = 0.f;
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000611 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000612 mat.reset();
613 // linearly dependent entries
614 mat[SkMatrix::kMScaleX] = 1.f;
615 mat[SkMatrix::kMSkewX] = 2.f;
616 mat[SkMatrix::kMSkewY] = 4.f;
617 mat[SkMatrix::kMScaleY] = 8.f;
commit-bot@chromium.org5b2e2642013-09-03 19:08:14 +0000618 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2));
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000619}
620
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000621// For test_matrix_homogeneous, below.
Cary Clarke4442cb2017-10-18 11:46:18 -0400622static bool point3_array_nearly_equal_relative(const SkPoint3 a[], const SkPoint3 b[], int count) {
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000623 for (int i = 0; i < count; ++i) {
Cary Clarke4442cb2017-10-18 11:46:18 -0400624 if (!scalar_nearly_equal_relative(a[i].fX, b[i].fX)) {
625 return false;
626 }
627 if (!scalar_nearly_equal_relative(a[i].fY, b[i].fY)) {
628 return false;
629 }
630 if (!scalar_nearly_equal_relative(a[i].fZ, b[i].fZ)) {
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000631 return false;
632 }
633 }
634 return true;
635}
636
637// For test_matrix_homogeneous, below.
638// Maps a single triple in src using m and compares results to those in dst
Cary Clarke4442cb2017-10-18 11:46:18 -0400639static bool naive_homogeneous_mapping(const SkMatrix& m, const SkPoint3& src,
640 const SkPoint3& dst) {
641 SkPoint3 res;
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000642 SkScalar ms[9] = {m[0], m[1], m[2],
643 m[3], m[4], m[5],
644 m[6], m[7], m[8]};
Cary Clarke4442cb2017-10-18 11:46:18 -0400645 res.fX = src.fX * ms[0] + src.fY * ms[1] + src.fZ * ms[2];
646 res.fY = src.fX * ms[3] + src.fY * ms[4] + src.fZ * ms[5];
647 res.fZ = src.fX * ms[6] + src.fY * ms[7] + src.fZ * ms[8];
648 return point3_array_nearly_equal_relative(&res, &dst, 1);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000649}
650
651static void test_matrix_homogeneous(skiatest::Reporter* reporter) {
652 SkMatrix mat;
653
654 const float kRotation0 = 15.5f;
655 const float kRotation1 = -50.f;
656 const float kScale0 = 5000.f;
657
Mike Klein6613cc52017-12-19 09:09:33 -0500658#if defined(SK_BUILD_FOR_GOOGLE3)
659 // Stack frame size is limited in SK_BUILD_FOR_GOOGLE3.
benjaminwagner7d974f52015-10-19 13:55:55 -0700660 const int kTripleCount = 100;
661 const int kMatrixCount = 100;
662#else
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000663 const int kTripleCount = 1000;
664 const int kMatrixCount = 1000;
benjaminwagner7d974f52015-10-19 13:55:55 -0700665#endif
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000666 SkRandom rand;
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000667
Cary Clarke4442cb2017-10-18 11:46:18 -0400668 SkPoint3 randTriples[kTripleCount];
669 for (int i = 0; i < kTripleCount; ++i) {
670 randTriples[i].fX = rand.nextRangeF(-3000.f, 3000.f);
671 randTriples[i].fY = rand.nextRangeF(-3000.f, 3000.f);
672 randTriples[i].fZ = rand.nextRangeF(-3000.f, 3000.f);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000673 }
674
675 SkMatrix mats[kMatrixCount];
676 for (int i = 0; i < kMatrixCount; ++i) {
677 for (int j = 0; j < 9; ++j) {
678 mats[i].set(j, rand.nextRangeF(-3000.f, 3000.f));
679 }
680 }
681
682 // identity
683 {
684 mat.reset();
Cary Clarke4442cb2017-10-18 11:46:18 -0400685 SkPoint3 dst[kTripleCount];
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000686 mat.mapHomogeneousPoints(dst, randTriples, kTripleCount);
Cary Clarke4442cb2017-10-18 11:46:18 -0400687 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(randTriples, dst, kTripleCount));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000688 }
689
Cary Clarke4442cb2017-10-18 11:46:18 -0400690 const SkPoint3 zeros = {0.f, 0.f, 0.f};
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000691 // zero matrix
692 {
693 mat.setAll(0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f, 0.f);
Cary Clarke4442cb2017-10-18 11:46:18 -0400694 SkPoint3 dst[kTripleCount];
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000695 mat.mapHomogeneousPoints(dst, randTriples, kTripleCount);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000696 for (int i = 0; i < kTripleCount; ++i) {
Cary Clarke4442cb2017-10-18 11:46:18 -0400697 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(&dst[i], &zeros, 1));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000698 }
699 }
700
701 // zero point
702 {
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000703 for (int i = 0; i < kMatrixCount; ++i) {
Cary Clarke4442cb2017-10-18 11:46:18 -0400704 SkPoint3 dst;
705 mats[i].mapHomogeneousPoints(&dst, &zeros, 1);
706 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(&dst, &zeros, 1));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000707 }
708 }
709
710 // doesn't crash with null dst, src, count == 0
711 {
Mike Reed190b82d2019-12-17 17:25:27 -0500712 mats[0].mapHomogeneousPoints(nullptr, (const SkPoint3*)nullptr, 0);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000713 }
714
715 // uniform scale of point
716 {
717 mat.setScale(kScale0, kScale0);
Cary Clarke4442cb2017-10-18 11:46:18 -0400718 SkPoint3 dst;
719 SkPoint3 src = {randTriples[0].fX, randTriples[0].fY, 1.f};
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000720 SkPoint pnt;
Cary Clarke4442cb2017-10-18 11:46:18 -0400721 pnt.set(src.fX, src.fY);
722 mat.mapHomogeneousPoints(&dst, &src, 1);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000723 mat.mapPoints(&pnt, &pnt, 1);
Cary Clarke4442cb2017-10-18 11:46:18 -0400724 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX));
725 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY));
Mike Reed97245822019-07-18 11:37:43 -0400726 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000727 }
728
729 // rotation of point
730 {
731 mat.setRotate(kRotation0);
Cary Clarke4442cb2017-10-18 11:46:18 -0400732 SkPoint3 dst;
733 SkPoint3 src = {randTriples[0].fX, randTriples[0].fY, 1.f};
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000734 SkPoint pnt;
Cary Clarke4442cb2017-10-18 11:46:18 -0400735 pnt.set(src.fX, src.fY);
736 mat.mapHomogeneousPoints(&dst, &src, 1);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000737 mat.mapPoints(&pnt, &pnt, 1);
Cary Clarke4442cb2017-10-18 11:46:18 -0400738 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX));
739 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY));
Mike Reed97245822019-07-18 11:37:43 -0400740 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000741 }
742
743 // rotation, scale, rotation of point
744 {
745 mat.setRotate(kRotation1);
746 mat.postScale(kScale0, kScale0);
747 mat.postRotate(kRotation0);
Cary Clarke4442cb2017-10-18 11:46:18 -0400748 SkPoint3 dst;
749 SkPoint3 src = {randTriples[0].fX, randTriples[0].fY, 1.f};
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000750 SkPoint pnt;
Cary Clarke4442cb2017-10-18 11:46:18 -0400751 pnt.set(src.fX, src.fY);
752 mat.mapHomogeneousPoints(&dst, &src, 1);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000753 mat.mapPoints(&pnt, &pnt, 1);
Cary Clarke4442cb2017-10-18 11:46:18 -0400754 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX));
755 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY));
Mike Reed97245822019-07-18 11:37:43 -0400756 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000757 }
758
759 // compare with naive approach
760 {
761 for (int i = 0; i < kMatrixCount; ++i) {
762 for (int j = 0; j < kTripleCount; ++j) {
Cary Clarke4442cb2017-10-18 11:46:18 -0400763 SkPoint3 dst;
764 mats[i].mapHomogeneousPoints(&dst, &randTriples[j], 1);
765 REPORTER_ASSERT(reporter, naive_homogeneous_mapping(mats[i], randTriples[j], dst));
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000766 }
767 }
768 }
769
770}
771
Robert Phillipsc100d482018-07-10 10:11:01 -0400772static bool check_decompScale(const SkMatrix& original) {
reedadf99902015-03-19 16:10:54 -0700773 SkSize scale;
774 SkMatrix remaining;
775
Robert Phillipsc100d482018-07-10 10:11:01 -0400776 if (!original.decomposeScale(&scale, &remaining)) {
reedadf99902015-03-19 16:10:54 -0700777 return false;
778 }
779 if (scale.width() <= 0 || scale.height() <= 0) {
780 return false;
781 }
Robert Phillipsc100d482018-07-10 10:11:01 -0400782
783 // First ensure that the decomposition reconstitutes back to the original
784 {
785 SkMatrix reconstituted = remaining;
786
Michael Ludwigaa861a12019-07-19 10:13:47 -0400787 reconstituted.preScale(scale.width(), scale.height());
Robert Phillipsc100d482018-07-10 10:11:01 -0400788 if (!nearly_equal(original, reconstituted)) {
789 return false;
790 }
791 }
792
793 // Then push some points through both paths and make sure they are the same.
794 static const int kNumPoints = 5;
795 const SkPoint testPts[kNumPoints] = {
796 { 0.0f, 0.0f },
797 { 1.0f, 1.0f },
798 { 1.0f, 0.5f },
799 { -1.0f, -0.5f },
800 { -1.0f, 2.0f }
801 };
802
803 SkPoint v1[kNumPoints];
804 original.mapPoints(v1, testPts, kNumPoints);
805
806 SkPoint v2[kNumPoints];
Mike Reed1f607332020-05-21 12:11:27 -0400807 SkMatrix scaleMat = SkMatrix::Scale(scale.width(), scale.height());
Robert Phillipsc100d482018-07-10 10:11:01 -0400808
809 // Note, we intend the decomposition to be applied in the order scale and then remainder but,
810 // due to skbug.com/7211, the order is reversed!
Michael Ludwigaa861a12019-07-19 10:13:47 -0400811 scaleMat.mapPoints(v2, testPts, kNumPoints);
812 remaining.mapPoints(v2, kNumPoints);
Robert Phillipsc100d482018-07-10 10:11:01 -0400813
814 for (int i = 0; i < kNumPoints; ++i) {
815 if (!SkPointPriv::EqualsWithinTolerance(v1[i], v2[i], 0.00001f)) {
816 return false;
817 }
818 }
819
820 return true;
reedadf99902015-03-19 16:10:54 -0700821}
822
823static void test_decompScale(skiatest::Reporter* reporter) {
824 SkMatrix m;
825
826 m.reset();
827 REPORTER_ASSERT(reporter, check_decompScale(m));
828 m.setScale(2, 3);
829 REPORTER_ASSERT(reporter, check_decompScale(m));
830 m.setRotate(35, 0, 0);
831 REPORTER_ASSERT(reporter, check_decompScale(m));
832
833 m.setScale(1, 0);
834 REPORTER_ASSERT(reporter, !check_decompScale(m));
Robert Phillipsc100d482018-07-10 10:11:01 -0400835
Mike Reed97245822019-07-18 11:37:43 -0400836 m.setRotate(35, 0, 0).preScale(2, 3);
Robert Phillipsc100d482018-07-10 10:11:01 -0400837 REPORTER_ASSERT(reporter, check_decompScale(m));
838
Mike Reed97245822019-07-18 11:37:43 -0400839 m.setRotate(35, 0, 0).postScale(2, 3);
Robert Phillipsc100d482018-07-10 10:11:01 -0400840 REPORTER_ASSERT(reporter, check_decompScale(m));
reedadf99902015-03-19 16:10:54 -0700841}
842
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +0000843DEF_TEST(Matrix, reporter) {
reed@android.comed673312009-02-27 16:24:51 +0000844 SkMatrix mat, inverse, iden1, iden2;
845
846 mat.reset();
Mike Reed97245822019-07-18 11:37:43 -0400847 mat.setTranslate(1, 1);
reed@google.com5bfa55b2012-04-19 18:59:25 +0000848 REPORTER_ASSERT(reporter, mat.invert(&inverse));
reed@android.comed673312009-02-27 16:24:51 +0000849 iden1.setConcat(mat, inverse);
850 REPORTER_ASSERT(reporter, is_identity(iden1));
851
Mike Reed97245822019-07-18 11:37:43 -0400852 mat.setScale(2, 4);
reed@google.com5bfa55b2012-04-19 18:59:25 +0000853 REPORTER_ASSERT(reporter, mat.invert(&inverse));
reed@android.comed673312009-02-27 16:24:51 +0000854 iden1.setConcat(mat, inverse);
855 REPORTER_ASSERT(reporter, is_identity(iden1));
reed@android.com4b7577b2009-06-29 16:14:41 +0000856 test_flatten(reporter, mat);
reed@android.comed673312009-02-27 16:24:51 +0000857
Mike Reed97245822019-07-18 11:37:43 -0400858 mat.setScale(SK_Scalar1/2, 2);
reed@google.com5bfa55b2012-04-19 18:59:25 +0000859 REPORTER_ASSERT(reporter, mat.invert(&inverse));
reed@android.comed673312009-02-27 16:24:51 +0000860 iden1.setConcat(mat, inverse);
861 REPORTER_ASSERT(reporter, is_identity(iden1));
reed@android.com4b7577b2009-06-29 16:14:41 +0000862 test_flatten(reporter, mat);
reed@android.comed673312009-02-27 16:24:51 +0000863
Mike Reed97245822019-07-18 11:37:43 -0400864 mat.setScale(3, 5, 20, 0).postRotate(25);
halcanary96fcdcc2015-08-27 07:41:13 -0700865 REPORTER_ASSERT(reporter, mat.invert(nullptr));
reed@google.com5bfa55b2012-04-19 18:59:25 +0000866 REPORTER_ASSERT(reporter, mat.invert(&inverse));
reed@android.comed673312009-02-27 16:24:51 +0000867 iden1.setConcat(mat, inverse);
868 REPORTER_ASSERT(reporter, is_identity(iden1));
869 iden2.setConcat(inverse, mat);
870 REPORTER_ASSERT(reporter, is_identity(iden2));
reed@android.com4b7577b2009-06-29 16:14:41 +0000871 test_flatten(reporter, mat);
872 test_flatten(reporter, iden2);
reed@android.com80e39a72009-04-02 16:59:40 +0000873
Mike Reed97245822019-07-18 11:37:43 -0400874 mat.setScale(0, 1);
halcanary96fcdcc2015-08-27 07:41:13 -0700875 REPORTER_ASSERT(reporter, !mat.invert(nullptr));
reed@google.com2fb96cc2013-01-04 17:02:33 +0000876 REPORTER_ASSERT(reporter, !mat.invert(&inverse));
Mike Reed97245822019-07-18 11:37:43 -0400877 mat.setScale(1, 0);
halcanary96fcdcc2015-08-27 07:41:13 -0700878 REPORTER_ASSERT(reporter, !mat.invert(nullptr));
reed@google.com2fb96cc2013-01-04 17:02:33 +0000879 REPORTER_ASSERT(reporter, !mat.invert(&inverse));
880
robertphillips20eee3f2015-06-19 05:14:26 -0700881 // Inverting this matrix results in a non-finite matrix
882 mat.setAll(0.0f, 1.0f, 2.0f,
883 0.0f, 1.0f, -3.40277175e+38f,
884 1.00003040f, 1.0f, 0.0f);
halcanary96fcdcc2015-08-27 07:41:13 -0700885 REPORTER_ASSERT(reporter, !mat.invert(nullptr));
robertphillips20eee3f2015-06-19 05:14:26 -0700886 REPORTER_ASSERT(reporter, !mat.invert(&inverse));
887
reed@android.comed673312009-02-27 16:24:51 +0000888 // rectStaysRect test
889 {
890 static const struct {
891 SkScalar m00, m01, m10, m11;
892 bool mStaysRect;
893 }
894 gRectStaysRectSamples[] = {
Mike Reed97245822019-07-18 11:37:43 -0400895 { 0, 0, 0, 0, false },
896 { 0, 0, 0, 1, false },
897 { 0, 0, 1, 0, false },
898 { 0, 0, 1, 1, false },
899 { 0, 1, 0, 0, false },
900 { 0, 1, 0, 1, false },
901 { 0, 1, 1, 0, true },
902 { 0, 1, 1, 1, false },
903 { 1, 0, 0, 0, false },
904 { 1, 0, 0, 1, true },
905 { 1, 0, 1, 0, false },
906 { 1, 0, 1, 1, false },
907 { 1, 1, 0, 0, false },
908 { 1, 1, 0, 1, false },
909 { 1, 1, 1, 0, false },
910 { 1, 1, 1, 1, false }
reed@android.comed673312009-02-27 16:24:51 +0000911 };
reed@android.com80e39a72009-04-02 16:59:40 +0000912
reed@android.comed673312009-02-27 16:24:51 +0000913 for (size_t i = 0; i < SK_ARRAY_COUNT(gRectStaysRectSamples); i++) {
914 SkMatrix m;
reed@android.com80e39a72009-04-02 16:59:40 +0000915
reed@android.comed673312009-02-27 16:24:51 +0000916 m.reset();
917 m.set(SkMatrix::kMScaleX, gRectStaysRectSamples[i].m00);
918 m.set(SkMatrix::kMSkewX, gRectStaysRectSamples[i].m01);
919 m.set(SkMatrix::kMSkewY, gRectStaysRectSamples[i].m10);
920 m.set(SkMatrix::kMScaleY, gRectStaysRectSamples[i].m11);
921 REPORTER_ASSERT(reporter,
922 m.rectStaysRect() == gRectStaysRectSamples[i].mStaysRect);
923 }
924 }
bungeman@google.com1ddd7c32011-07-13 19:41:55 +0000925
bungeman@google.comba7983e2011-07-13 20:18:16 +0000926 mat.reset();
Mike Reed97245822019-07-18 11:37:43 -0400927 mat.set(SkMatrix::kMScaleX, 1)
928 .set(SkMatrix::kMSkewX, 2)
929 .set(SkMatrix::kMTransX, 3)
930 .set(SkMatrix::kMSkewY, 4)
931 .set(SkMatrix::kMScaleY, 5)
932 .set(SkMatrix::kMTransY, 6);
bungeman@google.com1ddd7c32011-07-13 19:41:55 +0000933 SkScalar affine[6];
934 REPORTER_ASSERT(reporter, mat.asAffine(affine));
935
Mike Reedf0cb7a02017-10-13 13:26:00 +0000936 #define affineEqual(e) affine[SkMatrix::kA##e] == mat.get(SkMatrix::kM##e)
bungeman@google.com1ddd7c32011-07-13 19:41:55 +0000937 REPORTER_ASSERT(reporter, affineEqual(ScaleX));
938 REPORTER_ASSERT(reporter, affineEqual(SkewY));
939 REPORTER_ASSERT(reporter, affineEqual(SkewX));
940 REPORTER_ASSERT(reporter, affineEqual(ScaleY));
941 REPORTER_ASSERT(reporter, affineEqual(TransX));
942 REPORTER_ASSERT(reporter, affineEqual(TransY));
943 #undef affineEqual
944
reed3f43f8a2015-01-20 19:58:36 -0800945 mat.set(SkMatrix::kMPersp1, SK_Scalar1 / 2);
bungeman@google.com1ddd7c32011-07-13 19:41:55 +0000946 REPORTER_ASSERT(reporter, !mat.asAffine(affine));
bsalomon@google.com38396322011-09-09 19:32:04 +0000947
bsalomon@google.com8fe84b52012-03-26 15:24:27 +0000948 SkMatrix mat2;
949 mat2.reset();
950 mat.reset();
951 SkScalar zero = 0;
952 mat.set(SkMatrix::kMSkewX, -zero);
953 REPORTER_ASSERT(reporter, are_equal(reporter, mat, mat2));
954
955 mat2.reset();
956 mat.reset();
957 mat.set(SkMatrix::kMSkewX, SK_ScalarNaN);
958 mat2.set(SkMatrix::kMSkewX, SK_ScalarNaN);
959 REPORTER_ASSERT(reporter, !are_equal(reporter, mat, mat2));
960
commit-bot@chromium.org18786512014-05-20 14:53:45 +0000961 test_matrix_min_max_scale(reporter);
jvanverth17a845f2014-09-02 13:15:40 -0700962 test_matrix_preserve_shape(reporter);
reed@google.com97cd69c2012-10-12 14:35:48 +0000963 test_matrix_recttorect(reporter);
commit-bot@chromium.org08284e42013-07-24 18:08:08 +0000964 test_matrix_decomposition(reporter);
egdaniel@google.com259fbaf2013-08-15 21:12:11 +0000965 test_matrix_homogeneous(reporter);
reed451e8222014-12-13 08:46:48 -0800966 test_set9(reporter);
reedadf99902015-03-19 16:10:54 -0700967
968 test_decompScale(reporter);
reed2dcb6152016-07-05 20:10:42 -0700969
970 mat.setScaleTranslate(2, 3, 1, 4);
Mike Reed97245822019-07-18 11:37:43 -0400971 mat2.setScale(2, 3).postTranslate(1, 4);
reed2dcb6152016-07-05 20:10:42 -0700972 REPORTER_ASSERT(reporter, mat == mat2);
reed@android.comed673312009-02-27 16:24:51 +0000973}
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +0000974
975DEF_TEST(Matrix_Concat, r) {
976 SkMatrix a;
977 a.setTranslate(10, 20);
978
979 SkMatrix b;
980 b.setScale(3, 5);
981
982 SkMatrix expected;
983 expected.setConcat(a,b);
984
985 REPORTER_ASSERT(r, expected == SkMatrix::Concat(a, b));
986}
reed47df89e2016-06-30 06:38:54 -0700987
988// Test that all variants of maprect are correct.
989DEF_TEST(Matrix_maprects, r) {
990 const SkScalar scale = 1000;
Ben Wagner63fd7602017-10-09 15:45:33 -0400991
reed47df89e2016-06-30 06:38:54 -0700992 SkMatrix mat;
Mike Reed97245822019-07-18 11:37:43 -0400993 mat.setScale(2, 3).postTranslate(1, 4);
reed47df89e2016-06-30 06:38:54 -0700994
995 SkRandom rand;
996 for (int i = 0; i < 10000; ++i) {
997 SkRect src = SkRect::MakeLTRB(rand.nextSScalar1() * scale,
998 rand.nextSScalar1() * scale,
999 rand.nextSScalar1() * scale,
1000 rand.nextSScalar1() * scale);
Cary Clarkc06754b2018-05-16 21:28:55 -04001001 SkRect dst[4];
Ben Wagner63fd7602017-10-09 15:45:33 -04001002
reed47df89e2016-06-30 06:38:54 -07001003 mat.mapPoints((SkPoint*)&dst[0].fLeft, (SkPoint*)&src.fLeft, 2);
1004 dst[0].sort();
1005 mat.mapRect(&dst[1], src);
halcanaryc5769b22016-08-10 07:13:21 -07001006 mat.mapRectScaleTranslate(&dst[2], src);
Cary Clarkc06754b2018-05-16 21:28:55 -04001007 dst[3] = mat.mapRect(src);
reed47df89e2016-06-30 06:38:54 -07001008
1009 REPORTER_ASSERT(r, dst[0] == dst[1]);
1010 REPORTER_ASSERT(r, dst[0] == dst[2]);
Cary Clarkc06754b2018-05-16 21:28:55 -04001011 REPORTER_ASSERT(r, dst[0] == dst[3]);
1012 }
1013
1014 // We should report nonfinite-ness after a mapping
1015 {
1016 // We have special-cases in mapRect for different matrix types
Mike Reed1f607332020-05-21 12:11:27 -04001017 SkMatrix m0 = SkMatrix::Scale(1e20f, 1e20f);
Cary Clarkc06754b2018-05-16 21:28:55 -04001018 SkMatrix m1; m1.setRotate(30); m1.postScale(1e20f, 1e20f);
1019
1020 for (const auto& m : { m0, m1 }) {
1021 SkRect rect = { 0, 0, 1e20f, 1e20f };
1022 REPORTER_ASSERT(r, rect.isFinite());
1023 rect = m.mapRect(rect);
1024 REPORTER_ASSERT(r, !rect.isFinite());
1025 }
reed47df89e2016-06-30 06:38:54 -07001026 }
1027}
Mike Kleine0eeda52019-04-15 16:12:31 -05001028
1029DEF_TEST(Matrix_Ctor, r) {
1030 REPORTER_ASSERT(r, SkMatrix{} == SkMatrix::I());
1031}