| 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 virtual uint32_t onGetFlags() const SK_OVERRIDE { | 19 virtual uint32_t onGetFlags() const SK_OVERRIDE { |
| 20 return kSkipTiled_Flag; | 20 return kSkipTiled_Flag; |
| 21 } | 21 } |
| 22 | 22 |
| 23 SkString onShortName() { | 23 SkString onShortName() { |
| 24 return SkString("quadpath"); | 24 return SkString("quadpath"); |
| 25 } | 25 } |
| 26 | 26 |
| 27 SkISize onISize() { return make_isize(1240, 390); } | 27 SkISize onISize() { return SkISize::Make(1240, 390); } |
| 28 | 28 |
| 29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
| 30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
| 31 SkPaint::Style style, SkPath::FillType fill, | 31 SkPaint::Style style, SkPath::FillType fill, |
| 32 SkScalar strokeWidth) { | 32 SkScalar strokeWidth) { |
| 33 path.setFillType(fill); | 33 path.setFillType(fill); |
| 34 SkPaint paint; | 34 SkPaint paint; |
| 35 paint.setStrokeCap(cap); | 35 paint.setStrokeCap(cap); |
| 36 paint.setStrokeWidth(strokeWidth); | 36 paint.setStrokeWidth(strokeWidth); |
| 37 paint.setStrokeJoin(join); | 37 paint.setStrokeJoin(join); |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 163 |
| 164 protected: | 164 protected: |
| 165 virtual uint32_t onGetFlags() const SK_OVERRIDE { | 165 virtual uint32_t onGetFlags() const SK_OVERRIDE { |
| 166 return kSkipTiled_Flag; | 166 return kSkipTiled_Flag; |
| 167 } | 167 } |
| 168 | 168 |
| 169 SkString onShortName() { | 169 SkString onShortName() { |
| 170 return SkString("quadclosepath"); | 170 return SkString("quadclosepath"); |
| 171 } | 171 } |
| 172 | 172 |
| 173 SkISize onISize() { return make_isize(1240, 390); } | 173 SkISize onISize() { return SkISize::Make(1240, 390); } |
| 174 | 174 |
| 175 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 175 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
| 176 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 176 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
| 177 SkPaint::Style style, SkPath::FillType fill, | 177 SkPaint::Style style, SkPath::FillType fill, |
| 178 SkScalar strokeWidth) { | 178 SkScalar strokeWidth) { |
| 179 path.setFillType(fill); | 179 path.setFillType(fill); |
| 180 SkPaint paint; | 180 SkPaint paint; |
| 181 paint.setStrokeCap(cap); | 181 paint.setStrokeCap(cap); |
| 182 paint.setStrokeWidth(strokeWidth); | 182 paint.setStrokeWidth(strokeWidth); |
| 183 paint.setStrokeJoin(join); | 183 paint.setStrokeJoin(join); |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 ////////////////////////////////////////////////////////////////////////////// | 307 ////////////////////////////////////////////////////////////////////////////// |
| 308 | 308 |
| 309 static GM* QuadPathFactory(void*) { return new QuadPathGM; } | 309 static GM* QuadPathFactory(void*) { return new QuadPathGM; } |
| 310 static GMRegistry regQuadPath(QuadPathFactory); | 310 static GMRegistry regQuadPath(QuadPathFactory); |
| 311 | 311 |
| 312 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } | 312 static GM* QuadClosePathFactory(void*) { return new QuadClosePathGM; } |
| 313 static GMRegistry regQuadClosePath(QuadClosePathFactory); | 313 static GMRegistry regQuadClosePath(QuadClosePathFactory); |
| 314 | 314 |
| 315 } | 315 } |
| OLD | NEW |