| 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 LinePathGM : public GM { | 14 class LinePathGM : public GM { |
| 15 public: | 15 public: |
| 16 LinePathGM() {} | 16 LinePathGM() {} |
| 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("linepath"); | 24 return SkString("linepath"); |
| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 | 158 |
| 159 class LineClosePathGM : public GM { | 159 class LineClosePathGM : public GM { |
| 160 public: | 160 public: |
| 161 LineClosePathGM() {} | 161 LineClosePathGM() {} |
| 162 | 162 |
| 163 protected: | 163 protected: |
| 164 SkString onShortName() { | 164 SkString onShortName() { |
| 165 return SkString("lineclosepath"); | 165 return SkString("lineclosepath"); |
| 166 } | 166 } |
| 167 | 167 |
| 168 SkISize onISize() { return make_isize(1240, 390); } | 168 SkISize onISize() { return SkISize::Make(1240, 390); } |
| 169 | 169 |
| 170 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, | 170 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, |
| 171 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, | 171 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, |
| 172 SkPaint::Style style, SkPath::FillType fill, | 172 SkPaint::Style style, SkPath::FillType fill, |
| 173 SkScalar strokeWidth) { | 173 SkScalar strokeWidth) { |
| 174 path.setFillType(fill); | 174 path.setFillType(fill); |
| 175 SkPaint paint; | 175 SkPaint paint; |
| 176 paint.setStrokeCap(cap); | 176 paint.setStrokeCap(cap); |
| 177 paint.setStrokeWidth(strokeWidth); | 177 paint.setStrokeWidth(strokeWidth); |
| 178 paint.setStrokeJoin(join); | 178 paint.setStrokeJoin(join); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 300 |
| 301 ////////////////////////////////////////////////////////////////////////////// | 301 ////////////////////////////////////////////////////////////////////////////// |
| 302 | 302 |
| 303 static GM* LinePathFactory(void*) { return new LinePathGM; } | 303 static GM* LinePathFactory(void*) { return new LinePathGM; } |
| 304 static GMRegistry regLinePath(LinePathFactory); | 304 static GMRegistry regLinePath(LinePathFactory); |
| 305 | 305 |
| 306 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; } | 306 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; } |
| 307 static GMRegistry regLineClosePath(LineClosePathFactory); | 307 static GMRegistry regLineClosePath(LineClosePathFactory); |
| 308 | 308 |
| 309 } | 309 } |
| OLD | NEW |