| 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 "TestClassDef.h" | |
| 10 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 11 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| 12 #include "SkData.h" | 11 #include "SkData.h" |
| 13 #include "SkDiscardableMemoryPool.h" | 12 #include "SkDiscardableMemoryPool.h" |
| 14 #include "SkImageGenerator.h" | 13 #include "SkImageGenerator.h" |
| 15 #include "SkPaint.h" | 14 #include "SkPaint.h" |
| 16 #include "SkShader.h" | 15 #include "SkShader.h" |
| 17 #include "SkSurface.h" | 16 #include "SkSurface.h" |
| 18 #include "SkRandom.h" | 17 #include "SkRandom.h" |
| 19 #include "SkMatrixUtils.h" | 18 #include "SkMatrixUtils.h" |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 321 |
| 323 // ensure that we draw nothing if srcR does not intersect the bitmap | 322 // ensure that we draw nothing if srcR does not intersect the bitmap |
| 324 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); | 323 REPORTER_ASSERT(reporter, check_for_all_zeros(dst)); |
| 325 | 324 |
| 326 test_nan_antihair(); | 325 test_nan_antihair(); |
| 327 test_giantrepeat_crbug118018(reporter); | 326 test_giantrepeat_crbug118018(reporter); |
| 328 | 327 |
| 329 test_treatAsSprite(reporter); | 328 test_treatAsSprite(reporter); |
| 330 test_faulty_pixelref(reporter); | 329 test_faulty_pixelref(reporter); |
| 331 } | 330 } |
| OLD | NEW |