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 "SkCanvas.h" | 8 #include "SkCanvas.h" |
9 #include "SkPaint.h" | 9 #include "SkPaint.h" |
10 #include "SkParse.h" | 10 #include "SkParse.h" |
11 #include "SkParsePath.h" | 11 #include "SkParsePath.h" |
12 #include "SkPathPriv.h" | 12 #include "SkPathPriv.h" |
13 #include "SkPathEffect.h" | 13 #include "SkPathEffect.h" |
14 #include "SkRRect.h" | 14 #include "SkRRect.h" |
15 #include "SkRandom.h" | 15 #include "SkRandom.h" |
16 #include "SkReader32.h" | 16 #include "SkReader32.h" |
17 #include "SkSize.h" | 17 #include "SkSize.h" |
18 #include "SkStream.h" | 18 #include "SkStream.h" |
| 19 #include "SkStrokeRec.h" |
19 #include "SkSurface.h" | 20 #include "SkSurface.h" |
20 #include "SkTypes.h" | 21 #include "SkTypes.h" |
21 #include "SkWriter32.h" | 22 #include "SkWriter32.h" |
22 #include "Test.h" | 23 #include "Test.h" |
23 | 24 |
24 static void set_radii(SkVector radii[4], int index, float rad) { | 25 static void set_radii(SkVector radii[4], int index, float rad) { |
25 sk_bzero(radii, sizeof(SkVector) * 4); | 26 sk_bzero(radii, sizeof(SkVector) * 4); |
26 radii[index].set(rad, rad); | 27 radii[index].set(rad, rad); |
27 } | 28 } |
28 | 29 |
(...skipping 3911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3940 PathTest_Private::TestPathTo(reporter); | 3941 PathTest_Private::TestPathTo(reporter); |
3941 PathRefTest_Private::TestPathRef(reporter); | 3942 PathRefTest_Private::TestPathRef(reporter); |
3942 PathTest_Private::TestPathrefListeners(reporter); | 3943 PathTest_Private::TestPathrefListeners(reporter); |
3943 test_dump(reporter); | 3944 test_dump(reporter); |
3944 test_path_crbug389050(reporter); | 3945 test_path_crbug389050(reporter); |
3945 test_path_crbugskia2820(reporter); | 3946 test_path_crbugskia2820(reporter); |
3946 test_skbug_3469(reporter); | 3947 test_skbug_3469(reporter); |
3947 test_skbug_3239(reporter); | 3948 test_skbug_3239(reporter); |
3948 test_bounds_crbug_513799(reporter); | 3949 test_bounds_crbug_513799(reporter); |
3949 } | 3950 } |
OLD | NEW |