blob: 360d5a08b974c011f726afbd9c94801078da412a [file] [log] [blame]
Derek Sollenberger1db141f2014-12-16 08:37:20 -05001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SkiaCanvasProxy_DEFINED
18#define SkiaCanvasProxy_DEFINED
19
Derek Sollenberger1db141f2014-12-16 08:37:20 -050020#include <SkCanvas.h>
John Reck1bcacfd2017-11-03 10:12:19 -070021#include <cutils/compiler.h>
Derek Sollenberger1db141f2014-12-16 08:37:20 -050022
sergeyvdccca442016-03-21 15:38:21 -070023#include "hwui/Canvas.h"
Derek Sollenberger1db141f2014-12-16 08:37:20 -050024
25namespace android {
26namespace uirenderer {
27
28/**
29 * This class serves as a proxy between Skia's SkCanvas and Android Framework's
Tom Hudsonb1476ae2015-03-05 10:30:18 -050030 * Canvas. The class does not maintain any draw-related state and will pass
31 * through most requests directly to the Canvas provided in the constructor.
Derek Sollenberger1db141f2014-12-16 08:37:20 -050032 *
33 * Upon construction it is expected that the provided Canvas has already been
34 * prepared for recording and will continue to be in the recording state while
35 * this proxy class is being used.
Tom Hudsonb1476ae2015-03-05 10:30:18 -050036 *
37 * If filterHwuiCalls is true, the proxy silently ignores away draw calls that
38 * aren't supported by HWUI.
Derek Sollenberger1db141f2014-12-16 08:37:20 -050039 */
40class ANDROID_API SkiaCanvasProxy : public SkCanvas {
41public:
Chih-Hung Hsiehfaecb782016-07-21 11:23:06 -070042 explicit SkiaCanvasProxy(Canvas* canvas, bool filterHwuiCalls = false);
Derek Sollenberger1db141f2014-12-16 08:37:20 -050043 virtual ~SkiaCanvasProxy() {}
44
45protected:
Matt Sarett79fc3b12016-03-24 11:02:44 -040046 virtual sk_sp<SkSurface> onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override;
Derek Sollenberger1db141f2014-12-16 08:37:20 -050047
48 virtual void willSave() override;
Leon Scroggins III5518e7c2016-01-04 09:37:42 -050049 virtual SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override;
Derek Sollenberger1db141f2014-12-16 08:37:20 -050050 virtual void willRestore() override;
51
52 virtual void didConcat(const SkMatrix&) override;
53 virtual void didSetMatrix(const SkMatrix&) override;
54
55 virtual void onDrawPaint(const SkPaint& paint) override;
56 virtual void onDrawPoints(PointMode, size_t count, const SkPoint pts[],
57 const SkPaint&) override;
58 virtual void onDrawOval(const SkRect&, const SkPaint&) override;
59 virtual void onDrawRect(const SkRect&, const SkPaint&) override;
60 virtual void onDrawRRect(const SkRRect&, const SkPaint&) override;
61 virtual void onDrawPath(const SkPath& path, const SkPaint&) override;
Yuqian Li99691112017-02-03 15:01:41 -050062 virtual void onDrawArc(const SkRect&, SkScalar startAngle, SkScalar sweepAngle, bool useCenter,
63 const SkPaint&) override;
Derek Sollenberger1db141f2014-12-16 08:37:20 -050064 virtual void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top,
65 const SkPaint*) override;
66 virtual void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst,
Leon Scroggins IIIf35b9892015-07-31 10:38:40 -040067 const SkPaint* paint, SrcRectConstraint) override;
John Reck1bcacfd2017-11-03 10:12:19 -070068 virtual void onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, const SkRect& dst,
69 const SkPaint*) override;
Stan Iliev770e0b52017-01-05 16:53:14 -050070 virtual void onDrawImage(const SkImage*, SkScalar dx, SkScalar dy, const SkPaint*);
71 virtual void onDrawImageRect(const SkImage*, const SkRect*, const SkRect&, const SkPaint*,
John Reck1bcacfd2017-11-03 10:12:19 -070072 SrcRectConstraint);
Stan Iliev770e0b52017-01-05 16:53:14 -050073 virtual void onDrawImageNine(const SkImage*, const SkIRect& center, const SkRect& dst,
John Reck1bcacfd2017-11-03 10:12:19 -070074 const SkPaint*);
Stan Iliev770e0b52017-01-05 16:53:14 -050075 virtual void onDrawImageLattice(const SkImage*, const Lattice& lattice, const SkRect& dst,
John Reck1bcacfd2017-11-03 10:12:19 -070076 const SkPaint*);
Mike Reed871cd2d2017-03-17 10:15:52 -040077 virtual void onDrawVerticesObject(const SkVertices*, SkBlendMode, const SkPaint&) override;
Derek Sollenberger1db141f2014-12-16 08:37:20 -050078
79 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
80
81 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
82 const SkPaint&) override;
83 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
84 const SkPaint&) override;
85 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
86 SkScalar constY, const SkPaint&) override;
87 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
88 const SkMatrix* matrix, const SkPaint&) override;
Yuqian Liafc221492016-07-18 13:07:42 -040089 virtual void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform[],
90 const SkRect* cullRect, const SkPaint& paint);
Derek Sollenberger1db141f2014-12-16 08:37:20 -050091 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
92 const SkPaint& paint) override;
93
94 virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
Mike Reedc2f31df2016-10-28 17:21:45 -040095 const SkPoint texCoords[4], SkBlendMode,
Derek Sollenberger1db141f2014-12-16 08:37:20 -050096 const SkPaint& paint) override;
97
Mike Reed6e49c9f2016-12-02 15:36:59 -050098 virtual void onClipRect(const SkRect&, SkClipOp, ClipEdgeStyle) override;
99 virtual void onClipRRect(const SkRRect&, SkClipOp, ClipEdgeStyle) override;
100 virtual void onClipPath(const SkPath&, SkClipOp, ClipEdgeStyle) override;
Derek Sollenberger1db141f2014-12-16 08:37:20 -0500101
102private:
103 Canvas* mCanvas;
Tom Hudsonb1476ae2015-03-05 10:30:18 -0500104 bool mFilterHwuiCalls;
Derek Sollenberger1db141f2014-12-16 08:37:20 -0500105
106 typedef SkCanvas INHERITED;
107};
108
John Reck1bcacfd2017-11-03 10:12:19 -0700109}; // namespace uirenderer
110}; // namespace android
Derek Sollenberger1db141f2014-12-16 08:37:20 -0500111
John Reck1bcacfd2017-11-03 10:12:19 -0700112#endif // SkiaCanvasProxy_DEFINED