blob: 9c0bb161380cf0ceff914e30f0a13b7fde57ac19 [file] [log] [blame]
Doris Liu4bbc2932015-12-01 17:59:40 -08001/*
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 ANDROID_HWUI_VPATH_H
18#define ANDROID_HWUI_VPATH_H
19
Doris Liu1d8e1942016-03-02 15:16:28 -080020#include "DisplayList.h"
John Reck1bcacfd2017-11-03 10:12:19 -070021#include "hwui/Bitmap.h"
22#include "hwui/Canvas.h"
23#include "renderthread/CacheManager.h"
Doris Liu766431a2016-02-04 22:17:11 +000024
Doris Liu4bbc2932015-12-01 17:59:40 -080025#include <SkBitmap.h>
John Reck1bcacfd2017-11-03 10:12:19 -070026#include <SkCanvas.h>
Doris Liu4bbc2932015-12-01 17:59:40 -080027#include <SkColor.h>
Doris Liu1d8e1942016-03-02 15:16:28 -080028#include <SkColorFilter.h>
Doris Liu4bbc2932015-12-01 17:59:40 -080029#include <SkMatrix.h>
30#include <SkPaint.h>
31#include <SkPath.h>
32#include <SkPathMeasure.h>
33#include <SkRect.h>
Teng-Hui Zhudbee9bb2015-12-15 11:01:27 -080034#include <SkShader.h>
Stan Iliev23c38a92017-03-23 00:12:50 -040035#include <SkSurface.h>
Doris Liu4bbc2932015-12-01 17:59:40 -080036
37#include <cutils/compiler.h>
38#include <stddef.h>
Doris Liu4bbc2932015-12-01 17:59:40 -080039#include <string>
John Reck1bcacfd2017-11-03 10:12:19 -070040#include <vector>
Doris Liu4bbc2932015-12-01 17:59:40 -080041
42namespace android {
43namespace uirenderer {
44
Teng-Hui Zhu85d99522016-04-25 14:23:40 -070045// Debug
46#if DEBUG_VECTOR_DRAWABLE
John Reck1bcacfd2017-11-03 10:12:19 -070047#define VECTOR_DRAWABLE_LOGD(...) ALOGD(__VA_ARGS__)
Teng-Hui Zhu85d99522016-04-25 14:23:40 -070048#else
John Reck1bcacfd2017-11-03 10:12:19 -070049#define VECTOR_DRAWABLE_LOGD(...)
Teng-Hui Zhu85d99522016-04-25 14:23:40 -070050#endif
51
Doris Liu4bbc2932015-12-01 17:59:40 -080052namespace VectorDrawable {
John Reck1bcacfd2017-11-03 10:12:19 -070053#define VD_SET_PRIMITIVE_FIELD_WITH_FLAG(field, value, flag) \
54 (VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(field, (value)) ? ((flag) = true, true) : false)
Doris Liu32d7cda2016-04-08 13:48:47 -070055#define VD_SET_PROP(field, value) ((value) != (field) ? ((field) = (value), true) : false)
John Reck1bcacfd2017-11-03 10:12:19 -070056#define VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(field, value) \
57 ({ \
58 bool retVal = VD_SET_PROP((mPrimitiveFields.field), (value)); \
59 onPropertyChanged(); \
60 retVal; \
61 })
Doris Liu4bbc2932015-12-01 17:59:40 -080062
63/* A VectorDrawable is composed of a tree of nodes.
64 * Each node can be a group node, or a path.
65 * A group node can have groups or paths as children, but a path node has
66 * no children.
67 * One example can be:
68 * Root Group
69 * / | \
70 * Group Path Group
71 * / \ |
72 * Path Path Path
73 *
Doris Liu1d8e1942016-03-02 15:16:28 -080074 * VectorDrawables are drawn into bitmap caches first, then the caches are drawn to the given
75 * canvas with root alpha applied. Two caches are maintained for VD, one in UI thread, the other in
76 * Render Thread. A generation id is used to keep track of changes in the vector drawable tree.
77 * Each cache has their own generation id to track whether they are up to date with the latest
78 * change in the tree.
79 *
80 * Any property change to the vector drawable coming from UI thread (such as bulk setters to update
81 * all the properties, and viewport change, etc.) are only modifying the staging properties. The
82 * staging properties will then be marked dirty and will be pushed over to render thread properties
83 * at sync point. If staging properties are not dirty at sync point, we sync backwards by updating
84 * staging properties with render thread properties to reflect the latest animation value.
85 *
Doris Liu4bbc2932015-12-01 17:59:40 -080086 */
Doris Liu1d8e1942016-03-02 15:16:28 -080087
88class PropertyChangedListener {
89public:
90 PropertyChangedListener(bool* dirty, bool* stagingDirty)
91 : mDirty(dirty), mStagingDirty(stagingDirty) {}
John Reck1bcacfd2017-11-03 10:12:19 -070092 void onPropertyChanged() { *mDirty = true; }
93 void onStagingPropertyChanged() { *mStagingDirty = true; }
94
Doris Liu1d8e1942016-03-02 15:16:28 -080095private:
96 bool* mDirty;
97 bool* mStagingDirty;
98};
99
Doris Liu4bbc2932015-12-01 17:59:40 -0800100class ANDROID_API Node {
101public:
Doris Liu1d8e1942016-03-02 15:16:28 -0800102 class Properties {
103 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700104 explicit Properties(Node* node) : mNode(node) {}
John Reck1bcacfd2017-11-03 10:12:19 -0700105 inline void onPropertyChanged() { mNode->onPropertyChanged(this); }
106
Doris Liu1d8e1942016-03-02 15:16:28 -0800107 private:
108 Node* mNode;
109 };
John Reck1bcacfd2017-11-03 10:12:19 -0700110 Node(const Node& node) { mName = node.mName; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800111 Node() {}
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400112 virtual void draw(SkCanvas* outCanvas, bool useStagingData) = 0;
Doris Liu4bbc2932015-12-01 17:59:40 -0800113 virtual void dump() = 0;
John Reck1bcacfd2017-11-03 10:12:19 -0700114 void setName(const char* name) { mName = name; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800115 virtual void setPropertyChangedListener(PropertyChangedListener* listener) {
116 mPropertyChangedListener = listener;
117 }
118 virtual void onPropertyChanged(Properties* properties) = 0;
John Reck1bcacfd2017-11-03 10:12:19 -0700119 virtual ~Node() {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800120 virtual void syncProperties() = 0;
Doris Liu6b184d72017-12-04 16:31:07 -0800121 virtual void setAntiAlias(bool aa) = 0;
John Reck1bcacfd2017-11-03 10:12:19 -0700122
John Reck08ee8152018-09-20 16:27:46 -0700123 virtual void forEachFillColor(const std::function<void(SkColor)>& func) const { }
124
Doris Liu4bbc2932015-12-01 17:59:40 -0800125protected:
126 std::string mName;
Doris Liu1d8e1942016-03-02 15:16:28 -0800127 PropertyChangedListener* mPropertyChangedListener = nullptr;
Doris Liu4bbc2932015-12-01 17:59:40 -0800128};
129
130class ANDROID_API Path : public Node {
131public:
132 struct ANDROID_API Data {
133 std::vector<char> verbs;
134 std::vector<size_t> verbSizes;
135 std::vector<float> points;
136 bool operator==(const Data& data) const {
John Reck1bcacfd2017-11-03 10:12:19 -0700137 return verbs == data.verbs && verbSizes == data.verbSizes && points == data.points;
Doris Liu4bbc2932015-12-01 17:59:40 -0800138 }
139 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800140
141 class PathProperties : public Properties {
142 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700143 explicit PathProperties(Node* node) : Properties(node) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800144 void syncProperties(const PathProperties& prop) {
145 mData = prop.mData;
146 onPropertyChanged();
147 }
148 void setData(const Data& data) {
149 // Updates the path data. Note that we don't generate a new Skia path right away
150 // because there are cases where the animation is changing the path data, but the view
151 // that hosts the VD has gone off screen, in which case we won't even draw. So we
152 // postpone the Skia path generation to the draw time.
153 if (data == mData) {
154 return;
155 }
156 mData = data;
157 onPropertyChanged();
John Reck1bcacfd2017-11-03 10:12:19 -0700158 }
159 const Data& getData() const { return mData; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800160
Doris Liu1d8e1942016-03-02 15:16:28 -0800161 private:
162 Data mData;
163 };
164
Doris Liu4bbc2932015-12-01 17:59:40 -0800165 Path(const Path& path);
166 Path(const char* path, size_t strLength);
167 Path() {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800168
Doris Liu4bbc2932015-12-01 17:59:40 -0800169 void dump() override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800170 virtual void syncProperties() override;
171 virtual void onPropertyChanged(Properties* prop) override {
172 if (prop == &mStagingProperties) {
173 mStagingPropertiesDirty = true;
174 if (mPropertyChangedListener) {
175 mPropertyChangedListener->onStagingPropertyChanged();
176 }
John Reck1bcacfd2017-11-03 10:12:19 -0700177 } else if (prop == &mProperties) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800178 mSkPathDirty = true;
179 if (mPropertyChangedListener) {
180 mPropertyChangedListener->onPropertyChanged();
181 }
182 }
183 }
184 PathProperties* mutateStagingProperties() { return &mStagingProperties; }
185 const PathProperties* stagingProperties() { return &mStagingProperties; }
186
187 // This should only be called from animations on RT
188 PathProperties* mutateProperties() { return &mProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800189
190protected:
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400191 virtual const SkPath& getUpdatedPath(bool useStagingData, SkPath* tempStagingPath);
Doris Liu1d8e1942016-03-02 15:16:28 -0800192
193 // Internal data, render thread only.
Doris Liu4bbc2932015-12-01 17:59:40 -0800194 bool mSkPathDirty = true;
Doris Liu1d8e1942016-03-02 15:16:28 -0800195 SkPath mSkPath;
196
197private:
198 PathProperties mProperties = PathProperties(this);
199 PathProperties mStagingProperties = PathProperties(this);
200 bool mStagingPropertiesDirty = true;
Doris Liu4bbc2932015-12-01 17:59:40 -0800201};
202
John Reck1bcacfd2017-11-03 10:12:19 -0700203class ANDROID_API FullPath : public Path {
Doris Liu4bbc2932015-12-01 17:59:40 -0800204public:
Doris Liu1d8e1942016-03-02 15:16:28 -0800205 class FullPathProperties : public Properties {
206 public:
207 struct PrimitiveFields {
208 float strokeWidth = 0;
209 SkColor strokeColor = SK_ColorTRANSPARENT;
210 float strokeAlpha = 1;
211 SkColor fillColor = SK_ColorTRANSPARENT;
212 float fillAlpha = 1;
213 float trimPathStart = 0;
214 float trimPathEnd = 1;
215 float trimPathOffset = 0;
216 int32_t strokeLineCap = SkPaint::Cap::kButt_Cap;
217 int32_t strokeLineJoin = SkPaint::Join::kMiter_Join;
218 float strokeMiterLimit = 4;
219 int fillType = 0; /* non-zero or kWinding_FillType in Skia */
220 };
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700221 explicit FullPathProperties(Node* mNode) : Properties(mNode), mTrimDirty(false) {}
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400222 ~FullPathProperties() {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800223 void syncProperties(const FullPathProperties& prop) {
224 mPrimitiveFields = prop.mPrimitiveFields;
225 mTrimDirty = true;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400226 fillGradient = prop.fillGradient;
227 strokeGradient = prop.strokeGradient;
Doris Liu1d8e1942016-03-02 15:16:28 -0800228 onPropertyChanged();
229 }
230 void setFillGradient(SkShader* gradient) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400231 if (fillGradient.get() != gradient) {
232 fillGradient = sk_ref_sp(gradient);
Doris Liu1d8e1942016-03-02 15:16:28 -0800233 onPropertyChanged();
234 }
235 }
236 void setStrokeGradient(SkShader* gradient) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400237 if (strokeGradient.get() != gradient) {
238 strokeGradient = sk_ref_sp(gradient);
Doris Liu1d8e1942016-03-02 15:16:28 -0800239 onPropertyChanged();
240 }
241 }
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400242 SkShader* getFillGradient() const { return fillGradient.get(); }
243 SkShader* getStrokeGradient() const { return strokeGradient.get(); }
John Reck1bcacfd2017-11-03 10:12:19 -0700244 float getStrokeWidth() const { return mPrimitiveFields.strokeWidth; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800245 void setStrokeWidth(float strokeWidth) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700246 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeWidth, strokeWidth);
Doris Liu1d8e1942016-03-02 15:16:28 -0800247 }
John Reck1bcacfd2017-11-03 10:12:19 -0700248 SkColor getStrokeColor() const { return mPrimitiveFields.strokeColor; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800249 void setStrokeColor(SkColor strokeColor) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700250 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeColor, strokeColor);
Doris Liu1d8e1942016-03-02 15:16:28 -0800251 }
John Reck1bcacfd2017-11-03 10:12:19 -0700252 float getStrokeAlpha() const { return mPrimitiveFields.strokeAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800253 void setStrokeAlpha(float strokeAlpha) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700254 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeAlpha, strokeAlpha);
Doris Liu1d8e1942016-03-02 15:16:28 -0800255 }
John Reck1bcacfd2017-11-03 10:12:19 -0700256 SkColor getFillColor() const { return mPrimitiveFields.fillColor; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800257 void setFillColor(SkColor fillColor) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700258 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(fillColor, fillColor);
Doris Liu1d8e1942016-03-02 15:16:28 -0800259 }
John Reck1bcacfd2017-11-03 10:12:19 -0700260 float getFillAlpha() const { return mPrimitiveFields.fillAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800261 void setFillAlpha(float fillAlpha) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700262 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(fillAlpha, fillAlpha);
Doris Liu1d8e1942016-03-02 15:16:28 -0800263 }
John Reck1bcacfd2017-11-03 10:12:19 -0700264 float getTrimPathStart() const { return mPrimitiveFields.trimPathStart; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800265 void setTrimPathStart(float trimPathStart) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700266 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathStart, trimPathStart, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800267 }
John Reck1bcacfd2017-11-03 10:12:19 -0700268 float getTrimPathEnd() const { return mPrimitiveFields.trimPathEnd; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800269 void setTrimPathEnd(float trimPathEnd) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700270 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathEnd, trimPathEnd, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800271 }
John Reck1bcacfd2017-11-03 10:12:19 -0700272 float getTrimPathOffset() const { return mPrimitiveFields.trimPathOffset; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800273 void setTrimPathOffset(float trimPathOffset) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700274 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathOffset, trimPathOffset, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800275 }
Doris Liu766431a2016-02-04 22:17:11 +0000276
John Reck1bcacfd2017-11-03 10:12:19 -0700277 float getStrokeMiterLimit() const { return mPrimitiveFields.strokeMiterLimit; }
278 float getStrokeLineCap() const { return mPrimitiveFields.strokeLineCap; }
279 float getStrokeLineJoin() const { return mPrimitiveFields.strokeLineJoin; }
280 float getFillType() const { return mPrimitiveFields.fillType; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800281 bool copyProperties(int8_t* outProperties, int length) const;
282 void updateProperties(float strokeWidth, SkColor strokeColor, float strokeAlpha,
John Reck1bcacfd2017-11-03 10:12:19 -0700283 SkColor fillColor, float fillAlpha, float trimPathStart,
284 float trimPathEnd, float trimPathOffset, float strokeMiterLimit,
285 int strokeLineCap, int strokeLineJoin, int fillType) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800286 mPrimitiveFields.strokeWidth = strokeWidth;
287 mPrimitiveFields.strokeColor = strokeColor;
288 mPrimitiveFields.strokeAlpha = strokeAlpha;
289 mPrimitiveFields.fillColor = fillColor;
290 mPrimitiveFields.fillAlpha = fillAlpha;
291 mPrimitiveFields.trimPathStart = trimPathStart;
292 mPrimitiveFields.trimPathEnd = trimPathEnd;
293 mPrimitiveFields.trimPathOffset = trimPathOffset;
294 mPrimitiveFields.strokeMiterLimit = strokeMiterLimit;
295 mPrimitiveFields.strokeLineCap = strokeLineCap;
296 mPrimitiveFields.strokeLineJoin = strokeLineJoin;
297 mPrimitiveFields.fillType = fillType;
298 mTrimDirty = true;
299 onPropertyChanged();
300 }
301 // Set property values during animation
302 void setColorPropertyValue(int propertyId, int32_t value);
303 void setPropertyValue(int propertyId, float value);
304 bool mTrimDirty;
John Reck1bcacfd2017-11-03 10:12:19 -0700305
Doris Liu1d8e1942016-03-02 15:16:28 -0800306 private:
307 enum class Property {
308 strokeWidth = 0,
309 strokeColor,
310 strokeAlpha,
311 fillColor,
312 fillAlpha,
313 trimPathStart,
314 trimPathEnd,
315 trimPathOffset,
316 strokeLineCap,
317 strokeLineJoin,
318 strokeMiterLimit,
319 fillType,
320 count,
321 };
322 PrimitiveFields mPrimitiveFields;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400323 sk_sp<SkShader> fillGradient;
324 sk_sp<SkShader> strokeGradient;
Doris Liu1d8e1942016-03-02 15:16:28 -0800325 };
Doris Liu766431a2016-02-04 22:17:11 +0000326
Doris Liu1d8e1942016-03-02 15:16:28 -0800327 // Called from UI thread
John Reck1bcacfd2017-11-03 10:12:19 -0700328 FullPath(const FullPath& path); // for cloning
Doris Liu4bbc2932015-12-01 17:59:40 -0800329 FullPath(const char* path, size_t strLength) : Path(path, strLength) {}
330 FullPath() : Path() {}
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400331 void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800332 void dump() override;
333 FullPathProperties* mutateStagingProperties() { return &mStagingProperties; }
334 const FullPathProperties* stagingProperties() { return &mStagingProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800335
Doris Liu1d8e1942016-03-02 15:16:28 -0800336 // This should only be called from animations on RT
337 FullPathProperties* mutateProperties() { return &mProperties; }
Teng-Hui Zhudbee9bb2015-12-15 11:01:27 -0800338
Doris Liu1d8e1942016-03-02 15:16:28 -0800339 virtual void syncProperties() override;
340 virtual void onPropertyChanged(Properties* properties) override {
341 Path::onPropertyChanged(properties);
342 if (properties == &mStagingProperties) {
343 mStagingPropertiesDirty = true;
344 if (mPropertyChangedListener) {
345 mPropertyChangedListener->onStagingPropertyChanged();
346 }
347 } else if (properties == &mProperties) {
348 if (mPropertyChangedListener) {
349 mPropertyChangedListener->onPropertyChanged();
350 }
351 }
Doris Liu4bbc2932015-12-01 17:59:40 -0800352 }
Doris Liu6b184d72017-12-04 16:31:07 -0800353 virtual void setAntiAlias(bool aa) { mAntiAlias = aa; }
John Reck08ee8152018-09-20 16:27:46 -0700354 void forEachFillColor(const std::function<void(SkColor)>& func) const override {
355 func(mStagingProperties.getFillColor());
356 }
Teng-Hui Zhudbee9bb2015-12-15 11:01:27 -0800357
Doris Liu4bbc2932015-12-01 17:59:40 -0800358protected:
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400359 const SkPath& getUpdatedPath(bool useStagingData, SkPath* tempStagingPath) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800360
John Reck1bcacfd2017-11-03 10:12:19 -0700361private:
Doris Liu1d8e1942016-03-02 15:16:28 -0800362 FullPathProperties mProperties = FullPathProperties(this);
363 FullPathProperties mStagingProperties = FullPathProperties(this);
364 bool mStagingPropertiesDirty = true;
365
366 // Intermediate data for drawing, render thread only
Doris Liu5a11e8d2016-02-04 20:04:10 +0000367 SkPath mTrimmedSkPath;
Doris Liu6b184d72017-12-04 16:31:07 -0800368 // Default to use AntiAlias
369 bool mAntiAlias = true;
Doris Liu4bbc2932015-12-01 17:59:40 -0800370};
371
John Reck1bcacfd2017-11-03 10:12:19 -0700372class ANDROID_API ClipPath : public Path {
Doris Liu4bbc2932015-12-01 17:59:40 -0800373public:
374 ClipPath(const ClipPath& path) : Path(path) {}
375 ClipPath(const char* path, size_t strLength) : Path(path, strLength) {}
376 ClipPath() : Path() {}
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400377 void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu6b184d72017-12-04 16:31:07 -0800378 virtual void setAntiAlias(bool aa) {}
Doris Liu4bbc2932015-12-01 17:59:40 -0800379};
380
John Reck1bcacfd2017-11-03 10:12:19 -0700381class ANDROID_API Group : public Node {
Doris Liu4bbc2932015-12-01 17:59:40 -0800382public:
Doris Liu1d8e1942016-03-02 15:16:28 -0800383 class GroupProperties : public Properties {
384 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700385 explicit GroupProperties(Node* mNode) : Properties(mNode) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800386 struct PrimitiveFields {
387 float rotate = 0;
388 float pivotX = 0;
389 float pivotY = 0;
390 float scaleX = 1;
391 float scaleY = 1;
392 float translateX = 0;
393 float translateY = 0;
394 } mPrimitiveFields;
395 void syncProperties(const GroupProperties& prop) {
396 mPrimitiveFields = prop.mPrimitiveFields;
397 onPropertyChanged();
398 }
John Reck1bcacfd2017-11-03 10:12:19 -0700399 float getRotation() const { return mPrimitiveFields.rotate; }
400 void setRotation(float rotation) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(rotate, rotation); }
401 float getPivotX() const { return mPrimitiveFields.pivotX; }
402 void setPivotX(float pivotX) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(pivotX, pivotX); }
403 float getPivotY() const { return mPrimitiveFields.pivotY; }
404 void setPivotY(float pivotY) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(pivotY, pivotY); }
405 float getScaleX() const { return mPrimitiveFields.scaleX; }
406 void setScaleX(float scaleX) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(scaleX, scaleX); }
407 float getScaleY() const { return mPrimitiveFields.scaleY; }
408 void setScaleY(float scaleY) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(scaleY, scaleY); }
409 float getTranslateX() const { return mPrimitiveFields.translateX; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800410 void setTranslateX(float translateX) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700411 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(translateX, translateX);
Doris Liu1d8e1942016-03-02 15:16:28 -0800412 }
John Reck1bcacfd2017-11-03 10:12:19 -0700413 float getTranslateY() const { return mPrimitiveFields.translateY; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800414 void setTranslateY(float translateY) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700415 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(translateY, translateY);
Doris Liu1d8e1942016-03-02 15:16:28 -0800416 }
John Reck1bcacfd2017-11-03 10:12:19 -0700417 void updateProperties(float rotate, float pivotX, float pivotY, float scaleX, float scaleY,
418 float translateX, float translateY) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800419 mPrimitiveFields.rotate = rotate;
420 mPrimitiveFields.pivotX = pivotX;
421 mPrimitiveFields.pivotY = pivotY;
422 mPrimitiveFields.scaleX = scaleX;
423 mPrimitiveFields.scaleY = scaleY;
424 mPrimitiveFields.translateX = translateX;
425 mPrimitiveFields.translateY = translateY;
426 onPropertyChanged();
427 }
428 void setPropertyValue(int propertyId, float value);
429 float getPropertyValue(int propertyId) const;
430 bool copyProperties(float* outProperties, int length) const;
431 static bool isValidProperty(int propertyId);
John Reck1bcacfd2017-11-03 10:12:19 -0700432
Doris Liu1d8e1942016-03-02 15:16:28 -0800433 private:
434 enum class Property {
435 rotate = 0,
436 pivotX,
437 pivotY,
438 scaleX,
439 scaleY,
440 translateX,
441 translateY,
442 // Count of the properties, must be at the end.
443 count,
444 };
Doris Liu766431a2016-02-04 22:17:11 +0000445 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800446
Doris Liu4bbc2932015-12-01 17:59:40 -0800447 Group(const Group& group);
448 Group() {}
Doris Liu4bbc2932015-12-01 17:59:40 -0800449 void addChild(Node* child);
Doris Liu1d8e1942016-03-02 15:16:28 -0800450 virtual void setPropertyChangedListener(PropertyChangedListener* listener) override {
451 Node::setPropertyChangedListener(listener);
452 for (auto& child : mChildren) {
John Reck1bcacfd2017-11-03 10:12:19 -0700453 child->setPropertyChangedListener(listener);
Doris Liu1d8e1942016-03-02 15:16:28 -0800454 }
455 }
456 virtual void syncProperties() override;
457 GroupProperties* mutateStagingProperties() { return &mStagingProperties; }
458 const GroupProperties* stagingProperties() { return &mStagingProperties; }
459
460 // This should only be called from animations on RT
461 GroupProperties* mutateProperties() { return &mProperties; }
462
463 // Methods below could be called from either UI thread or Render Thread.
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400464 virtual void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800465 void getLocalMatrix(SkMatrix* outMatrix, const GroupProperties& properties);
Doris Liu4bbc2932015-12-01 17:59:40 -0800466 void dump() override;
Doris Liu766431a2016-02-04 22:17:11 +0000467 static bool isValidProperty(int propertyId);
Doris Liu4bbc2932015-12-01 17:59:40 -0800468
Doris Liu1d8e1942016-03-02 15:16:28 -0800469 virtual void onPropertyChanged(Properties* properties) override {
470 if (properties == &mStagingProperties) {
471 mStagingPropertiesDirty = true;
472 if (mPropertyChangedListener) {
473 mPropertyChangedListener->onStagingPropertyChanged();
474 }
475 } else {
476 if (mPropertyChangedListener) {
477 mPropertyChangedListener->onPropertyChanged();
478 }
479 }
480 }
481
Doris Liu6b184d72017-12-04 16:31:07 -0800482 virtual void setAntiAlias(bool aa) {
483 for (auto& child : mChildren) {
484 child->setAntiAlias(aa);
485 }
486 }
487
John Reck08ee8152018-09-20 16:27:46 -0700488 void forEachFillColor(const std::function<void(SkColor)>& func) const override {
489 for (auto& child : mChildren) {
490 child->forEachFillColor(func);
491 }
492 }
493
Doris Liu4bbc2932015-12-01 17:59:40 -0800494private:
Doris Liu1d8e1942016-03-02 15:16:28 -0800495 GroupProperties mProperties = GroupProperties(this);
496 GroupProperties mStagingProperties = GroupProperties(this);
497 bool mStagingPropertiesDirty = true;
John Reck1bcacfd2017-11-03 10:12:19 -0700498 std::vector<std::unique_ptr<Node> > mChildren;
Doris Liu4bbc2932015-12-01 17:59:40 -0800499};
500
Doris Liu766431a2016-02-04 22:17:11 +0000501class ANDROID_API Tree : public VirtualLightRefBase {
Doris Liu4bbc2932015-12-01 17:59:40 -0800502public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700503 explicit Tree(Group* rootNode) : mRootNode(rootNode) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800504 mRootNode->setPropertyChangedListener(&mPropertyChangedListener);
505 }
Doris Liu335d7d12016-05-26 15:19:15 -0700506
507 // Copy properties from the tree and use the give node as the root node
508 Tree(const Tree* copy, Group* rootNode) : Tree(rootNode) {
John Reck08ee8152018-09-20 16:27:46 -0700509 mStagingProperties.syncAnimatableProperties(copy->stagingProperties());
510 mStagingProperties.syncNonAnimatableProperties(copy->stagingProperties());
Doris Liu335d7d12016-05-26 15:19:15 -0700511 }
Doris Liuf8d131c2016-04-29 18:41:29 -0700512 // Draws the VD onto a bitmap cache, then the bitmap cache will be rendered onto the input
513 // canvas. Returns the number of pixels needed for the bitmap cache.
John Reck1bcacfd2017-11-03 10:12:19 -0700514 int draw(Canvas* outCanvas, SkColorFilter* colorFilter, const SkRect& bounds,
515 bool needsMirroring, bool canReuseCache);
Doris Liu1d8e1942016-03-02 15:16:28 -0800516 void drawStaging(Canvas* canvas);
Doris Liu4bbc2932015-12-01 17:59:40 -0800517
sergeyvfc9999502016-10-17 13:07:38 -0700518 Bitmap& getBitmapUpdateIfDirty();
John Reck1bcacfd2017-11-03 10:12:19 -0700519 void setAllowCaching(bool allowCaching) { mAllowCaching = allowCaching; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800520 void syncProperties() {
521 if (mStagingProperties.mNonAnimatablePropertiesDirty) {
John Reck1bcacfd2017-11-03 10:12:19 -0700522 mCache.dirty |= (mProperties.mNonAnimatableProperties.viewportWidth !=
523 mStagingProperties.mNonAnimatableProperties.viewportWidth) ||
524 (mProperties.mNonAnimatableProperties.viewportHeight !=
525 mStagingProperties.mNonAnimatableProperties.viewportHeight) ||
526 (mProperties.mNonAnimatableProperties.scaledWidth !=
527 mStagingProperties.mNonAnimatableProperties.scaledWidth) ||
528 (mProperties.mNonAnimatableProperties.scaledHeight !=
529 mStagingProperties.mNonAnimatableProperties.scaledHeight) ||
530 (mProperties.mNonAnimatableProperties.bounds !=
531 mStagingProperties.mNonAnimatableProperties.bounds);
Doris Liu1d8e1942016-03-02 15:16:28 -0800532 mProperties.syncNonAnimatableProperties(mStagingProperties);
533 mStagingProperties.mNonAnimatablePropertiesDirty = false;
534 }
535
536 if (mStagingProperties.mAnimatablePropertiesDirty) {
537 mProperties.syncAnimatableProperties(mStagingProperties);
538 } else {
539 mStagingProperties.syncAnimatableProperties(mProperties);
540 }
541 mStagingProperties.mAnimatablePropertiesDirty = false;
542 mRootNode->syncProperties();
Doris Liu4bbc2932015-12-01 17:59:40 -0800543 }
544
Doris Liu1d8e1942016-03-02 15:16:28 -0800545 class TreeProperties {
546 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700547 explicit TreeProperties(Tree* tree) : mTree(tree) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800548 // Properties that can only be modified by UI thread, therefore sync should
549 // only go from UI to RT
550 struct NonAnimatableProperties {
551 float viewportWidth = 0;
552 float viewportHeight = 0;
553 SkRect bounds;
554 int scaledWidth = 0;
555 int scaledHeight = 0;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400556 sk_sp<SkColorFilter> colorFilter;
Doris Liu1d8e1942016-03-02 15:16:28 -0800557 } mNonAnimatableProperties;
558 bool mNonAnimatablePropertiesDirty = true;
559
560 float mRootAlpha = 1.0f;
561 bool mAnimatablePropertiesDirty = true;
562
563 void syncNonAnimatableProperties(const TreeProperties& prop) {
564 // Copy over the data that can only be changed in UI thread
565 if (mNonAnimatableProperties.colorFilter != prop.mNonAnimatableProperties.colorFilter) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400566 mNonAnimatableProperties.colorFilter = prop.mNonAnimatableProperties.colorFilter;
Doris Liu1d8e1942016-03-02 15:16:28 -0800567 }
568 mNonAnimatableProperties = prop.mNonAnimatableProperties;
569 }
570
571 void setViewportSize(float width, float height) {
John Reck1bcacfd2017-11-03 10:12:19 -0700572 if (mNonAnimatableProperties.viewportWidth != width ||
573 mNonAnimatableProperties.viewportHeight != height) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800574 mNonAnimatablePropertiesDirty = true;
575 mNonAnimatableProperties.viewportWidth = width;
576 mNonAnimatableProperties.viewportHeight = height;
577 mTree->onPropertyChanged(this);
578 }
579 }
580 void setBounds(const SkRect& bounds) {
581 if (mNonAnimatableProperties.bounds != bounds) {
582 mNonAnimatableProperties.bounds = bounds;
583 mNonAnimatablePropertiesDirty = true;
584 mTree->onPropertyChanged(this);
585 }
586 }
587
588 void setScaledSize(int width, int height) {
Teng-Hui Zhu037fc182016-11-16 10:29:39 -0800589 // If the requested size is bigger than what the bitmap was, then
590 // we increase the bitmap size to match. The width and height
591 // are bound by MAX_CACHED_BITMAP_SIZE.
John Reck1bcacfd2017-11-03 10:12:19 -0700592 if (mNonAnimatableProperties.scaledWidth < width ||
593 mNonAnimatableProperties.scaledHeight < height) {
594 mNonAnimatableProperties.scaledWidth =
595 std::max(width, mNonAnimatableProperties.scaledWidth);
596 mNonAnimatableProperties.scaledHeight =
597 std::max(height, mNonAnimatableProperties.scaledHeight);
Doris Liu1d8e1942016-03-02 15:16:28 -0800598 mNonAnimatablePropertiesDirty = true;
599 mTree->onPropertyChanged(this);
600 }
601 }
602 void setColorFilter(SkColorFilter* filter) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400603 if (mNonAnimatableProperties.colorFilter.get() != filter) {
604 mNonAnimatableProperties.colorFilter = sk_ref_sp(filter);
Doris Liu1d8e1942016-03-02 15:16:28 -0800605 mNonAnimatablePropertiesDirty = true;
606 mTree->onPropertyChanged(this);
607 }
608 }
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400609 SkColorFilter* getColorFilter() const { return mNonAnimatableProperties.colorFilter.get(); }
Doris Liu1d8e1942016-03-02 15:16:28 -0800610
John Reck1bcacfd2017-11-03 10:12:19 -0700611 float getViewportWidth() const { return mNonAnimatableProperties.viewportWidth; }
612 float getViewportHeight() const { return mNonAnimatableProperties.viewportHeight; }
613 float getScaledWidth() const { return mNonAnimatableProperties.scaledWidth; }
614 float getScaledHeight() const { return mNonAnimatableProperties.scaledHeight; }
615 void syncAnimatableProperties(const TreeProperties& prop) { mRootAlpha = prop.mRootAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800616 bool setRootAlpha(float rootAlpha) {
617 if (rootAlpha != mRootAlpha) {
618 mAnimatablePropertiesDirty = true;
619 mRootAlpha = rootAlpha;
620 mTree->onPropertyChanged(this);
621 return true;
622 }
623 return false;
624 }
John Reck1bcacfd2017-11-03 10:12:19 -0700625 float getRootAlpha() const { return mRootAlpha; }
626 const SkRect& getBounds() const { return mNonAnimatableProperties.bounds; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800627 Tree* mTree;
628 };
629 void onPropertyChanged(TreeProperties* prop);
630 TreeProperties* mutateStagingProperties() { return &mStagingProperties; }
John Reck08ee8152018-09-20 16:27:46 -0700631 const TreeProperties& stagingProperties() const { return mStagingProperties; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800632
633 // This should only be called from animations on RT
634 TreeProperties* mutateProperties() { return &mProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800635
Stan Iliev23c38a92017-03-23 00:12:50 -0400636 // called from RT only
637 const TreeProperties& properties() const { return mProperties; }
638
Doris Liu67ce99b2016-05-17 16:50:31 -0700639 // This should always be called from RT.
Doris Liu7c7052d2016-07-25 17:19:24 -0700640 void markDirty() { mCache.dirty = true; }
Doris Liu67ce99b2016-05-17 16:50:31 -0700641 bool isDirty() const { return mCache.dirty; }
642 bool getPropertyChangeWillBeConsumed() const { return mWillBeConsumed; }
643 void setPropertyChangeWillBeConsumed(bool willBeConsumed) { mWillBeConsumed = willBeConsumed; }
644
Stan Iliev3310fb12017-03-23 16:56:51 -0400645 /**
646 * Draws VD cache into a canvas. This should always be called from RT and it works with Skia
647 * pipelines only.
648 */
John Reck08ee8152018-09-20 16:27:46 -0700649 void draw(SkCanvas* canvas, const SkRect& bounds, const SkPaint& paint);
650
651 void getPaintFor(SkPaint* outPaint, const TreeProperties &props) const;
652 BitmapPalette computePalette();
Stan Iliev23c38a92017-03-23 00:12:50 -0400653
Stan Iliev3310fb12017-03-23 16:56:51 -0400654 /**
655 * Draws VD into a GPU backed surface.
656 * This should always be called from RT and it works with Skia pipeline only.
657 */
658 void updateCache(sp<skiapipeline::VectorDrawableAtlas>& atlas, GrContext* context);
Stan Iliev23c38a92017-03-23 00:12:50 -0400659
Doris Liu6b184d72017-12-04 16:31:07 -0800660 void setAntiAlias(bool aa) { mRootNode->setAntiAlias(aa); }
661
Doris Liu4bbc2932015-12-01 17:59:40 -0800662private:
Stan Iliev3310fb12017-03-23 16:56:51 -0400663 class Cache {
664 public:
John Reck1bcacfd2017-11-03 10:12:19 -0700665 sk_sp<Bitmap> bitmap; // used by HWUI pipeline and software
666 // TODO: use surface instead of bitmap when drawing in software canvas
sergeyvfc9999502016-10-17 13:07:38 -0700667 bool dirty = true;
Stan Iliev3310fb12017-03-23 16:56:51 -0400668
669 // the rest of the code in Cache is used by Skia pipelines only
670
671 ~Cache() { clear(); }
672
673 /**
674 * Stores a weak pointer to the atlas and a key.
675 */
676 void setAtlas(sp<skiapipeline::VectorDrawableAtlas> atlas,
John Reck1bcacfd2017-11-03 10:12:19 -0700677 skiapipeline::AtlasKey newAtlasKey);
Stan Iliev3310fb12017-03-23 16:56:51 -0400678
679 /**
680 * Gets a surface and bounds from the atlas.
681 *
682 * @return nullptr if the altas has been deleted.
683 */
684 sk_sp<SkSurface> getSurface(SkRect* bounds);
685
686 /**
687 * Releases atlas key from the atlas, which makes it available for reuse.
688 */
689 void clear();
John Reck1bcacfd2017-11-03 10:12:19 -0700690
Stan Iliev3310fb12017-03-23 16:56:51 -0400691 private:
692 wp<skiapipeline::VectorDrawableAtlas> mAtlas;
693 skiapipeline::AtlasKey mAtlasKey = INVALID_ATLAS_KEY;
sergeyvfc9999502016-10-17 13:07:38 -0700694 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800695
sergeyvfc9999502016-10-17 13:07:38 -0700696 bool allocateBitmapIfNeeded(Cache& cache, int width, int height);
697 bool canReuseBitmap(Bitmap*, int width, int height);
698 void updateBitmapCache(Bitmap& outCache, bool useStagingData);
Stan Iliev3310fb12017-03-23 16:56:51 -0400699
Doris Liu4bbc2932015-12-01 17:59:40 -0800700 // Cap the bitmap size, such that it won't hurt the performance too much
701 // and it won't crash due to a very large scale.
702 // The drawable will look blurry above this size.
703 const static int MAX_CACHED_BITMAP_SIZE;
704
Doris Liu4bbc2932015-12-01 17:59:40 -0800705 bool mAllowCaching = true;
Doris Liuef062eb2016-02-04 16:16:27 -0800706 std::unique_ptr<Group> mRootNode;
Doris Liu4bbc2932015-12-01 17:59:40 -0800707
Doris Liu1d8e1942016-03-02 15:16:28 -0800708 TreeProperties mProperties = TreeProperties(this);
709 TreeProperties mStagingProperties = TreeProperties(this);
710
Doris Liu1d8e1942016-03-02 15:16:28 -0800711 Cache mStagingCache;
712 Cache mCache;
713
John Reck1bcacfd2017-11-03 10:12:19 -0700714 PropertyChangedListener mPropertyChangedListener =
715 PropertyChangedListener(&mCache.dirty, &mStagingCache.dirty);
Doris Liu67ce99b2016-05-17 16:50:31 -0700716
717 mutable bool mWillBeConsumed = false;
Doris Liu4bbc2932015-12-01 17:59:40 -0800718};
719
John Reck1bcacfd2017-11-03 10:12:19 -0700720} // namespace VectorDrawable
Doris Liu4bbc2932015-12-01 17:59:40 -0800721
722typedef VectorDrawable::Path::Data PathData;
John Reckd9d7f122018-05-03 14:40:56 -0700723typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
724
John Reck1bcacfd2017-11-03 10:12:19 -0700725} // namespace uirenderer
726} // namespace android
Doris Liu4bbc2932015-12-01 17:59:40 -0800727
John Reck1bcacfd2017-11-03 10:12:19 -0700728#endif // ANDROID_HWUI_VPATH_H