| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "SkCanvas.h" | 9 #include "SkCanvas.h" |
| 10 #include "SkGradientShader.h" | 10 #include "SkGradientShader.h" |
| 11 #include "SkPath.h" | |
| 12 | 11 |
| 13 namespace skiagm { | 12 namespace skiagm { |
| 14 | 13 |
| 15 static void makebm(SkBitmap* bm, int w, int h) { | 14 static void makebm(SkBitmap* bm, int w, int h) { |
| 16 bm->allocN32Pixels(w, h); | 15 bm->allocN32Pixels(w, h); |
| 17 bm->eraseColor(SK_ColorTRANSPARENT); | 16 bm->eraseColor(SK_ColorTRANSPARENT); |
| 18 | 17 |
| 19 SkCanvas canvas(*bm); | 18 SkCanvas canvas(*bm); |
| 20 SkScalar s = SkIntToScalar(SkMin32(w, h)); | 19 SkScalar s = SkIntToScalar(SkMin32(w, h)); |
| 21 SkPoint pts[] = { { 0, 0 }, { s, s } }; | 20 SkPoint pts[] = { { 0, 0 }, { s, s } }; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 182 |
| 184 private: | 183 private: |
| 185 typedef GM INHERITED; | 184 typedef GM INHERITED; |
| 186 }; | 185 }; |
| 187 | 186 |
| 188 /////////////////////////////////////////////////////////////////////////////// | 187 /////////////////////////////////////////////////////////////////////////////// |
| 189 | 188 |
| 190 static GM* MyFactory(void*) { return new ShaderTextGM; } | 189 static GM* MyFactory(void*) { return new ShaderTextGM; } |
| 191 static GMRegistry reg(MyFactory); | 190 static GMRegistry reg(MyFactory); |
| 192 } | 191 } |
| OLD | NEW |