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

Side by Side Diff: gm/pathinterior.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 | « gm/pathfill.cpp ('k') | gm/plus.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 2012 Google Inc. 2 * Copyright 2012 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 "gm.h" 8 #include "gm.h"
9 #include "SkBlurMaskFilter.h"
10 #include "SkCanvas.h" 9 #include "SkCanvas.h"
11 #include "SkGraphics.h" 10 #include "SkGraphics.h"
11 #include "SkRandom.h"
12 #include "SkLayerDrawLooper.h" 12 #include "SkLayerDrawLooper.h"
13 #include "SkPath.h" 13 #include "SkBlurMaskFilter.h"
14 #include "SkRandom.h"
15 14
16 static SkRect inset(const SkRect& r) { 15 static SkRect inset(const SkRect& r) {
17 SkRect rect = r; 16 SkRect rect = r;
18 rect.inset(r.width() / 8, r.height() / 8); 17 rect.inset(r.width() / 8, r.height() / 8);
19 return rect; 18 return rect;
20 } 19 }
21 20
22 class PathInteriorGM : public skiagm::GM { 21 class PathInteriorGM : public skiagm::GM {
23 public: 22 public:
24 PathInteriorGM() { 23 PathInteriorGM() {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 104
106 private: 105 private:
107 106
108 typedef GM INHERITED; 107 typedef GM INHERITED;
109 }; 108 };
110 109
111 ////////////////////////////////////////////////////////////////////////////// 110 //////////////////////////////////////////////////////////////////////////////
112 111
113 static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; } 112 static skiagm::GM* MyFactory(void*) { return new PathInteriorGM; }
114 static skiagm::GMRegistry reg(MyFactory); 113 static skiagm::GMRegistry reg(MyFactory);
OLDNEW
« no previous file with comments | « gm/pathfill.cpp ('k') | gm/plus.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698