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

Side by Side Diff: samplecode/SampleAAClip.cpp

Issue 1273613002: Revert of IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 "SkView.h"
11 #include "SkCanvas.h"
10 #include "SkAAClip.h" 12 #include "SkAAClip.h"
11 #include "SkCanvas.h"
12 #include "SkPath.h"
13 #include "SkView.h"
14 13
15 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, 14 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op,
16 const SkIRect& expectedR) { 15 const SkIRect& expectedR) {
17 SkAAClip c0, c1, c2; 16 SkAAClip c0, c1, c2;
18 c0.setRect(r0); 17 c0.setRect(r0);
19 c1.setRect(r1); 18 c1.setRect(r1);
20 c2.op(c0, c1, op); 19 c2.op(c0, c1, op);
21 20
22 SkDEBUGCODE(SkIRect r2 = c2.getBounds()); 21 SkDEBUGCODE(SkIRect r2 = c2.getBounds());
23 SkASSERT(r2 == expectedR); 22 SkASSERT(r2 == expectedR);
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 } 116 }
118 117
119 private: 118 private:
120 typedef SkView INHERITED; 119 typedef SkView INHERITED;
121 }; 120 };
122 121
123 ////////////////////////////////////////////////////////////////////////////// 122 //////////////////////////////////////////////////////////////////////////////
124 123
125 static SkView* MyFactory() { return new AAClipView; } 124 static SkView* MyFactory() { return new AAClipView; }
126 static SkViewRegister reg(MyFactory); 125 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