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

Side by Side Diff: gm/arcofzorro.cpp

Issue 1182403003: Revert of Revert of make gm background colors 565 compatible (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 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/anisotropic.cpp ('k') | gm/bigblurs.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 #include "SkRandom.h" 9 #include "SkRandom.h"
10 10
11 namespace skiagm { 11 namespace skiagm {
12 12
13 // This GM draws a lot of arcs in a 'Z' shape. It particularly exercises 13 // This GM draws a lot of arcs in a 'Z' shape. It particularly exercises
14 // the 'drawArc' code near a singularly of its processing (i.e., near the 14 // the 'drawArc' code near a singularly of its processing (i.e., near the
15 // edge of one of its underlying quads). 15 // edge of one of its underlying quads).
16 class ArcOfZorroGM : public GM { 16 class ArcOfZorroGM : public GM {
17 public: 17 public:
18 ArcOfZorroGM() { 18 ArcOfZorroGM() {
19 this->setBGColor(0xFFCCCCCC); 19 this->setBGColor(sk_tool_utils::color_to_565(0xFFCCCCCC));
20 } 20 }
21 21
22 protected: 22 protected:
23 23
24 SkString onShortName() override { 24 SkString onShortName() override {
25 return SkString("arcofzorro"); 25 return SkString("arcofzorro");
26 } 26 }
27 27
28 SkISize onISize() override { 28 SkISize onISize() override {
29 return SkISize::Make(1000, 1000); 29 return SkISize::Make(1000, 1000);
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 private: 76 private:
77 typedef GM INHERITED; 77 typedef GM INHERITED;
78 }; 78 };
79 79
80 ////////////////////////////////////////////////////////////////////////////// 80 //////////////////////////////////////////////////////////////////////////////
81 81
82 DEF_GM( return SkNEW(ArcOfZorroGM); ) 82 DEF_GM( return SkNEW(ArcOfZorroGM); )
83 83
84 } 84 }
OLDNEW
« no previous file with comments | « gm/anisotropic.cpp ('k') | gm/bigblurs.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698