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

Side by Side Diff: gm/lumafilter.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/linepaths.cpp ('k') | gm/matrixconvolution.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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkGradientShader.h" 10 #include "SkGradientShader.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 SK_ARRAY_COUNT(g1Colors), 91 SK_ARRAY_COUNT(g1Colors),
92 SkShader::kClamp_TileMode)); 92 SkShader::kClamp_TileMode));
93 fGr2.reset(SkGradientShader::CreateLinear(g2Points, 93 fGr2.reset(SkGradientShader::CreateLinear(g2Points,
94 g2Colors, 94 g2Colors,
95 pos, 95 pos,
96 SK_ARRAY_COUNT(g2Colors), 96 SK_ARRAY_COUNT(g2Colors),
97 SkShader::kClamp_TileMode)); 97 SkShader::kClamp_TileMode));
98 } 98 }
99 99
100 protected: 100 protected:
101 uint32_t onGetFlags() const SK_OVERRIDE {
102 return kSkipTiled_Flag;
103 }
104 101
105 SkString onShortName() SK_OVERRIDE { 102 SkString onShortName() SK_OVERRIDE {
106 return SkString("lumafilter"); 103 return SkString("lumafilter");
107 } 104 }
108 105
109 SkISize onISize() SK_OVERRIDE { 106 SkISize onISize() SK_OVERRIDE {
110 return SkISize::Make(600, 420); 107 return SkISize::Make(600, 420);
111 } 108 }
112 109
113 void onDraw(SkCanvas* canvas) SK_OVERRIDE { 110 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 private: 146 private:
150 SkAutoTUnref<SkColorFilter> fFilter; 147 SkAutoTUnref<SkColorFilter> fFilter;
151 SkAutoTUnref<SkShader> fGr1, fGr2; 148 SkAutoTUnref<SkShader> fGr1, fGr2;
152 149
153 typedef skiagm::GM INHERITED; 150 typedef skiagm::GM INHERITED;
154 }; 151 };
155 152
156 ////////////////////////////////////////////////////////////////////////////// 153 //////////////////////////////////////////////////////////////////////////////
157 154
158 DEF_GM( return SkNEW(LumaFilterGM); ) 155 DEF_GM( return SkNEW(LumaFilterGM); )
OLDNEW
« no previous file with comments | « gm/linepaths.cpp ('k') | gm/matrixconvolution.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698