| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 #include "gm.h" | 7 #include "gm.h" |
| 8 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 9 #include "SkPaint.h" | 9 #include "SkPaint.h" |
| 10 #include "Sk1DPathEffect.h" | 10 #include "Sk1DPathEffect.h" |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 paint->setPathEffect(MakeTileEffect())->unref(); | 100 paint->setPathEffect(MakeTileEffect())->unref(); |
| 101 } | 101 } |
| 102 | 102 |
| 103 static const PE_Proc gPE2[] = { fill_pe, discrete_pe, tile_pe }; | 103 static const PE_Proc gPE2[] = { fill_pe, discrete_pe, tile_pe }; |
| 104 | 104 |
| 105 class PathEffectGM : public GM { | 105 class PathEffectGM : public GM { |
| 106 public: | 106 public: |
| 107 PathEffectGM() {} | 107 PathEffectGM() {} |
| 108 | 108 |
| 109 protected: | 109 protected: |
| 110 virtual uint32_t onGetFlags() const SK_OVERRIDE { |
| 111 return kSkipTiled_Flag; |
| 112 } |
| 113 |
| 110 SkString onShortName() { | 114 SkString onShortName() { |
| 111 return SkString("patheffect"); | 115 return SkString("patheffect"); |
| 112 } | 116 } |
| 113 | 117 |
| 114 SkISize onISize() { return make_isize(800, 600); } | 118 SkISize onISize() { return make_isize(800, 600); } |
| 115 | 119 |
| 116 virtual void onDraw(SkCanvas* canvas) { | 120 virtual void onDraw(SkCanvas* canvas) { |
| 117 SkPaint paint; | 121 SkPaint paint; |
| 118 paint.setAntiAlias(true); | 122 paint.setAntiAlias(true); |
| 119 paint.setStyle(SkPaint::kStroke_Style); | 123 paint.setStyle(SkPaint::kStroke_Style); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 private: | 165 private: |
| 162 typedef GM INHERITED; | 166 typedef GM INHERITED; |
| 163 }; | 167 }; |
| 164 | 168 |
| 165 ////////////////////////////////////////////////////////////////////////////// | 169 ////////////////////////////////////////////////////////////////////////////// |
| 166 | 170 |
| 167 static GM* PathEffectFactory(void*) { return new PathEffectGM; } | 171 static GM* PathEffectFactory(void*) { return new PathEffectGM; } |
| 168 static GMRegistry regPathEffect(PathEffectFactory); | 172 static GMRegistry regPathEffect(PathEffectFactory); |
| 169 | 173 |
| 170 } | 174 } |
| OLD | NEW |