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

Side by Side Diff: tests/ClipCubicTest.cpp

Issue 1265033002: IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase (a file was deleted). Created 5 years, 4 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
« no previous file with comments | « tests/CanvasStateTest.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 "SkCubicClipper.h" 9 #include "SkCubicClipper.h"
10 #include "SkGeometry.h" 10 #include "SkGeometry.h"
11 #include "SkPaint.h" 11 #include "SkPaint.h"
12 #include "SkPath.h"
12 #include "Test.h" 13 #include "Test.h"
13 14
14 // Currently the supersampler blitter uses int16_t for its index into an array 15 // Currently the supersampler blitter uses int16_t for its index into an array
15 // the width of the clip. Test that we don't crash/assert if we try to draw 16 // the width of the clip. Test that we don't crash/assert if we try to draw
16 // with a device/clip that is larger. 17 // with a device/clip that is larger.
17 static void test_giantClip() { 18 static void test_giantClip() {
18 SkBitmap bm; 19 SkBitmap bm;
19 bm.allocN32Pixels(64919, 1); 20 bm.allocN32Pixels(64919, 1);
20 SkCanvas canvas(bm); 21 SkCanvas canvas(bm);
21 canvas.clear(SK_ColorTRANSPARENT); 22 canvas.clear(SK_ColorTRANSPARENT);
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 REPORTER_ASSERT(reporter, success == true); 155 REPORTER_ASSERT(reporter, success == true);
155 REPORTER_ASSERT(reporter, CurvesAreEqual(clipped, SetCurve( 156 REPORTER_ASSERT(reporter, CurvesAreEqual(clipped, SetCurve(
156 0, 0, 157 0, 0,
157 1.551193237f, 2.326789856f, 158 1.551193237f, 2.326789856f,
158 1.297736168f, 7.059780121f, 159 1.297736168f, 7.059780121f,
159 2.505550385f, 10, 160 2.505550385f, 10,
160 shouldbe), tol)); 161 shouldbe), tol));
161 162
162 test_giantClip(); 163 test_giantClip();
163 } 164 }
OLDNEW
« no previous file with comments | « tests/CanvasStateTest.cpp ('k') | tests/DeferredCanvasTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698