| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "Test.h" | 8 #include "Test.h" |
| 9 #include "SkMatrix44.h" | 9 #include "SkMatrix44.h" |
| 10 | 10 |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 test_transpose(reporter); | 629 test_transpose(reporter); |
| 630 test_get_set_double(reporter); | 630 test_get_set_double(reporter); |
| 631 test_set_row_col_major(reporter); | 631 test_set_row_col_major(reporter); |
| 632 test_translate(reporter); | 632 test_translate(reporter); |
| 633 test_scale(reporter); | 633 test_scale(reporter); |
| 634 test_map2(reporter); | 634 test_map2(reporter); |
| 635 test_3x3_conversion(reporter); | 635 test_3x3_conversion(reporter); |
| 636 } | 636 } |
| 637 | 637 |
| 638 #include "TestClassDef.h" | 638 #include "TestClassDef.h" |
| 639 DEFINE_TESTCLASS("Matrix44", Matrix44TestClass, TestMatrix44) | 639 DEFINE_TESTCLASS_SHORT(TestMatrix44) |
| OLD | NEW |