blob: 799a89158298a7c9a37ed3a9c40d1e01ece007bc [file] [log] [blame]
Derek Sollenbergerc1908132016-07-15 10:28:16 -04001/*
2 * Copyright (C) 2016 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#pragma once
17
Derek Sollenbergerc1908132016-07-15 10:28:16 -040018#include "CanvasProperty.h"
Jerome Gaillard21e7e2d2019-05-14 14:34:46 +010019#ifdef __ANDROID__ // Layoutlib does not support hardware acceleration
Derek Sollenbergerc1908132016-07-15 10:28:16 -040020#include "DeferredLayerUpdater.h"
Jerome Gaillard21e7e2d2019-05-14 14:34:46 +010021#endif
Derek Sollenbergerc1908132016-07-15 10:28:16 -040022#include "RenderNode.h"
23#include "VectorDrawable.h"
John Reck1bcacfd2017-11-03 10:12:19 -070024#include "hwui/Canvas.h"
Derek Sollenbergerc1908132016-07-15 10:28:16 -040025
26#include <SkCanvas.h>
Ben Wagner0ed10be2018-06-28 17:08:16 -040027
28#include <cassert>
29#include <optional>
Derek Sollenbergerc1908132016-07-15 10:28:16 -040030
31namespace android {
32
33// Holds an SkCanvas reference plus additional native data.
34class SkiaCanvas : public Canvas {
35public:
36 explicit SkiaCanvas(const SkBitmap& bitmap);
37
38 /**
39 * Create a new SkiaCanvas.
40 *
41 * @param canvas SkCanvas to handle calls made to this SkiaCanvas. Must
Mike Reed6acfe162016-11-18 17:21:09 -050042 * not be NULL. This constructor does not take ownership, so the caller
43 * must guarantee that it remains valid while the SkiaCanvas is valid.
Derek Sollenbergerc1908132016-07-15 10:28:16 -040044 */
Derek Sollenbergerfa3e3402017-08-04 08:35:10 -040045 explicit SkiaCanvas(SkCanvas* canvas);
Derek Sollenbergerc1908132016-07-15 10:28:16 -040046
Stan Iliev021693b2016-10-17 16:26:15 -040047 virtual ~SkiaCanvas();
48
Stan Ilievc0e7a902016-10-13 17:07:09 -040049 virtual void resetRecording(int width, int height,
John Reck1bcacfd2017-11-03 10:12:19 -070050 uirenderer::RenderNode* renderNode) override {
Derek Sollenbergerc1908132016-07-15 10:28:16 -040051 LOG_ALWAYS_FATAL("SkiaCanvas cannot be reset as a recording canvas");
52 }
53
54 virtual uirenderer::DisplayList* finishRecording() override {
55 LOG_ALWAYS_FATAL("SkiaCanvas does not produce a DisplayList");
56 return nullptr;
57 }
58 virtual void insertReorderBarrier(bool enableReorder) override {
59 LOG_ALWAYS_FATAL("SkiaCanvas does not support reordering barriers");
60 }
61
62 virtual void setBitmap(const SkBitmap& bitmap) override;
63
64 virtual bool isOpaque() override;
65 virtual int width() override;
66 virtual int height() override;
67
Derek Sollenbergerc1908132016-07-15 10:28:16 -040068 virtual int getSaveCount() const override;
69 virtual int save(SaveFlags::Flags flags) override;
70 virtual void restore() override;
71 virtual void restoreToCount(int saveCount) override;
Derek Sollenbergerac33a482019-04-22 16:28:09 -040072 virtual void restoreUnclippedLayer(int saveCount, const SkPaint& paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -040073
John Reck1bcacfd2017-11-03 10:12:19 -070074 virtual int saveLayer(float left, float top, float right, float bottom, const SkPaint* paint,
75 SaveFlags::Flags flags) override;
76 virtual int saveLayerAlpha(float left, float top, float right, float bottom, int alpha,
77 SaveFlags::Flags flags) override;
Derek Sollenberger24fc9012018-12-07 14:12:12 -050078 virtual int saveUnclippedLayer(int left, int top, int right, int bottom) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -040079
80 virtual void getMatrix(SkMatrix* outMatrix) const override;
81 virtual void setMatrix(const SkMatrix& matrix) override;
82 virtual void concat(const SkMatrix& matrix) override;
83 virtual void rotate(float degrees) override;
84 virtual void scale(float sx, float sy) override;
85 virtual void skew(float sx, float sy) override;
86 virtual void translate(float dx, float dy) override;
87
88 virtual bool getClipBounds(SkRect* outRect) const override;
89 virtual bool quickRejectRect(float left, float top, float right, float bottom) const override;
90 virtual bool quickRejectPath(const SkPath& path) const override;
John Reck1bcacfd2017-11-03 10:12:19 -070091 virtual bool clipRect(float left, float top, float right, float bottom, SkClipOp op) override;
Mike Reed6e49c9f2016-12-02 15:36:59 -050092 virtual bool clipPath(const SkPath* path, SkClipOp op) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -040093
Ben Wagner0ed10be2018-06-28 17:08:16 -040094 virtual PaintFilter* getPaintFilter() override;
95 virtual void setPaintFilter(sk_sp<PaintFilter> paintFilter) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -040096
Matt Sarettd0814db2017-04-13 09:33:18 -040097 virtual SkCanvasState* captureCanvasState() const override;
98
Mike Reed260ab722016-10-07 15:59:20 -040099 virtual void drawColor(int color, SkBlendMode mode) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400100 virtual void drawPaint(const SkPaint& paint) override;
101
102 virtual void drawPoint(float x, float y, const SkPaint& paint) override;
103 virtual void drawPoints(const float* points, int count, const SkPaint& paint) override;
104 virtual void drawLine(float startX, float startY, float stopX, float stopY,
John Reck1bcacfd2017-11-03 10:12:19 -0700105 const SkPaint& paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400106 virtual void drawLines(const float* points, int count, const SkPaint& paint) override;
107 virtual void drawRect(float left, float top, float right, float bottom,
John Reck1bcacfd2017-11-03 10:12:19 -0700108 const SkPaint& paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400109 virtual void drawRegion(const SkRegion& region, const SkPaint& paint) override;
John Reck1bcacfd2017-11-03 10:12:19 -0700110 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
111 const SkPaint& paint) override;
Nader Jawadadfe1d92018-09-27 12:27:36 -0700112
113 virtual void drawDoubleRoundRect(const SkRRect& outer, const SkRRect& inner,
114 const SkPaint& paint) override;
115
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400116 virtual void drawCircle(float x, float y, float radius, const SkPaint& paint) override;
117 virtual void drawOval(float left, float top, float right, float bottom,
John Reck1bcacfd2017-11-03 10:12:19 -0700118 const SkPaint& paint) override;
119 virtual void drawArc(float left, float top, float right, float bottom, float startAngle,
120 float sweepAngle, bool useCenter, const SkPaint& paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400121 virtual void drawPath(const SkPath& path, const SkPaint& paint) override;
Mike Reed826deef2017-04-04 15:32:04 -0400122 virtual void drawVertices(const SkVertices*, SkBlendMode, const SkPaint& paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400123
sergeyvaed7f582016-10-14 16:30:21 -0700124 virtual void drawBitmap(Bitmap& bitmap, float left, float top, const SkPaint* paint) override;
sergeyvfc9999502016-10-17 13:07:38 -0700125 virtual void drawBitmap(Bitmap& bitmap, const SkMatrix& matrix, const SkPaint* paint) override;
John Reck1bcacfd2017-11-03 10:12:19 -0700126 virtual void drawBitmap(Bitmap& bitmap, float srcLeft, float srcTop, float srcRight,
127 float srcBottom, float dstLeft, float dstTop, float dstRight,
128 float dstBottom, const SkPaint* paint) override;
sergeyv5fd2a1c2016-10-20 15:04:28 -0700129 virtual void drawBitmapMesh(Bitmap& bitmap, int meshWidth, int meshHeight,
John Reck1bcacfd2017-11-03 10:12:19 -0700130 const float* vertices, const int* colors,
131 const SkPaint* paint) override;
132 virtual void drawNinePatch(Bitmap& bitmap, const android::Res_png_9patch& chunk, float dstLeft,
133 float dstTop, float dstRight, float dstBottom,
134 const SkPaint* paint) override;
Derek Sollenberger2d142132018-01-22 10:25:26 -0500135 virtual double drawAnimatedImage(AnimatedImageDrawable* imgDrawable) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400136
John Reck1bcacfd2017-11-03 10:12:19 -0700137 virtual bool drawTextAbsolutePos() const override { return true; }
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400138 virtual void drawVectorDrawable(VectorDrawableRoot* vectorDrawable) override;
139
140 virtual void drawRoundRect(uirenderer::CanvasPropertyPrimitive* left,
John Reck1bcacfd2017-11-03 10:12:19 -0700141 uirenderer::CanvasPropertyPrimitive* top,
142 uirenderer::CanvasPropertyPrimitive* right,
143 uirenderer::CanvasPropertyPrimitive* bottom,
144 uirenderer::CanvasPropertyPrimitive* rx,
145 uirenderer::CanvasPropertyPrimitive* ry,
146 uirenderer::CanvasPropertyPaint* paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400147 virtual void drawCircle(uirenderer::CanvasPropertyPrimitive* x,
John Reck1bcacfd2017-11-03 10:12:19 -0700148 uirenderer::CanvasPropertyPrimitive* y,
149 uirenderer::CanvasPropertyPrimitive* radius,
150 uirenderer::CanvasPropertyPaint* paint) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400151
152 virtual void drawLayer(uirenderer::DeferredLayerUpdater* layerHandle) override;
153 virtual void drawRenderNode(uirenderer::RenderNode* renderNode) override;
154 virtual void callDrawGLFunction(Functor* functor,
John Reck1bcacfd2017-11-03 10:12:19 -0700155 uirenderer::GlFunctorLifecycleListener* listener) override;
John Reck894e85a2019-07-15 16:16:44 -0700156 virtual void drawPicture(const SkPicture& picture) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400157
158protected:
Stan Ilievf50806a2016-10-24 10:40:39 -0400159 SkiaCanvas();
John Reck894e85a2019-07-15 16:16:44 -0700160 SkCanvas* asSkCanvas() { return mCanvas; }
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400161 void reset(SkCanvas* skiaCanvas);
162 void drawDrawable(SkDrawable* drawable) { mCanvas->drawDrawable(drawable); }
163
Mike Reed2dfd55d2019-01-08 16:19:03 -0500164 virtual void drawGlyphs(ReadGlyphFunc glyphFunc, int count, const Paint& paint, float x,
John Reck1bcacfd2017-11-03 10:12:19 -0700165 float y, float boundsLeft, float boundsTop, float boundsRight,
166 float boundsBottom, float totalAdvance) override;
Yuqian Liafc221492016-07-18 13:07:42 -0400167 virtual void drawLayoutOnPath(const minikin::Layout& layout, float hOffset, float vOffset,
Mike Reed2dfd55d2019-01-08 16:19:03 -0500168 const Paint& paint, const SkPath& path, size_t start,
John Reck1bcacfd2017-11-03 10:12:19 -0700169 size_t end) override;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400170
Ben Wagner0ed10be2018-06-28 17:08:16 -0400171 /** This class acts as a copy on write SkPaint.
172 *
173 * Initially this will be the SkPaint passed to the contructor.
174 * The first time writable() is called this will become a copy of the
175 * initial SkPaint (or a default SkPaint if nullptr).
176 */
177 struct PaintCoW {
178 PaintCoW(const SkPaint& that) : mPtr(&that) {}
179 PaintCoW(const SkPaint* ptr) : mPtr(ptr) {}
180 PaintCoW(const PaintCoW&) = delete;
181 PaintCoW(PaintCoW&&) = delete;
182 PaintCoW& operator=(const PaintCoW&) = delete;
183 PaintCoW& operator=(PaintCoW&&) = delete;
184 SkPaint& writeable() {
185 if (!mStorage) {
186 if (!mPtr) {
187 mStorage.emplace();
188 } else {
189 mStorage.emplace(*mPtr);
190 }
191 mPtr = &*mStorage;
192 }
193 return *mStorage;
194 }
195 operator const SkPaint*() const { return mPtr; }
196 const SkPaint* operator->() const { assert(mPtr); return mPtr; }
197 const SkPaint& operator*() const { assert(mPtr); return *mPtr; }
198 explicit operator bool() { return mPtr != nullptr; }
199 private:
200 const SkPaint* mPtr;
201 std::optional<SkPaint> mStorage;
202 };
203
204 /** Filters the paint using the current paint filter.
205 *
206 * @param paint the paint to filter. Will be initialized with the default
207 * SkPaint before filtering if filtering is required.
208 */
209 PaintCoW&& filterPaint(PaintCoW&& paint) const;
210
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400211private:
212 struct SaveRec {
John Reck1bcacfd2017-11-03 10:12:19 -0700213 int saveCount;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400214 SaveFlags::Flags saveFlags;
John Reck1bcacfd2017-11-03 10:12:19 -0700215 size_t clipIndex;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400216 };
217
Stan Ilievf50806a2016-10-24 10:40:39 -0400218 const SaveRec* currentSaveRec() const;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400219 void recordPartialSave(SaveFlags::Flags flags);
Stan Ilievf50806a2016-10-24 10:40:39 -0400220
John Reck1bcacfd2017-11-03 10:12:19 -0700221 template <typename T>
Mike Reed6e49c9f2016-12-02 15:36:59 -0500222 void recordClip(const T&, SkClipOp);
Stan Ilievf50806a2016-10-24 10:40:39 -0400223 void applyPersistentClips(size_t clipStartIndex);
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400224
John Reck1bcacfd2017-11-03 10:12:19 -0700225 void drawPoints(const float* points, int count, const SkPaint& paint, SkCanvas::PointMode mode);
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400226
Stan Ilievf50806a2016-10-24 10:40:39 -0400227 class Clip;
228
John Reck1bcacfd2017-11-03 10:12:19 -0700229 std::unique_ptr<SkCanvas> mCanvasOwned; // might own a canvas we allocated
230 SkCanvas* mCanvas; // we do NOT own this canvas, it must survive us
231 // unless it is the same as mCanvasOwned.get()
232 std::unique_ptr<SkDeque> mSaveStack; // lazily allocated, tracks partial saves.
233 std::vector<Clip> mClipStack; // tracks persistent clips.
Ben Wagner0ed10be2018-06-28 17:08:16 -0400234 sk_sp<PaintFilter> mPaintFilter;
Derek Sollenbergerc1908132016-07-15 10:28:16 -0400235};
236
John Reck1bcacfd2017-11-03 10:12:19 -0700237} // namespace android