blob: 7ec4f83bc546e83037e1ab8f835b6e0db8d82502 [file] [log] [blame]
mtklein9c5052f2016-08-06 12:51:51 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkLiteRecorder_DEFINED
9#define SkLiteRecorder_DEFINED
10
11#include "SkCanvas.h"
12
13class SkLiteDL;
14
15class SkLiteRecorder final : public SkCanvas {
16public:
17 SkLiteRecorder();
18 void reset(SkLiteDL*);
19
20 sk_sp<SkSurface> onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override;
21
reed6ae69692016-09-02 04:56:53 -070022#ifdef SK_SUPPORT_LEGACY_DRAWFILTER
23 SkDrawFilter* setDrawFilter(SkDrawFilter*) override;
24#endif
25
mtklein9c5052f2016-08-06 12:51:51 -070026 void willSave() override;
27 SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override;
28 void willRestore() override;
29
30 void didConcat(const SkMatrix&) override;
31 void didSetMatrix(const SkMatrix&) override;
mtkleincbdf0072016-08-19 09:05:27 -070032 void didTranslate(SkScalar, SkScalar) override;
mtklein9c5052f2016-08-06 12:51:51 -070033
34 void onClipRect (const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
35 void onClipRRect (const SkRRect&, SkRegion::Op, ClipEdgeStyle) override;
36 void onClipPath (const SkPath&, SkRegion::Op, ClipEdgeStyle) override;
37 void onClipRegion(const SkRegion&, SkRegion::Op) override;
38
39 void onDrawPaint (const SkPaint&) override;
msarett44df6512016-08-25 13:54:30 -070040 void onDrawPath (const SkPath&, const SkPaint&) override;
41 void onDrawRect (const SkRect&, const SkPaint&) override;
42 void onDrawRegion(const SkRegion&, const SkPaint&) override;
43 void onDrawOval (const SkRect&, const SkPaint&) override;
bsalomonac3aa242016-08-19 11:25:19 -070044 void onDrawArc(const SkRect&, SkScalar, SkScalar, bool, const SkPaint&) override;
mtklein9c5052f2016-08-06 12:51:51 -070045 void onDrawRRect (const SkRRect&, const SkPaint&) override;
46 void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
47
48 void onDrawDrawable(SkDrawable*, const SkMatrix*) override;
49 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) override;
50 void onDrawAnnotation(const SkRect&, const char[], SkData*) override;
51
52 void onDrawText (const void*, size_t, SkScalar x, SkScalar y, const SkPaint&) override;
53 void onDrawPosText (const void*, size_t, const SkPoint[], const SkPaint&) override;
54 void onDrawPosTextH (const void*, size_t, const SkScalar[], SkScalar, const SkPaint&) override;
55 void onDrawTextOnPath(const void*, size_t,
56 const SkPath&, const SkMatrix*, const SkPaint&) override;
57 void onDrawTextRSXform(const void*, size_t,
58 const SkRSXform[], const SkRect*, const SkPaint&) override;
59 void onDrawTextBlob(const SkTextBlob*, SkScalar, SkScalar, const SkPaint&) override;
60
61 void onDrawBitmap(const SkBitmap&, SkScalar, SkScalar, const SkPaint*) override;
msarett16882062016-08-16 09:31:08 -070062 void onDrawBitmapLattice(const SkBitmap&, const Lattice&, const SkRect&,
63 const SkPaint*) override;
mtklein9c5052f2016-08-06 12:51:51 -070064 void onDrawBitmapNine(const SkBitmap&, const SkIRect&, const SkRect&, const SkPaint*) override;
65 void onDrawBitmapRect(const SkBitmap&, const SkRect*, const SkRect&, const SkPaint*,
66 SrcRectConstraint) override;
67
68 void onDrawImage(const SkImage*, SkScalar, SkScalar, const SkPaint*) override;
69 void onDrawImageLattice(const SkImage*, const Lattice&, const SkRect&, const SkPaint*) override;
70 void onDrawImageNine(const SkImage*, const SkIRect&, const SkRect&, const SkPaint*) override;
71 void onDrawImageRect(const SkImage*, const SkRect*, const SkRect&, const SkPaint*,
72 SrcRectConstraint) override;
73
74 void onDrawPatch(const SkPoint[12], const SkColor[4],
75 const SkPoint[4], SkXfermode*, const SkPaint&) override;
76 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override;
77 void onDrawVertices(VertexMode, int, const SkPoint[], const SkPoint[], const SkColor[],
78 SkXfermode*, const uint16_t[], int, const SkPaint&) override;
79 void onDrawAtlas(const SkImage*, const SkRSXform[], const SkRect[], const SkColor[],
80 int, SkXfermode::Mode, const SkRect*, const SkPaint*) override;
81
82#ifdef SK_EXPERIMENTAL_SHADOWING
83 void didTranslateZ(SkScalar) override;
vjiaoblacke6f5d562016-08-25 06:30:23 -070084 void onDrawShadowedPicture(const SkPicture*, const SkMatrix*,
85 const SkPaint*, const SkShadowParams& params) override;
mtklein9c5052f2016-08-06 12:51:51 -070086#else
87 void didTranslateZ(SkScalar);
vjiaoblacke6f5d562016-08-25 06:30:23 -070088 void onDrawShadowedPicture(const SkPicture*, const SkMatrix*,
89 const SkPaint*, const SkShadowParams& params);
mtklein9c5052f2016-08-06 12:51:51 -070090#endif
91
92private:
93 SkLiteDL* fDL;
94};
95
96#endif//SkLiteRecorder_DEFINED