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 "SkEdgeClipper.h" | 9 #include "SkEdgeClipper.h" |
10 #include "SkLineClipper.h" | 10 #include "SkLineClipper.h" |
11 #include "SkPath.h" | 11 #include "SkPath.h" |
12 #include "Test.h" | 12 #include "Test.h" |
13 | 13 |
14 static void test_hairclipping(skiatest::Reporter* reporter) { | 14 static void test_hairclipping(skiatest::Reporter* reporter) { |
15 SkBitmap bm; | 15 SkBitmap bm; |
16 bm.setConfig(SkBitmap::kARGB_8888_Config, 4, 4); | 16 bm.allocN32Pixels(4, 4); |
17 bm.allocPixels(); | |
18 bm.eraseColor(SK_ColorWHITE); | 17 bm.eraseColor(SK_ColorWHITE); |
19 | 18 |
20 SkPaint paint; | 19 SkPaint paint; |
21 paint.setAntiAlias(true); | 20 paint.setAntiAlias(true); |
22 | 21 |
23 SkCanvas canvas(bm); | 22 SkCanvas canvas(bm); |
24 canvas.clipRect(SkRect::MakeWH(SkIntToScalar(4), SkIntToScalar(2))); | 23 canvas.clipRect(SkRect::MakeWH(SkIntToScalar(4), SkIntToScalar(2))); |
25 canvas.drawLine(1.5f, 1.5f, | 24 canvas.drawLine(1.5f, 1.5f, |
26 3.5f, 3.5f, paint); | 25 3.5f, 3.5f, paint); |
27 | 26 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 !memcmp(&gPartial[i+2], dst, sizeof(dst))); | 141 !memcmp(&gPartial[i+2], dst, sizeof(dst))); |
143 } | 142 } |
144 | 143 |
145 } | 144 } |
146 | 145 |
147 DEF_TEST(Clipper, reporter) { | 146 DEF_TEST(Clipper, reporter) { |
148 test_intersectline(reporter); | 147 test_intersectline(reporter); |
149 test_edgeclipper(); | 148 test_edgeclipper(); |
150 test_hairclipping(reporter); | 149 test_hairclipping(reporter); |
151 } | 150 } |
OLD | NEW |