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

Side by Side Diff: gm/thinstrokedrects.cpp

Issue 371023005: Add always-threaded SkRecord quilt tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: bigger tile -> more GMs can quilt Created 6 years, 5 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/skbug1719.cpp ('k') | gm/tilemodes_scaled.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
24 virtual SkString onShortName() SK_OVERRIDE { 20 virtual SkString onShortName() SK_OVERRIDE {
25 return SkString("thinstrokedrects"); 21 return SkString("thinstrokedrects");
26 } 22 }
27 23
28 virtual SkISize onISize() SK_OVERRIDE { 24 virtual SkISize onISize() SK_OVERRIDE {
29 return SkISize::Make(240, 320); 25 return SkISize::Make(240, 320);
30 } 26 }
31 27
32 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 28 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
33 29
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 69
74 private: 70 private:
75 typedef GM INHERITED; 71 typedef GM INHERITED;
76 }; 72 };
77 73
78 ////////////////////////////////////////////////////////////////////////////// 74 //////////////////////////////////////////////////////////////////////////////
79 75
80 DEF_GM( return SkNEW(ThinStrokedRectsGM); ) 76 DEF_GM( return SkNEW(ThinStrokedRectsGM); )
81 77
82 } 78 }
OLDNEW
« no previous file with comments | « gm/skbug1719.cpp ('k') | gm/tilemodes_scaled.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698