| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #include "gm.h" | 8 #include "gm.h" |
| 9 | 9 |
| 10 namespace skiagm { | 10 namespace skiagm { |
| 11 | 11 |
| 12 class FillTypeGM : public GM { | 12 class FillTypeGM : public GM { |
| 13 SkPath fPath; | 13 SkPath fPath; |
| 14 public: | 14 public: |
| 15 FillTypeGM() { | 15 FillTypeGM() { |
| 16 this->setBGColor(0xFFDDDDDD); | 16 this->setBGColor(0xFFDDDDDD); |
| 17 } | 17 } |
| 18 | 18 |
| 19 void makePath() { | 19 void makePath() { |
| 20 if (fPath.isEmpty()) { | 20 if (fPath.isEmpty()) { |
| 21 const SkScalar radius = SkIntToScalar(45); | 21 const SkScalar radius = SkIntToScalar(45); |
| 22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius); | 22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius); |
| 23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius); | 23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius); |
| 24 } | 24 } |
| 25 } | 25 } |
| 26 | 26 |
| 27 protected: | 27 protected: |
| 28 virtual uint32_t onGetFlags() const SK_OVERRIDE { | 28 uint32_t onGetFlags() const SK_OVERRIDE { |
| 29 return kSkipTiled_Flag; | 29 return kSkipTiled_Flag; |
| 30 } | 30 } |
| 31 | 31 |
| 32 virtual SkString onShortName() SK_OVERRIDE { | 32 SkString onShortName() SK_OVERRIDE { |
| 33 return SkString("filltypes"); | 33 return SkString("filltypes"); |
| 34 } | 34 } |
| 35 | 35 |
| 36 virtual SkISize onISize() SK_OVERRIDE { | 36 SkISize onISize() SK_OVERRIDE { |
| 37 return SkISize::Make(835, 840); | 37 return SkISize::Make(835, 840); |
| 38 } | 38 } |
| 39 | 39 |
| 40 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, | 40 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft, |
| 41 SkScalar scale, const SkPaint& paint) { | 41 SkScalar scale, const SkPaint& paint) { |
| 42 const SkRect r = { 0, 0, SkIntToScalar(150), SkIntToScalar(150) }; | 42 const SkRect r = { 0, 0, SkIntToScalar(150), SkIntToScalar(150) }; |
| 43 | 43 |
| 44 canvas->save(); | 44 canvas->save(); |
| 45 canvas->translate(SkIntToScalar(x), SkIntToScalar(y)); | 45 canvas->translate(SkIntToScalar(x), SkIntToScalar(y)); |
| 46 canvas->clipRect(r); | 46 canvas->clipRect(r); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 57 showPath(canvas, 0, 0, SkPath::kWinding_FillType, | 57 showPath(canvas, 0, 0, SkPath::kWinding_FillType, |
| 58 scale, paint); | 58 scale, paint); |
| 59 showPath(canvas, 200, 0, SkPath::kEvenOdd_FillType, | 59 showPath(canvas, 200, 0, SkPath::kEvenOdd_FillType, |
| 60 scale, paint); | 60 scale, paint); |
| 61 showPath(canvas, 00, 200, SkPath::kInverseWinding_FillType, | 61 showPath(canvas, 00, 200, SkPath::kInverseWinding_FillType, |
| 62 scale, paint); | 62 scale, paint); |
| 63 showPath(canvas, 200, 200, SkPath::kInverseEvenOdd_FillType, | 63 showPath(canvas, 200, 200, SkPath::kInverseEvenOdd_FillType, |
| 64 scale, paint); | 64 scale, paint); |
| 65 } | 65 } |
| 66 | 66 |
| 67 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { | 67 void onDraw(SkCanvas* canvas) SK_OVERRIDE { |
| 68 this->makePath(); | 68 this->makePath(); |
| 69 | 69 |
| 70 canvas->translate(SkIntToScalar(20), SkIntToScalar(20)); | 70 canvas->translate(SkIntToScalar(20), SkIntToScalar(20)); |
| 71 | 71 |
| 72 SkPaint paint; | 72 SkPaint paint; |
| 73 const SkScalar scale = SkIntToScalar(5)/4; | 73 const SkScalar scale = SkIntToScalar(5)/4; |
| 74 | 74 |
| 75 paint.setAntiAlias(false); | 75 paint.setAntiAlias(false); |
| 76 | 76 |
| 77 showFour(canvas, SK_Scalar1, paint); | 77 showFour(canvas, SK_Scalar1, paint); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 89 private: | 89 private: |
| 90 typedef GM INHERITED; | 90 typedef GM INHERITED; |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 ////////////////////////////////////////////////////////////////////////////// | 93 ////////////////////////////////////////////////////////////////////////////// |
| 94 | 94 |
| 95 static GM* MyFactory(void*) { return new FillTypeGM; } | 95 static GM* MyFactory(void*) { return new FillTypeGM; } |
| 96 static GMRegistry reg(MyFactory); | 96 static GMRegistry reg(MyFactory); |
| 97 | 97 |
| 98 } | 98 } |
| OLD | NEW |