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

Side by Side Diff: samplecode/SampleAAClip.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 | « include/utils/SkNWayCanvas.h ('k') | samplecode/SampleChart.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 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SampleCode.h" 9 #include "SampleCode.h"
10 #include "SkAAClip.h"
11 #include "SkCanvas.h"
12 #include "SkPath.h"
10 #include "SkView.h" 13 #include "SkView.h"
11 #include "SkCanvas.h"
12 #include "SkAAClip.h"
13 14
14 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, 15 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op,
15 const SkIRect& expectedR) { 16 const SkIRect& expectedR) {
16 SkAAClip c0, c1, c2; 17 SkAAClip c0, c1, c2;
17 c0.setRect(r0); 18 c0.setRect(r0);
18 c1.setRect(r1); 19 c1.setRect(r1);
19 c2.op(c0, c1, op); 20 c2.op(c0, c1, op);
20 21
21 SkDEBUGCODE(SkIRect r2 = c2.getBounds()); 22 SkDEBUGCODE(SkIRect r2 = c2.getBounds());
22 SkASSERT(r2 == expectedR); 23 SkASSERT(r2 == expectedR);
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } 117 }
117 118
118 private: 119 private:
119 typedef SkView INHERITED; 120 typedef SkView INHERITED;
120 }; 121 };
121 122
122 ////////////////////////////////////////////////////////////////////////////// 123 //////////////////////////////////////////////////////////////////////////////
123 124
124 static SkView* MyFactory() { return new AAClipView; } 125 static SkView* MyFactory() { return new AAClipView; }
125 static SkViewRegister reg(MyFactory); 126 static SkViewRegister reg(MyFactory);
OLDNEW
« no previous file with comments | « include/utils/SkNWayCanvas.h ('k') | samplecode/SampleChart.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698