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 "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
10 #include "SkBlurMaskFilter.h" | 10 #include "SkBlurMaskFilter.h" |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 3, 2, 2)); | 201 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 3, 2, 2)); |
202 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 3)); | 202 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 3)); |
203 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 3, 3, 3)); | 203 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 3, 3, 3)); |
204 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 3)); | 204 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 3)); |
205 | 205 |
206 // Even larger corner radius | 206 // Even larger corner radius |
207 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 6, 2, 4)); | 207 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 1, 6, 2, 4)); |
208 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 6)); | 208 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 3, 6)); |
209 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 6)); | 209 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 6, 6)); |
210 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 6, 1, 3)); | 210 DEF_GM(return new SimpleBlurRoundRectGM(100, 100, 10, 6, 1, 3)); |
211 | |
OLD | NEW |