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

Side by Side Diff: gm/drrect.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/dropshadowimagefilter.cpp ('k') | gm/factory.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 2014 Google Inc. 2 * Copyright 2014 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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkRRect.h" 10 #include "SkRRect.h"
11 #include "SkPath.h" 11 #include "SkPath.h"
12 12
13 class DRRectGM : public skiagm::GM { 13 class DRRectGM : public skiagm::GM {
14 public: 14 public:
15 DRRectGM() {} 15 DRRectGM() {}
16 16
17 protected: 17 protected:
18 uint32_t onGetFlags() const SK_OVERRIDE {
19 return kSkipTiled_Flag;
20 }
21 18
22 SkString onShortName() SK_OVERRIDE { 19 SkString onShortName() SK_OVERRIDE {
23 return SkString("drrect"); 20 return SkString("drrect");
24 } 21 }
25 22
26 SkISize onISize() SK_OVERRIDE { 23 SkISize onISize() SK_OVERRIDE {
27 return SkISize::Make(640, 480); 24 return SkISize::Make(640, 480);
28 } 25 }
29 26
30 void onDraw(SkCanvas* canvas) SK_OVERRIDE { 27 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 canvas->restore(); 61 canvas->restore();
65 } 62 }
66 } 63 }
67 } 64 }
68 65
69 private: 66 private:
70 typedef GM INHERITED; 67 typedef GM INHERITED;
71 }; 68 };
72 69
73 DEF_GM( return new DRRectGM; ) 70 DEF_GM( return new DRRectGM; )
OLDNEW
« no previous file with comments | « gm/dropshadowimagefilter.cpp ('k') | gm/factory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698