Lines Matching refs:testMatrix
87 …SkMatrix44* testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kUninitialized_Constructor); in test_constructor() local
88 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
89 REPORTER_ASSERT(reporter, !testMatrix->isIdentity()); in test_constructor()
92 … REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col))); in test_constructor()
97 testMatrix = nullptr; in test_constructor()
98 testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kIdentity_Constructor); in test_constructor()
99 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
100 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
101 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()
107 testMatrix = new(&scaleMatrix) SkMatrix44(SkMatrix::I()); in test_constructor()
108 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
109 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()