| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 | 7 |
| 8 #ifndef SkLiteRecorder_DEFINED | 8 #ifndef SkLiteRecorder_DEFINED |
| 9 #define SkLiteRecorder_DEFINED | 9 #define SkLiteRecorder_DEFINED |
| 10 | 10 |
| 11 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
| 12 | 12 |
| 13 class SkLiteDL; | 13 class SkLiteDL; |
| 14 | 14 |
| 15 class SkLiteRecorder final : public SkCanvas { | 15 class SkLiteRecorder final : public SkCanvas { |
| 16 public: | 16 public: |
| 17 SkLiteRecorder(); | 17 SkLiteRecorder(); |
| 18 void reset(SkLiteDL*); | 18 void reset(SkLiteDL*); |
| 19 | 19 |
| 20 sk_sp<SkSurface> onNewSurface(const SkImageInfo&, const SkSurfaceProps&) ove
rride; | 20 sk_sp<SkSurface> onNewSurface(const SkImageInfo&, const SkSurfaceProps&) ove
rride; |
| 21 | 21 |
| 22 void willSave() override; | 22 void willSave() override; |
| 23 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override; | 23 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override; |
| 24 void willRestore() override; | 24 void willRestore() override; |
| 25 | 25 |
| 26 void didConcat(const SkMatrix&) override; | 26 void didConcat(const SkMatrix&) override; |
| 27 void didSetMatrix(const SkMatrix&) override; | 27 void didSetMatrix(const SkMatrix&) override; |
| 28 void didTranslate(SkScalar, SkScalar) override; | |
| 29 | 28 |
| 30 void onClipRect (const SkRect&, SkRegion::Op, ClipEdgeStyle) override; | 29 void onClipRect (const SkRect&, SkRegion::Op, ClipEdgeStyle) override; |
| 31 void onClipRRect (const SkRRect&, SkRegion::Op, ClipEdgeStyle) override; | 30 void onClipRRect (const SkRRect&, SkRegion::Op, ClipEdgeStyle) override; |
| 32 void onClipPath (const SkPath&, SkRegion::Op, ClipEdgeStyle) override; | 31 void onClipPath (const SkPath&, SkRegion::Op, ClipEdgeStyle) override; |
| 33 void onClipRegion(const SkRegion&, SkRegion::Op) override; | 32 void onClipRegion(const SkRegion&, SkRegion::Op) override; |
| 34 | 33 |
| 35 void onDrawPaint (const SkPaint&) override; | 34 void onDrawPaint (const SkPaint&) override; |
| 36 void onDrawPath (const SkPath&, const SkPaint&) override; | 35 void onDrawPath (const SkPath&, const SkPaint&) override; |
| 37 void onDrawRect (const SkRect&, const SkPaint&) override; | 36 void onDrawRect (const SkRect&, const SkPaint&) override; |
| 38 void onDrawOval (const SkRect&, const SkPaint&) override; | 37 void onDrawOval (const SkRect&, const SkPaint&) override; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 #else | 78 #else |
| 80 void didTranslateZ(SkScalar); | 79 void didTranslateZ(SkScalar); |
| 81 void onDrawShadowedPicture(const SkPicture*, const SkMatrix*, const SkPaint*
); | 80 void onDrawShadowedPicture(const SkPicture*, const SkMatrix*, const SkPaint*
); |
| 82 #endif | 81 #endif |
| 83 | 82 |
| 84 private: | 83 private: |
| 85 SkLiteDL* fDL; | 84 SkLiteDL* fDL; |
| 86 }; | 85 }; |
| 87 | 86 |
| 88 #endif//SkLiteRecorder_DEFINED | 87 #endif//SkLiteRecorder_DEFINED |
| OLD | NEW |