OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 #include "gm.h" | 7 #include "gm.h" |
9 #include "SkPath.h" | 8 #include "SkPath.h" |
10 #include "SkRegion.h" | 9 #include "SkRegion.h" |
11 #include "SkShader.h" | 10 #include "SkShader.h" |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 private: | 252 private: |
254 typedef skiagm::GM INHERITED; | 253 typedef skiagm::GM INHERITED; |
255 }; | 254 }; |
256 | 255 |
257 ////////////////////////////////////////////////////////////////////////////// | 256 ////////////////////////////////////////////////////////////////////////////// |
258 | 257 |
259 DEF_GM( return new TilingGM(true); ) | 258 DEF_GM( return new TilingGM(true); ) |
260 DEF_GM( return new TilingGM(false); ) | 259 DEF_GM( return new TilingGM(false); ) |
261 DEF_GM( return new Tiling2GM(make_bm, "bitmap"); ) | 260 DEF_GM( return new Tiling2GM(make_bm, "bitmap"); ) |
262 DEF_GM( return new Tiling2GM(make_grad, "gradient"); ) | 261 DEF_GM( return new Tiling2GM(make_grad, "gradient"); ) |
OLD | NEW |