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

Side by Side Diff: gm/thinstrokedrects.cpp

Issue 256373002: Turn on quilt mode in DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 7 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/testimagefilters.cpp ('k') | gm/tilemodes.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 2013 Google Inc. 2 * Copyright 2013 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 9
10 namespace skiagm { 10 namespace skiagm {
11 11
12 // Draw rects with various stroke widths at 1/8 pixel increments 12 // Draw rects with various stroke widths at 1/8 pixel increments
13 class ThinStrokedRectsGM : public GM { 13 class ThinStrokedRectsGM : public GM {
14 public: 14 public:
15 ThinStrokedRectsGM() { 15 ThinStrokedRectsGM() {
16 this->setBGColor(0xFF000000); 16 this->setBGColor(0xFF000000);
17 } 17 }
18 18
19 protected: 19 protected:
20 virtual uint32_t onGetFlags() const SK_OVERRIDE {
21 return kSkipTiled_Flag;
22 }
23
20 virtual SkString onShortName() SK_OVERRIDE { 24 virtual SkString onShortName() SK_OVERRIDE {
21 return SkString("thinstrokedrects"); 25 return SkString("thinstrokedrects");
22 } 26 }
23 27
24 virtual SkISize onISize() SK_OVERRIDE { 28 virtual SkISize onISize() SK_OVERRIDE {
25 return make_isize(240, 320); 29 return make_isize(240, 320);
26 } 30 }
27 31
28 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 32 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
29 33
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 73
70 private: 74 private:
71 typedef GM INHERITED; 75 typedef GM INHERITED;
72 }; 76 };
73 77
74 ////////////////////////////////////////////////////////////////////////////// 78 //////////////////////////////////////////////////////////////////////////////
75 79
76 DEF_GM( return SkNEW(ThinStrokedRectsGM); ) 80 DEF_GM( return SkNEW(ThinStrokedRectsGM); )
77 81
78 } 82 }
OLDNEW
« no previous file with comments | « gm/testimagefilters.cpp ('k') | gm/tilemodes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698