| 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 "SampleCode.h" | 8 #include "SampleCode.h" |
| 9 #include "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
| 10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 Dot2DPathEffect(SkScalar radius, const SkMatrix& matrix) | 165 Dot2DPathEffect(SkScalar radius, const SkMatrix& matrix) |
| 166 : Sk2DPathEffect(matrix), fRadius(radius) {} | 166 : Sk2DPathEffect(matrix), fRadius(radius) {} |
| 167 | 167 |
| 168 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(Dot2DPathEffect) | 168 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(Dot2DPathEffect) |
| 169 | 169 |
| 170 protected: | 170 protected: |
| 171 virtual void next(const SkPoint& loc, int u, int v, SkPath* dst) const SK_OV
ERRIDE { | 171 virtual void next(const SkPoint& loc, int u, int v, SkPath* dst) const SK_OV
ERRIDE { |
| 172 dst->addCircle(loc.fX, loc.fY, fRadius); | 172 dst->addCircle(loc.fX, loc.fY, fRadius); |
| 173 } | 173 } |
| 174 | 174 |
| 175 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING | |
| 176 Dot2DPathEffect(SkReadBuffer& buffer) : INHERITED(buffer) { | |
| 177 fRadius = buffer.readScalar(); | |
| 178 } | |
| 179 #endif | |
| 180 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE { | 175 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE { |
| 181 this->INHERITED::flatten(buffer); | 176 this->INHERITED::flatten(buffer); |
| 182 buffer.writeScalar(fRadius); | 177 buffer.writeScalar(fRadius); |
| 183 } | 178 } |
| 184 | 179 |
| 185 private: | 180 private: |
| 186 SkScalar fRadius; | 181 SkScalar fRadius; |
| 187 | 182 |
| 188 typedef Sk2DPathEffect INHERITED; | 183 typedef Sk2DPathEffect INHERITED; |
| 189 }; | 184 }; |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 private: | 590 private: |
| 596 SkPoint fClickPt; | 591 SkPoint fClickPt; |
| 597 SkBitmap fBug, fTb, fTx; | 592 SkBitmap fBug, fTb, fTx; |
| 598 typedef SampleView INHERITED; | 593 typedef SampleView INHERITED; |
| 599 }; | 594 }; |
| 600 | 595 |
| 601 ////////////////////////////////////////////////////////////////////////////// | 596 ////////////////////////////////////////////////////////////////////////////// |
| 602 | 597 |
| 603 static SkView* MyFactory() { return new DemoView; } | 598 static SkView* MyFactory() { return new DemoView; } |
| 604 static SkViewRegister reg(MyFactory); | 599 static SkViewRegister reg(MyFactory); |
| OLD | NEW |