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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 } | 132 } |
133 } | 133 } |
134 } | 134 } |
135 private: | 135 private: |
136 const SkString fName; | 136 const SkString fName; |
137 | 137 |
138 typedef skiagm::GM INHERITED; | 138 typedef skiagm::GM INHERITED; |
139 }; | 139 }; |
140 | 140 |
141 // Create one with dimensions/rounded corners based on the skp | 141 // Create one with dimensions/rounded corners based on the skp |
142 DEF_GM(return new BlurRoundRectGM(600, 5514, 6);) | 142 // |
| 143 // TODO(scroggo): Disabled in an attempt to rememdy |
| 144 // https://code.google.com/p/skia/issues/detail?id=1801 ('Win7 Test bots all fai
ling GenerateGMs: |
| 145 // ran wrong number of tests') |
| 146 //DEF_GM(return new BlurRoundRectGM(600, 5514, 6);) |
| 147 |
143 // Rounded rect with two opposite corners with large radii, the other two | 148 // Rounded rect with two opposite corners with large radii, the other two |
144 // small. | 149 // small. |
145 DEF_GM(return new BlurRoundRectGM(100, 100);) | 150 DEF_GM(return new BlurRoundRectGM(100, 100);) |
146 | 151 |
147 DEF_GM(return new SimpleBlurRoundRectGM();) | 152 DEF_GM(return new SimpleBlurRoundRectGM();) |
148 | |
OLD | NEW |