| 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" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 class GradTextGM : public GM { | 100 class GradTextGM : public GM { |
| 101 public: | 101 public: |
| 102 GradTextGM () {} | 102 GradTextGM () {} |
| 103 | 103 |
| 104 protected: | 104 protected: |
| 105 SkString onShortName() SK_OVERRIDE { | 105 SkString onShortName() SK_OVERRIDE { |
| 106 return SkString("gradtext"); | 106 return SkString("gradtext"); |
| 107 } | 107 } |
| 108 | 108 |
| 109 uint32_t onGetFlags() const SK_OVERRIDE { | |
| 110 return kSkipTiled_Flag; | |
| 111 } | |
| 112 | |
| 113 SkISize onISize() SK_OVERRIDE { return SkISize::Make(500, 480); } | 109 SkISize onISize() SK_OVERRIDE { return SkISize::Make(500, 480); } |
| 114 | 110 |
| 115 static void draw_text(SkCanvas* canvas, const SkPaint& paint) { | 111 static void draw_text(SkCanvas* canvas, const SkPaint& paint) { |
| 116 const char* text = "When in the course of human events"; | 112 const char* text = "When in the course of human events"; |
| 117 size_t len = strlen(text); | 113 size_t len = strlen(text); |
| 118 canvas->drawText(text, len, 0, 0, paint); | 114 canvas->drawText(text, len, 0, 0, paint); |
| 119 } | 115 } |
| 120 | 116 |
| 121 static void draw_text3(SkCanvas* canvas, const SkPaint& paint) { | 117 static void draw_text3(SkCanvas* canvas, const SkPaint& paint) { |
| 122 SkPaint p(paint); | 118 SkPaint p(paint); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 ////////////////////////////////////////////////////////////////////////////// | 159 ////////////////////////////////////////////////////////////////////////////// |
| 164 | 160 |
| 165 static GM* MyFactory(void*) { return new GradTextGM; } | 161 static GM* MyFactory(void*) { return new GradTextGM; } |
| 166 static GM* CMyFactory(void*) { return new ChromeGradTextGM1; } | 162 static GM* CMyFactory(void*) { return new ChromeGradTextGM1; } |
| 167 static GM* CMyFactory2(void*) { return new ChromeGradTextGM2; } | 163 static GM* CMyFactory2(void*) { return new ChromeGradTextGM2; } |
| 168 | 164 |
| 169 static GMRegistry reg(MyFactory); | 165 static GMRegistry reg(MyFactory); |
| 170 static GMRegistry Creg(CMyFactory); | 166 static GMRegistry Creg(CMyFactory); |
| 171 static GMRegistry Creg2(CMyFactory2); | 167 static GMRegistry Creg2(CMyFactory2); |
| 172 } | 168 } |
| OLD | NEW |