OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
4 * | 3 * |
5 * 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 |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 #include "gm.h" | 8 #include "gm.h" |
10 #include "SkRandom.h" | 9 #include "SkRandom.h" |
11 #include "SkRRect.h" | 10 #include "SkRRect.h" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 }; | 154 }; |
156 | 155 |
157 ////////////////////////////////////////////////////////////////////////////// | 156 ////////////////////////////////////////////////////////////////////////////// |
158 | 157 |
159 DEF_GM( return new SimpleShapesGM(true); ) | 158 DEF_GM( return new SimpleShapesGM(true); ) |
160 DEF_GM( return new SimpleShapesGM(false); ) | 159 DEF_GM( return new SimpleShapesGM(false); ) |
161 DEF_GM( return new InnerShapesGM(true); ) | 160 DEF_GM( return new InnerShapesGM(true); ) |
162 DEF_GM( return new InnerShapesGM(false); ) | 161 DEF_GM( return new InnerShapesGM(false); ) |
163 | 162 |
164 } | 163 } |
OLD | NEW |