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 | 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 "SkDashPathEffect.h" | 11 #include "SkDashPathEffect.h" |
13 #include "SkSurface.h" | 12 #include "SkSurface.h" |
14 | 13 |
15 static SkCanvas* create(SkBitmap::Config config, int w, int h, int rb, | 14 static SkCanvas* create(SkBitmap::Config config, int w, int h, int rb, |
16 void* addr = NULL) { | 15 void* addr = NULL) { |
17 SkBitmap bm; | 16 SkBitmap bm; |
18 bm.setConfig(config, w, h, rb); | 17 bm.setConfig(config, w, h, rb); |
19 if (addr) { | 18 if (addr) { |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 test_crbug_124652(); | 304 test_crbug_124652(); |
306 test_crbug_140642(); | 305 test_crbug_140642(); |
307 test_crbug_140803(); | 306 test_crbug_140803(); |
308 test_inversepathwithclip(); | 307 test_inversepathwithclip(); |
309 // why? | 308 // why? |
310 if (false) test_crbug131181(); | 309 if (false) test_crbug131181(); |
311 test_infinite_dash(reporter); | 310 test_infinite_dash(reporter); |
312 test_crbug_165432(reporter); | 311 test_crbug_165432(reporter); |
313 test_big_aa_rect(reporter); | 312 test_big_aa_rect(reporter); |
314 } | 313 } |
OLD | NEW |