| 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 #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 "SkRandom.h" | 10 #include "SkRandom.h" |
| 11 | 11 |
| 12 namespace skiagm { | 12 namespace skiagm { |
| 13 | 13 |
| 14 class QuadPathGM : public GM { | 14 class QuadPathGM : public GM { |
| 15 public: | 15 public: |
| 16 QuadPathGM() {} | 16 QuadPathGM() {} |
| 17 | 17 |
| 18 protected: | 18 protected: |
| 19 uint32_t onGetFlags() const SK_OVERRIDE { | |
| 20 return kSkipTiled_Flag; | |
| 21 } | |
| 22 | 19 |
| 23 SkString onShortName() SK_OVERRIDE { | 20 SkString onShortName() SK_OVERRIDE { |
| 24 return SkString("quadpath"); | 21 return SkString("quadpath"); |
| 25 } | 22 } |
| 26 | 23 |
| 27 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } | 24 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } |
| 28 | 25 |
| 29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 26 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
| 30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 27 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
| 31 SkPaint::Style style, SkPath::FillType fill, | 28 SkPaint::Style style, SkPath::FillType fill, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 154 |
| 158 private: | 155 private: |
| 159 typedef GM INHERITED; | 156 typedef GM INHERITED; |
| 160 }; | 157 }; |
| 161 | 158 |
| 162 class QuadClosePathGM : public GM { | 159 class QuadClosePathGM : public GM { |
| 163 public: | 160 public: |
| 164 QuadClosePathGM() {} | 161 QuadClosePathGM() {} |
| 165 | 162 |
| 166 protected: | 163 protected: |
| 167 uint32_t onGetFlags() const SK_OVERRIDE { | |
| 168 return kSkipTiled_Flag; | |
| 169 } | |
| 170 | 164 |
| 171 SkString onShortName() SK_OVERRIDE { | 165 SkString onShortName() SK_OVERRIDE { |
| 172 return SkString("quadclosepath"); | 166 return SkString("quadclosepath"); |
| 173 } | 167 } |
| 174 | 168 |
| 175 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } | 169 SkISize onISize() SK_OVERRIDE { return SkISize::Make(1240, 390); } |
| 176 | 170 |
| 177 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 171 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
| 178 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 172 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
| 179 SkPaint::Style style, SkPath::FillType fill, | 173 SkPaint::Style style, SkPath::FillType fill, |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 304 |
| 311 ////////////////////////////////////////////////////////////////////////////// | 305 ////////////////////////////////////////////////////////////////////////////// |
| 312 | 306 |
| 313 static GM* QuadPathFactory(void*) { return new QuadPathGM; } | 307 static GM* QuadPathFactory(void*) { return new QuadPathGM; } |
| 314 static GMRegistry regQuadPath(QuadPathFactory); | 308 static GMRegistry regQuadPath(QuadPathFactory); |
| 315 | 309 |
| 316 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } | 310 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } |
| 317 static GMRegistry regQuadClosePath(QuadClosePathFactory); | 311 static GMRegistry regQuadClosePath(QuadClosePathFactory); |
| 318 | 312 |
| 319 } | 313 } |
| OLD | NEW |