| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 private: | 257 private: |
| 259 typedef skiagm::GM INHERITED; | 258 typedef skiagm::GM INHERITED; |
| 260 }; | 259 }; |
| 261 | 260 |
| 262 ////////////////////////////////////////////////////////////////////////////// | 261 ////////////////////////////////////////////////////////////////////////////// |
| 263 | 262 |
| 264 DEF_GM( return new ScaledTilingGM(true); ) | 263 DEF_GM( return new ScaledTilingGM(true); ) |
| 265 DEF_GM( return new ScaledTilingGM(false); ) | 264 DEF_GM( return new ScaledTilingGM(false); ) |
| 266 DEF_GM( return new ScaledTiling2GM(make_bm, "bitmap"); ) | 265 DEF_GM( return new ScaledTiling2GM(make_bm, "bitmap"); ) |
| 267 DEF_GM( return new ScaledTiling2GM(make_grad, "gradient"); ) | 266 DEF_GM( return new ScaledTiling2GM(make_grad, "gradient"); ) |
| OLD | NEW |