Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: tests/ClipperTest.cpp

Issue 164203003: replace setConfig+allocPixels with alloc-or-install-pixels (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/ClipCubicTest.cpp ('k') | tests/DeferredCanvasTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tests/ClipCubicTest.cpp ('k') | tests/DeferredCanvasTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698