OLD | NEW |
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 Loading... |
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 Loading... |
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); ) |
OLD | NEW |