| 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" | |
| 9 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 10 #include "SkEdgeClipper.h" | 9 #include "SkEdgeClipper.h" |
| 11 #include "SkLineClipper.h" | 10 #include "SkLineClipper.h" |
| 12 #include "SkPath.h" | 11 #include "SkPath.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.setConfig(SkBitmap::kARGB_8888_Config, 4, 4); |
| 17 bm.allocPixels(); | 17 bm.allocPixels(); |
| 18 bm.eraseColor(SK_ColorWHITE); | 18 bm.eraseColor(SK_ColorWHITE); |
| 19 | 19 |
| 20 SkPaint paint; | 20 SkPaint paint; |
| 21 paint.setAntiAlias(true); | 21 paint.setAntiAlias(true); |
| 22 | 22 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 !memcmp(&gPartial[i+2], dst, sizeof(dst))); | 142 !memcmp(&gPartial[i+2], dst, sizeof(dst))); |
| 143 } | 143 } |
| 144 | 144 |
| 145 } | 145 } |
| 146 | 146 |
| 147 DEF_TEST(Clipper, reporter) { | 147 DEF_TEST(Clipper, reporter) { |
| 148 test_intersectline(reporter); | 148 test_intersectline(reporter); |
| 149 test_edgeclipper(); | 149 test_edgeclipper(); |
| 150 test_hairclipping(reporter); | 150 test_hairclipping(reporter); |
| 151 } | 151 } |
| OLD | NEW |