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

Side by Side Diff: gm/anisotropic.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 | « no previous file | gm/arcofzorro.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 2015 Google Inc. 2 * Copyright 2015 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 // This GM exercises HighQuality anisotropic filtering. 12 // This GM exercises HighQuality anisotropic filtering.
13 class AnisotropicGM : public GM { 13 class AnisotropicGM : public GM {
14 public: 14 public:
15 AnisotropicGM() : fFilterQuality(kHigh_SkFilterQuality) { 15 AnisotropicGM() : fFilterQuality(kHigh_SkFilterQuality) {
16 this->setBGColor(0xFFCCCCCC); 16 this->setBGColor(sk_tool_utils::color_to_565(0xFFCCCCCC));
17 } 17 }
18 18
19 protected: 19 protected:
20 20
21 SkString onShortName() override { return SkString("anisotropic_hq"); } 21 SkString onShortName() override { return SkString("anisotropic_hq"); }
22 22
23 SkISize onISize() override { 23 SkISize onISize() override {
24 return SkISize::Make(2*kImageSize + 3*kSpacer, 24 return SkISize::Make(2*kImageSize + 3*kSpacer,
25 kNumVertImages*kImageSize + (kNumVertImages+1)*kSpa cer); 25 kNumVertImages*kImageSize + (kNumVertImages+1)*kSpa cer);
26 } 26 }
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 SkFilterQuality fFilterQuality; 105 SkFilterQuality fFilterQuality;
106 106
107 typedef GM INHERITED; 107 typedef GM INHERITED;
108 }; 108 };
109 109
110 ////////////////////////////////////////////////////////////////////////////// 110 //////////////////////////////////////////////////////////////////////////////
111 111
112 DEF_GM( return SkNEW(AnisotropicGM); ) 112 DEF_GM( return SkNEW(AnisotropicGM); )
113 113
114 } 114 }
OLDNEW
« no previous file with comments | « no previous file | gm/arcofzorro.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698