| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 #include "Test.h" | 7 #include "Test.h" |
| 8 #include "SkBitmapDevice.h" | 8 #include "SkBitmapDevice.h" |
| 9 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 test_peephole(); | 661 test_peephole(); |
| 662 test_gatherpixelrefs(reporter); | 662 test_gatherpixelrefs(reporter); |
| 663 test_bitmap_with_encoded_data(reporter); | 663 test_bitmap_with_encoded_data(reporter); |
| 664 test_clone_empty(reporter); | 664 test_clone_empty(reporter); |
| 665 test_clip_bound_opt(reporter); | 665 test_clip_bound_opt(reporter); |
| 666 test_clip_expansion(reporter); | 666 test_clip_expansion(reporter); |
| 667 test_hierarchical(reporter); | 667 test_hierarchical(reporter); |
| 668 } | 668 } |
| 669 | 669 |
| 670 #include "TestClassDef.h" | 670 #include "TestClassDef.h" |
| 671 DEFINE_TESTCLASS("Pictures", PictureTestClass, TestPicture) | 671 DEFINE_TESTCLASS_SHORT(TestPicture) |
| OLD | NEW |