Lines Matching refs:reporter
36 static bool are_equal(skiatest::Reporter* reporter, in are_equal() argument
52 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
55 REPORTER_ASSERT(reporter, foundZeroSignDiff); in are_equal()
66 REPORTER_ASSERT(reporter, aVal == bVal && aValI == bValI); in are_equal()
69 REPORTER_ASSERT(reporter, foundNaN); in are_equal()
81 static void assert9(skiatest::Reporter* reporter, const SkMatrix& m, in assert9() argument
87 REPORTER_ASSERT(reporter, buffer[0] == a); in assert9()
88 REPORTER_ASSERT(reporter, buffer[1] == b); in assert9()
89 REPORTER_ASSERT(reporter, buffer[2] == c); in assert9()
90 REPORTER_ASSERT(reporter, buffer[3] == d); in assert9()
91 REPORTER_ASSERT(reporter, buffer[4] == e); in assert9()
92 REPORTER_ASSERT(reporter, buffer[5] == f); in assert9()
93 REPORTER_ASSERT(reporter, buffer[6] == g); in assert9()
94 REPORTER_ASSERT(reporter, buffer[7] == h); in assert9()
95 REPORTER_ASSERT(reporter, buffer[8] == i); in assert9()
98 static void test_set9(skiatest::Reporter* reporter) { in test_set9() argument
102 assert9(reporter, m, 1, 0, 0, 0, 1, 0, 0, 0, 1); in test_set9()
105 assert9(reporter, m, 2, 0, 0, 0, 3, 0, 0, 0, 1); in test_set9()
108 assert9(reporter, m, 2, 0, 4, 0, 3, 5, 0, 0, 1); in test_set9()
115 REPORTER_ASSERT(reporter, !m.isIdentity()); in test_set9()
117 REPORTER_ASSERT(reporter, m.isIdentity()); in test_set9()
120 static void test_matrix_recttorect(skiatest::Reporter* reporter) { in test_matrix_recttorect() argument
127 REPORTER_ASSERT(reporter, SkMatrix::kIdentity_Mask == matrix.getType()); in test_matrix_recttorect()
128 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect()
132 REPORTER_ASSERT(reporter, SkMatrix::kTranslate_Mask == matrix.getType()); in test_matrix_recttorect()
133 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect()
137 REPORTER_ASSERT(reporter, in test_matrix_recttorect()
139 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect()
144 REPORTER_ASSERT(reporter, SkMatrix::kScale_Mask == matrix.getType()); in test_matrix_recttorect()
145 REPORTER_ASSERT(reporter, matrix.rectStaysRect()); in test_matrix_recttorect()
148 static void test_flatten(skiatest::Reporter* reporter, const SkMatrix& m) { in test_flatten() argument
154 REPORTER_ASSERT(reporter, size1 == size2); in test_flatten()
155 REPORTER_ASSERT(reporter, size1 <= SkMatrixPriv::kMaxFlattenSize); in test_flatten()
159 REPORTER_ASSERT(reporter, size1 == size3); in test_flatten()
160 REPORTER_ASSERT(reporter, are_equal(reporter, m, m2)); in test_flatten()
164 REPORTER_ASSERT(reporter, size1 == size3); in test_flatten()
165 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0); in test_flatten()
168 static void test_matrix_min_max_scale(skiatest::Reporter* reporter) { in test_matrix_min_max_scale() argument
174 REPORTER_ASSERT(reporter, 1 == identity.getMinScale()); in test_matrix_min_max_scale()
175 REPORTER_ASSERT(reporter, 1 == identity.getMaxScale()); in test_matrix_min_max_scale()
177 REPORTER_ASSERT(reporter, success && 1 == scales[0] && 1 == scales[1]); in test_matrix_min_max_scale()
181 REPORTER_ASSERT(reporter, 2 == scale.getMinScale()); in test_matrix_min_max_scale()
182 REPORTER_ASSERT(reporter, 4 == scale.getMaxScale()); in test_matrix_min_max_scale()
184 REPORTER_ASSERT(reporter, success && 2 == scales[0] && 4 == scales[1]); in test_matrix_min_max_scale()
188 REPORTER_ASSERT(reporter, SK_Scalar1 / 4 == rot90Scale.getMinScale()); in test_matrix_min_max_scale()
189 REPORTER_ASSERT(reporter, SK_Scalar1 / 2 == rot90Scale.getMaxScale()); in test_matrix_min_max_scale()
191 … REPORTER_ASSERT(reporter, success && SK_Scalar1 / 4 == scales[0] && SK_Scalar1 / 2 == scales[1]); in test_matrix_min_max_scale()
195 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, rotate.getMinScale(), SK_ScalarNearlyZero)); in test_matrix_min_max_scale()
196 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, rotate.getMaxScale(), SK_ScalarNearlyZero)); in test_matrix_min_max_scale()
198 REPORTER_ASSERT(reporter, success); in test_matrix_min_max_scale()
199 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, scales[0], SK_ScalarNearlyZero)); in test_matrix_min_max_scale()
200 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(1, scales[1], SK_ScalarNearlyZero)); in test_matrix_min_max_scale()
204 REPORTER_ASSERT(reporter, 1 == translate.getMinScale()); in test_matrix_min_max_scale()
205 REPORTER_ASSERT(reporter, 1 == translate.getMaxScale()); in test_matrix_min_max_scale()
207 REPORTER_ASSERT(reporter, success && 1 == scales[0] && 1 == scales[1]); in test_matrix_min_max_scale()
211 REPORTER_ASSERT(reporter, -1 == perspX.getMinScale()); in test_matrix_min_max_scale()
212 REPORTER_ASSERT(reporter, -1 == perspX.getMaxScale()); in test_matrix_min_max_scale()
214 REPORTER_ASSERT(reporter, !success); in test_matrix_min_max_scale()
222 REPORTER_ASSERT(reporter, !success); in test_matrix_min_max_scale()
230 REPORTER_ASSERT(reporter, success && 0 == scales[0]); in test_matrix_min_max_scale()
234 REPORTER_ASSERT(reporter, -1 == perspY.getMinScale()); in test_matrix_min_max_scale()
235 REPORTER_ASSERT(reporter, -1 == perspY.getMaxScale()); in test_matrix_min_max_scale()
239 REPORTER_ASSERT(reporter, !success && -5 == scales[0] && -5 == scales[1]); in test_matrix_min_max_scale()
247 REPORTER_ASSERT(reporter, invertible); in test_matrix_min_max_scale()
260 REPORTER_ASSERT(reporter, (minScale < 0) == (maxScale < 0)); in test_matrix_min_max_scale()
261 REPORTER_ASSERT(reporter, (maxScale < 0) == mat.hasPerspective()); in test_matrix_min_max_scale()
265 REPORTER_ASSERT(reporter, success == !mat.hasPerspective()); in test_matrix_min_max_scale()
266 REPORTER_ASSERT(reporter, !success || (scales[0] == minScale && scales[1] == maxScale)); in test_matrix_min_max_scale()
290 REPORTER_ASSERT(reporter, d / maxScale < gVectorScaleTol); in test_matrix_min_max_scale()
291 REPORTER_ASSERT(reporter, minScale / d < gVectorScaleTol); in test_matrix_min_max_scale()
299 REPORTER_ASSERT(reporter, max / maxScale >= gCloseScaleTol); in test_matrix_min_max_scale()
300 REPORTER_ASSERT(reporter, minScale / min >= gCloseScaleTol); in test_matrix_min_max_scale()
304 static void test_matrix_preserve_shape(skiatest::Reporter* reporter) { in test_matrix_preserve_shape() argument
309 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
310 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
314 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
315 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
319 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
320 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
324 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
325 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
329 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
330 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
334 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
335 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
339 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
340 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
344 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
345 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
349 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
350 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
354 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
355 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
359 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
360 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
364 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
365 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
369 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
370 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
375 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
376 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
384 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
385 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
389 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
390 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
394 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
395 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
399 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
400 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
404 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
405 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
409 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
410 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
414 REPORTER_ASSERT(reporter, !mat.isSimilarity()); in test_matrix_preserve_shape()
415 REPORTER_ASSERT(reporter, !mat.preservesRightAngles()); in test_matrix_preserve_shape()
421 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
422 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
428 REPORTER_ASSERT(reporter, mat.isSimilarity()); in test_matrix_preserve_shape()
429 REPORTER_ASSERT(reporter, mat.preservesRightAngles()); in test_matrix_preserve_shape()
477 static void test_matrix_decomposition(skiatest::Reporter* reporter) { in test_matrix_decomposition() argument
488 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
489 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
491 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, nullptr, nullptr, nullptr)); in test_matrix_decomposition()
495 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
496 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
500 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
501 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
505 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
506 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
510 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
511 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
515 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
516 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
520 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
521 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
525 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
526 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
530 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
531 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
535 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
536 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
540 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
541 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
545 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
546 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
550 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
551 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
555 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
556 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
560 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
561 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
573 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
578 REPORTER_ASSERT(reporter, SkScalarNearlyZero(perpdot)); in test_matrix_decomposition()
584 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
585 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
591 REPORTER_ASSERT(reporter, SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
592 REPORTER_ASSERT(reporter, check_matrix_recomposition(mat, rotation1, scale, rotation2)); in test_matrix_decomposition()
598 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
601 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
608 REPORTER_ASSERT(reporter, !SkDecomposeUpper2x2(mat, &rotation1, &scale, &rotation2)); in test_matrix_decomposition()
641 static void test_matrix_homogeneous(skiatest::Reporter* reporter) { in test_matrix_homogeneous() argument
677 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(randTriples, dst, kTripleCount)); in test_matrix_homogeneous()
687 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(&dst[i], &zeros, 1)); in test_matrix_homogeneous()
696 REPORTER_ASSERT(reporter, point3_array_nearly_equal_relative(&dst, &zeros, 1)); in test_matrix_homogeneous()
714 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX)); in test_matrix_homogeneous()
715 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY)); in test_matrix_homogeneous()
716 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1)); in test_matrix_homogeneous()
728 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX)); in test_matrix_homogeneous()
729 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY)); in test_matrix_homogeneous()
730 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1)); in test_matrix_homogeneous()
744 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fX, pnt.fX)); in test_matrix_homogeneous()
745 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fY, pnt.fY)); in test_matrix_homogeneous()
746 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.fZ, 1)); in test_matrix_homogeneous()
755 REPORTER_ASSERT(reporter, naive_homogeneous_mapping(mats[i], randTriples[j], dst)); in test_matrix_homogeneous()
813 static void test_decompScale(skiatest::Reporter* reporter) { in test_decompScale() argument
817 REPORTER_ASSERT(reporter, check_decompScale(m)); in test_decompScale()
819 REPORTER_ASSERT(reporter, check_decompScale(m)); in test_decompScale()
821 REPORTER_ASSERT(reporter, check_decompScale(m)); in test_decompScale()
824 REPORTER_ASSERT(reporter, !check_decompScale(m)); in test_decompScale()
827 REPORTER_ASSERT(reporter, check_decompScale(m)); in test_decompScale()
830 REPORTER_ASSERT(reporter, check_decompScale(m)); in test_decompScale()
833 DEF_TEST(Matrix, reporter) { in DEF_TEST() argument
838 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in DEF_TEST()
840 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
843 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in DEF_TEST()
845 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
846 test_flatten(reporter, mat); in DEF_TEST()
849 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in DEF_TEST()
851 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
852 test_flatten(reporter, mat); in DEF_TEST()
855 REPORTER_ASSERT(reporter, mat.invert(nullptr)); in DEF_TEST()
856 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in DEF_TEST()
858 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
860 REPORTER_ASSERT(reporter, is_identity(iden2)); in DEF_TEST()
861 test_flatten(reporter, mat); in DEF_TEST()
862 test_flatten(reporter, iden2); in DEF_TEST()
865 REPORTER_ASSERT(reporter, !mat.invert(nullptr)); in DEF_TEST()
866 REPORTER_ASSERT(reporter, !mat.invert(&inverse)); in DEF_TEST()
868 REPORTER_ASSERT(reporter, !mat.invert(nullptr)); in DEF_TEST()
869 REPORTER_ASSERT(reporter, !mat.invert(&inverse)); in DEF_TEST()
875 REPORTER_ASSERT(reporter, !mat.invert(nullptr)); in DEF_TEST()
876 REPORTER_ASSERT(reporter, !mat.invert(&inverse)); in DEF_TEST()
911 REPORTER_ASSERT(reporter, in DEF_TEST()
924 REPORTER_ASSERT(reporter, mat.asAffine(affine)); in DEF_TEST()
927 REPORTER_ASSERT(reporter, affineEqual(ScaleX)); in DEF_TEST()
928 REPORTER_ASSERT(reporter, affineEqual(SkewY)); in DEF_TEST()
929 REPORTER_ASSERT(reporter, affineEqual(SkewX)); in DEF_TEST()
930 REPORTER_ASSERT(reporter, affineEqual(ScaleY)); in DEF_TEST()
931 REPORTER_ASSERT(reporter, affineEqual(TransX)); in DEF_TEST()
932 REPORTER_ASSERT(reporter, affineEqual(TransY)); in DEF_TEST()
936 REPORTER_ASSERT(reporter, !mat.asAffine(affine)); in DEF_TEST()
943 REPORTER_ASSERT(reporter, are_equal(reporter, mat, mat2)); in DEF_TEST()
949 REPORTER_ASSERT(reporter, !are_equal(reporter, mat, mat2)); in DEF_TEST()
951 test_matrix_min_max_scale(reporter); in DEF_TEST()
952 test_matrix_preserve_shape(reporter); in DEF_TEST()
953 test_matrix_recttorect(reporter); in DEF_TEST()
954 test_matrix_decomposition(reporter); in DEF_TEST()
955 test_matrix_homogeneous(reporter); in DEF_TEST()
956 test_set9(reporter); in DEF_TEST()
958 test_decompScale(reporter); in DEF_TEST()
962 REPORTER_ASSERT(reporter, mat == mat2); in DEF_TEST()