Lines Matching refs:reporter
26 template <typename T> void assert16(skiatest::Reporter* reporter, const T data[], in assert16() argument
31 REPORTER_ASSERT(reporter, data[0] == m0); in assert16()
32 REPORTER_ASSERT(reporter, data[1] == m1); in assert16()
33 REPORTER_ASSERT(reporter, data[2] == m2); in assert16()
34 REPORTER_ASSERT(reporter, data[3] == m3); in assert16()
36 REPORTER_ASSERT(reporter, data[4] == m4); in assert16()
37 REPORTER_ASSERT(reporter, data[5] == m5); in assert16()
38 REPORTER_ASSERT(reporter, data[6] == m6); in assert16()
39 REPORTER_ASSERT(reporter, data[7] == m7); in assert16()
41 REPORTER_ASSERT(reporter, data[8] == m8); in assert16()
42 REPORTER_ASSERT(reporter, data[9] == m9); in assert16()
43 REPORTER_ASSERT(reporter, data[10] == m10); in assert16()
44 REPORTER_ASSERT(reporter, data[11] == m11); in assert16()
46 REPORTER_ASSERT(reporter, data[12] == m12); in assert16()
47 REPORTER_ASSERT(reporter, data[13] == m13); in assert16()
48 REPORTER_ASSERT(reporter, data[14] == m14); in assert16()
49 REPORTER_ASSERT(reporter, data[15] == m15); in assert16()
74 static void test_constructor(skiatest::Reporter* reporter) { in test_constructor() argument
89 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
90 REPORTER_ASSERT(reporter, !testMatrix->isIdentity()); in test_constructor()
93 … REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col))); in test_constructor()
100 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
101 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
102 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()
107 REPORTER_ASSERT(reporter, scaleMatrix.isScale()); in test_constructor()
109 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
110 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()
113 static void test_translate(skiatest::Reporter* reporter) { in test_translate() argument
118 REPORTER_ASSERT(reporter, bits_isonly(mat.getType(), SkMatrix44::kIdentity_Mask)); in test_translate()
120 REPORTER_ASSERT(reporter, bits_isonly(mat.getType(), SkMatrix44::kTranslate_Mask)); in test_translate()
121 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in test_translate()
122 REPORTER_ASSERT(reporter, bits_isonly(inverse.getType(), SkMatrix44::kTranslate_Mask)); in test_translate()
131 REPORTER_ASSERT(reporter, mat == c); in test_translate()
136 REPORTER_ASSERT(reporter, mat == c); in test_translate()
139 static void test_scale(skiatest::Reporter* reporter) { in test_scale() argument
144 REPORTER_ASSERT(reporter, bits_isonly(mat.getType(), SkMatrix44::kIdentity_Mask)); in test_scale()
146 REPORTER_ASSERT(reporter, bits_isonly(mat.getType(), SkMatrix44::kScale_Mask)); in test_scale()
147 REPORTER_ASSERT(reporter, mat.invert(&inverse)); in test_scale()
148 REPORTER_ASSERT(reporter, bits_isonly(inverse.getType(), SkMatrix44::kScale_Mask)); in test_scale()
157 REPORTER_ASSERT(reporter, mat == c); in test_scale()
162 REPORTER_ASSERT(reporter, mat == c); in test_scale()
189 static void test_map2(skiatest::Reporter* reporter, const SkMatrix44& mat) { in test_map2() argument
203 REPORTER_ASSERT(reporter, dstA[i] == dstB[i]); in test_map2()
207 static void test_map2(skiatest::Reporter* reporter) { in test_map2() argument
212 test_map2(reporter, mat); in test_map2()
216 static void test_gettype(skiatest::Reporter* reporter) { in test_gettype() argument
219 REPORTER_ASSERT(reporter, matrix.isIdentity()); in test_gettype()
220 REPORTER_ASSERT(reporter, SkMatrix44::kIdentity_Mask == matrix.getType()); in test_gettype()
226 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask); in test_gettype()
230 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask); in test_gettype()
234 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask); in test_gettype()
237 REPORTER_ASSERT(reporter, matrix.getType() & SkMatrix44::kPerspective_Mask); in test_gettype()
244 REPORTER_ASSERT(reporter, matrix.isIdentity()); in test_gettype()
246 REPORTER_ASSERT(reporter, matrix.isIdentity()); in test_gettype()
248 REPORTER_ASSERT(reporter, matrix.isIdentity()); in test_gettype()
251 static void test_common_angles(skiatest::Reporter* reporter) { in test_common_angles() argument
259 REPORTER_ASSERT(reporter, rot3x3.rectStaysRect()); in test_common_angles()
263 static void test_concat(skiatest::Reporter* reporter) { in test_concat() argument
280 REPORTER_ASSERT(reporter, d == c); in test_concat()
284 REPORTER_ASSERT(reporter, 10 == dst[i]); in test_concat()
285 REPORTER_ASSERT(reporter, 12 == dst[i + 4]); in test_concat()
292 REPORTER_ASSERT(reporter, d == c); in test_concat()
296 REPORTER_ASSERT(reporter, 20 == dst[i]); in test_concat()
297 REPORTER_ASSERT(reporter, 22 == dst[i + 4]); in test_concat()
301 static void test_determinant(skiatest::Reporter* reporter) { in test_determinant() argument
303 REPORTER_ASSERT(reporter, nearly_equal_double(1, a.determinant())); in test_determinant()
305 REPORTER_ASSERT(reporter, nearly_equal_double(2, a.determinant())); in test_determinant()
307 REPORTER_ASSERT(reporter, a.invert(&b)); in test_determinant()
308 REPORTER_ASSERT(reporter, nearly_equal_double(0.5, b.determinant())); in test_determinant()
312 REPORTER_ASSERT(reporter, in test_determinant()
317 REPORTER_ASSERT(reporter, nearly_equal_double(16, d.determinant())); in test_determinant()
321 REPORTER_ASSERT(reporter, nearly_equal_double(32, e.determinant())); in test_determinant()
323 REPORTER_ASSERT(reporter, nearly_equal_double(0, e.determinant())); in test_determinant()
326 static void test_invert(skiatest::Reporter* reporter) { in test_invert() argument
333 assert16<double>(reporter, inverseData, in test_invert()
343 assert16<double>(reporter, inverseData, in test_invert()
353 assert16<double>(reporter, inverseData, in test_invert()
364 assert16<double>(reporter, inverseData, in test_invert()
380 REPORTER_ASSERT(reporter, nearly_equal(expected, inverse)); in test_invert()
393 REPORTER_ASSERT(reporter, nearly_equal(expected, inverse)); in test_invert()
404 REPORTER_ASSERT(reporter, nearly_equal(expected, inverse)); in test_invert()
417 REPORTER_ASSERT(reporter, nearly_equal(expected, inverse)); in test_invert()
421 REPORTER_ASSERT(reporter, tinyScale.getType() == SkMatrix44::kScale_Mask); in test_invert()
422 REPORTER_ASSERT(reporter, !tinyScale.invert(nullptr)); in test_invert()
423 REPORTER_ASSERT(reporter, !tinyScale.invert(&inverse)); in test_invert()
427 REPORTER_ASSERT(reporter, tinyScaleTranslate.invert(nullptr)); in test_invert()
430 reporter, tinyScaleTranslate.getType() == in test_invert()
432 REPORTER_ASSERT(reporter, !tinyScaleTranslate.invert(nullptr)); in test_invert()
433 REPORTER_ASSERT(reporter, !tinyScaleTranslate.invert(&inverse)); in test_invert()
438 REPORTER_ASSERT(reporter, (tinyScalePerspective.getType() & in test_invert()
441 REPORTER_ASSERT(reporter, !tinyScalePerspective.invert(nullptr)); in test_invert()
442 REPORTER_ASSERT(reporter, !tinyScalePerspective.invert(&inverse)); in test_invert()
445 static void test_transpose(skiatest::Reporter* reporter) { in test_transpose() argument
457 REPORTER_ASSERT(reporter, nearly_equal(a, b)); in test_transpose()
460 static void test_get_set_double(skiatest::Reporter* reporter) { in test_get_set_double() argument
465 REPORTER_ASSERT(reporter, in test_get_set_double()
469 REPORTER_ASSERT(reporter, in test_get_set_double()
492 static void test_set_row_col_major(skiatest::Reporter* reporter) { in test_set_row_col_major() argument
505 REPORTER_ASSERT(reporter, nearly_equal(a, b)); in test_set_row_col_major()
508 REPORTER_ASSERT(reporter, nearly_equal(a, b)); in test_set_row_col_major()
511 REPORTER_ASSERT(reporter, nearly_equal(a, b)); in test_set_row_col_major()
514 REPORTER_ASSERT(reporter, nearly_equal(a, b)); in test_set_row_col_major()
517 static void test_3x3_conversion(skiatest::Reporter* reporter) { in test_3x3_conversion() argument
535 REPORTER_ASSERT(reporter, expected33 == a33); in test_3x3_conversion()
540 REPORTER_ASSERT(reporter, nearly_equal(a44flattened, expected44flattened)); in test_3x3_conversion()
552 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[0], vec3transformed.fX)); in test_3x3_conversion()
553 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[1], vec3transformed.fY)); in test_3x3_conversion()
554 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[3], vec3transformed.fZ)); in test_3x3_conversion()
555 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[0], vec4transformed2[0])); in test_3x3_conversion()
556 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[1], vec4transformed2[1])); in test_3x3_conversion()
557 REPORTER_ASSERT(reporter, !nearly_equal_scalar(vec4transformed[2], vec4transformed2[2])); in test_3x3_conversion()
558 REPORTER_ASSERT(reporter, nearly_equal_scalar(vec4transformed[3], vec4transformed2[3])); in test_3x3_conversion()
561 static void test_has_perspective(skiatest::Reporter* reporter) { in test_has_perspective() argument
565 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
568 REPORTER_ASSERT(reporter, !transform.hasPerspective()); in test_has_perspective()
571 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
575 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
579 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
583 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
587 REPORTER_ASSERT(reporter, transform.hasPerspective()); in test_has_perspective()
613 static bool empirically_preserves_2d_axis_alignment(skiatest::Reporter* reporter, in empirically_preserves_2d_axis_alignment() argument
620 REPORTER_ASSERT(reporter, is_rectilinear(p1, p2, p3, p4)); in empirically_preserves_2d_axis_alignment()
630 static void test(bool expected, skiatest::Reporter* reporter, const SkMatrix44& transform) { in test() argument
632 REPORTER_ASSERT(reporter, empirically_preserves_2d_axis_alignment(reporter, transform)); in test()
633 REPORTER_ASSERT(reporter, transform.preserves2dAxisAlignment()); in test()
635 REPORTER_ASSERT(reporter, !empirically_preserves_2d_axis_alignment(reporter, transform)); in test()
636 REPORTER_ASSERT(reporter, !transform.preserves2dAxisAlignment()); in test()
640 static void test_preserves_2d_axis_alignment(skiatest::Reporter* reporter) { in test_preserves_2d_axis_alignment() argument
691 test(value.expected, reporter, transform); in test_preserves_2d_axis_alignment()
713 test(value.expected, reporter, transform); in test_preserves_2d_axis_alignment()
739 test(false, reporter, transform); in test_preserves_2d_axis_alignment()
760 test(value.expected, reporter, transform); in test_preserves_2d_axis_alignment()
784 test(value.expected, reporter, transform); in test_preserves_2d_axis_alignment()
792 test(false, reporter, transform); in test_preserves_2d_axis_alignment()
798 test(true, reporter, transform); in test_preserves_2d_axis_alignment()
802 static void test_toint(skiatest::Reporter* reporter) { in test_toint() argument
812 REPORTER_ASSERT(reporter, sum >= 0); in test_toint()
813 REPORTER_ASSERT(reporter, isum >= 0); in test_toint()
814 REPORTER_ASSERT(reporter, static_cast<SkScalar>(isum) == SkIntToScalar(isum)); in test_toint()
817 DEF_TEST(Matrix44, reporter) { in DEF_TEST() argument
827 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
832 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
837 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
842 REPORTER_ASSERT(reporter, mat.invert(nullptr)); in DEF_TEST()
845 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
847 REPORTER_ASSERT(reporter, is_identity(iden2)); in DEF_TEST()
856 REPORTER_ASSERT(reporter, mat.invert(nullptr)); in DEF_TEST()
859 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
867 REPORTER_ASSERT(reporter, mat.invert(nullptr)); in DEF_TEST()
870 REPORTER_ASSERT(reporter, is_identity(iden1)); in DEF_TEST()
875 REPORTER_ASSERT(reporter, !mat.invert(nullptr)); in DEF_TEST()
884 assert16<float>(reporter, dataf, in DEF_TEST()
890 assert16<double>(reporter, datad, 1, 0, 0, 0, in DEF_TEST()
895 assert16<float>(reporter, dataf, 1, 0, 0, 2, in DEF_TEST()
900 assert16<double>(reporter, datad, 1, 0, 0, 2, in DEF_TEST()
906 test_concat(reporter); in DEF_TEST()
909 test_common_angles(reporter); in DEF_TEST()
912 test_constructor(reporter); in DEF_TEST()
913 test_gettype(reporter); in DEF_TEST()
914 test_determinant(reporter); in DEF_TEST()
915 test_invert(reporter); in DEF_TEST()
916 test_transpose(reporter); in DEF_TEST()
917 test_get_set_double(reporter); in DEF_TEST()
918 test_set_row_col_major(reporter); in DEF_TEST()
919 test_set_3x3(reporter); in DEF_TEST()
920 test_translate(reporter); in DEF_TEST()
921 test_scale(reporter); in DEF_TEST()
922 test_map2(reporter); in DEF_TEST()
923 test_3x3_conversion(reporter); in DEF_TEST()
924 test_has_perspective(reporter); in DEF_TEST()
925 test_preserves_2d_axis_alignment(reporter); in DEF_TEST()
926 test_toint(reporter); in DEF_TEST()
953 DEF_TEST(M44, reporter) { in DEF_TEST() argument
957 REPORTER_ASSERT(reporter, eq(m44, m, 0)); in DEF_TEST()
958 REPORTER_ASSERT(reporter, SkM44() == m); in DEF_TEST()
959 REPORTER_ASSERT(reporter, m.invert(&im)); in DEF_TEST()
960 REPORTER_ASSERT(reporter, SkM44() == im); in DEF_TEST()
964 REPORTER_ASSERT(reporter, eq(m44, m, 0)); in DEF_TEST()
965 REPORTER_ASSERT(reporter, SkM44(1, 0, 0, 3, in DEF_TEST()
973 REPORTER_ASSERT(reporter, eq(m44, m, 0)); in DEF_TEST()
977 REPORTER_ASSERT(reporter, t != m); in DEF_TEST()
978 REPORTER_ASSERT(reporter, t.rc(1,0) == m.rc(0,1)); in DEF_TEST()
980 REPORTER_ASSERT(reporter, tt == m); in DEF_TEST()
985 REPORTER_ASSERT(reporter, eq(m44, m, 0)); in DEF_TEST()
987 REPORTER_ASSERT(reporter, m.invert(&im)); in DEF_TEST()
988 REPORTER_ASSERT(reporter, m44.invert(&im44)); in DEF_TEST()
989 REPORTER_ASSERT(reporter, eq(im44, im, 0)); in DEF_TEST()
993 REPORTER_ASSERT(reporter, eq(SkM44(), m, 0.0000005f)); in DEF_TEST()
994 REPORTER_ASSERT(reporter, SkM44() != m); in DEF_TEST()
997 DEF_TEST(M44_v3, reporter) { in DEF_TEST() argument
1001 REPORTER_ASSERT(reporter, a.lengthSquared() == 1 + 4 + 9); in DEF_TEST()
1002 REPORTER_ASSERT(reporter, b.length() == 3); in DEF_TEST()
1003 REPORTER_ASSERT(reporter, a.dot(b) == 1 + 4 + 6); in DEF_TEST()
1004 REPORTER_ASSERT(reporter, b.dot(a) == 1 + 4 + 6); in DEF_TEST()
1005 REPORTER_ASSERT(reporter, (a.cross(b) == SkV3{-2, 1, 0})); in DEF_TEST()
1006 REPORTER_ASSERT(reporter, (b.cross(a) == SkV3{ 2, -1, 0})); in DEF_TEST()
1016 REPORTER_ASSERT(reporter, (c == SkV3{2, 2, 9})); in DEF_TEST()
1018 REPORTER_ASSERT(reporter, (d == SkV4{11, 8, 7, 1})); in DEF_TEST()
1021 DEF_TEST(M44_v4, reporter) { in DEF_TEST() argument
1032 REPORTER_ASSERT(reporter, (r0 == SkV4{ 1, 2, 3, 4})); in DEF_TEST()
1033 REPORTER_ASSERT(reporter, (r1 == SkV4{ 5, 6, 7, 8})); in DEF_TEST()
1034 REPORTER_ASSERT(reporter, (r2 == SkV4{ 9, 10, 11, 12})); in DEF_TEST()
1035 REPORTER_ASSERT(reporter, (r3 == SkV4{13, 14, 15, 16})); in DEF_TEST()
1037 REPORTER_ASSERT(reporter, SkM44::Rows(r0, r1, r2, r3) == m); in DEF_TEST()
1044 REPORTER_ASSERT(reporter, (c0 == SkV4{1, 5, 9, 13})); in DEF_TEST()
1045 REPORTER_ASSERT(reporter, (c1 == SkV4{2, 6, 10, 14})); in DEF_TEST()
1046 REPORTER_ASSERT(reporter, (c2 == SkV4{3, 7, 11, 15})); in DEF_TEST()
1047 REPORTER_ASSERT(reporter, (c3 == SkV4{4, 8, 12, 16})); in DEF_TEST()
1049 REPORTER_ASSERT(reporter, SkM44::Cols(c0, c1, c2, c3) == m); in DEF_TEST()
1055 REPORTER_ASSERT(reporter, v1 == v2); in DEF_TEST()
1057 REPORTER_ASSERT(reporter, (c0 + r0 == SkV4{c0.x+r0.x, c0.y+r0.y, c0.z+r0.z, c0.w+r0.w})); in DEF_TEST()
1058 REPORTER_ASSERT(reporter, (c0 - r0 == SkV4{c0.x-r0.x, c0.y-r0.y, c0.z-r0.z, c0.w-r0.w})); in DEF_TEST()
1059 REPORTER_ASSERT(reporter, (c0 * r0 == SkV4{c0.x*r0.x, c0.y*r0.y, c0.z*r0.z, c0.w*r0.w})); in DEF_TEST()
1062 DEF_TEST(M44_rotate, reporter) { in DEF_TEST() argument
1102 REPORTER_ASSERT(reporter, mx == r.expectedX); in DEF_TEST()
1103 REPORTER_ASSERT(reporter, my == r.expectedY); in DEF_TEST()
1104 REPORTER_ASSERT(reporter, mz == r.expectedZ); in DEF_TEST()
1110 REPORTER_ASSERT(reporter, mx == -r.expectedX); in DEF_TEST()
1111 REPORTER_ASSERT(reporter, my == -r.expectedY); in DEF_TEST()
1112 REPORTER_ASSERT(reporter, mz == -r.expectedZ); in DEF_TEST()