Lines Matching refs:testMatrix
93 …SkMatrix44* testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kUninitialized_Constructor); in test_constructor() local
94 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
95 REPORTER_ASSERT(reporter, !testMatrix->isIdentity()); in test_constructor()
98 … REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col))); in test_constructor()
103 testMatrix = 0; in test_constructor()
104 testMatrix = new(placeholderMatrix) SkMatrix44(SkMatrix44::kIdentity_Constructor); in test_constructor()
105 REPORTER_ASSERT(reporter, testMatrix == placeholderMatrix); in test_constructor()
106 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
107 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()
113 testMatrix = new(&scaleMatrix) SkMatrix44(SkMatrix::I()); in test_constructor()
114 REPORTER_ASSERT(reporter, testMatrix->isIdentity()); in test_constructor()
115 REPORTER_ASSERT(reporter, *testMatrix == SkMatrix44::I()); in test_constructor()