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/quadpaths.cpp

Issue 867963004: remove unused GM flags (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: guarded flags Created 5 years, 11 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/polygons.cpp ('k') | gm/rects.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 #include "gm.h" 7 #include "gm.h"
8 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkPaint.h" 9 #include "SkPaint.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 11
12 namespace skiagm { 12 namespace skiagm {
13 13
14 class QuadPathGM : public GM { 14 class QuadPathGM : public GM {
15 public: 15 public:
16 QuadPathGM() {} 16 QuadPathGM() {}
17 17
18 protected: 18 protected:
19 uint32_t onGetFlags() const SK_OVERRIDE {
20 return kSkipTiled_Flag;
21 }
22 19
23 SkString onShortName() SK_OVERRIDE { 20 SkString onShortName() SK_OVERRIDE {
24 return SkString("quadpath"); 21 return SkString("quadpath");
25 } 22 }
26 23
27 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } 24 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); }
28 25
29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, 26 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, 27 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
31 SkPaint::Style style, SkPath::FillType fill, 28 SkPaint::Style style, SkPath::FillType fill,
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 154
158 private: 155 private:
159 typedef GM INHERITED; 156 typedef GM INHERITED;
160 }; 157 };
161 158
162 class QuadClosePathGM : public GM { 159 class QuadClosePathGM : public GM {
163 public: 160 public:
164 QuadClosePathGM() {} 161 QuadClosePathGM() {}
165 162
166 protected: 163 protected:
167 uint32_t onGetFlags() const SK_OVERRIDE {
168 return kSkipTiled_Flag;
169 }
170 164
171 SkString onShortName() SK_OVERRIDE { 165 SkString onShortName() SK_OVERRIDE {
172 return SkString("quadclosepath"); 166 return SkString("quadclosepath");
173 } 167 }
174 168
175 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } 169 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); }
176 170
177 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, 171 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
178 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, 172 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
179 SkPaint::Style style, SkPath::FillType fill, 173 SkPaint::Style style, SkPath::FillType fill,
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 304
311 ////////////////////////////////////////////////////////////////////////////// 305 //////////////////////////////////////////////////////////////////////////////
312 306
313 static GM* QuadPathFactory(void*) { return new QuadPathGM; } 307 static GM* QuadPathFactory(void*) { return new QuadPathGM; }
314 static GMRegistry regQuadPath(QuadPathFactory); 308 static GMRegistry regQuadPath(QuadPathFactory);
315 309
316 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } 310 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; }
317 static GMRegistry regQuadClosePath(QuadClosePathFactory); 311 static GMRegistry regQuadClosePath(QuadClosePathFactory);
318 312
319 } 313 }
OLDNEW
« no previous file with comments | « gm/polygons.cpp ('k') | gm/rects.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698