blob: af0ae05a74b35929865630430137944276e23811 [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
Doris Liu4bbc2932015-12-01 17:59:40 -0800123protected:
124 std::string mName;
Doris Liu1d8e1942016-03-02 15:16:28 -0800125 PropertyChangedListener* mPropertyChangedListener = nullptr;
Doris Liu4bbc2932015-12-01 17:59:40 -0800126};
127
128class ANDROID_API Path : public Node {
129public:
130 struct ANDROID_API Data {
131 std::vector<char> verbs;
132 std::vector<size_t> verbSizes;
133 std::vector<float> points;
134 bool operator==(const Data& data) const {
John Reck1bcacfd2017-11-03 10:12:19 -0700135 return verbs == data.verbs && verbSizes == data.verbSizes && points == data.points;
Doris Liu4bbc2932015-12-01 17:59:40 -0800136 }
137 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800138
139 class PathProperties : public Properties {
140 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700141 explicit PathProperties(Node* node) : Properties(node) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800142 void syncProperties(const PathProperties& prop) {
143 mData = prop.mData;
144 onPropertyChanged();
145 }
146 void setData(const Data& data) {
147 // Updates the path data. Note that we don't generate a new Skia path right away
148 // because there are cases where the animation is changing the path data, but the view
149 // that hosts the VD has gone off screen, in which case we won't even draw. So we
150 // postpone the Skia path generation to the draw time.
151 if (data == mData) {
152 return;
153 }
154 mData = data;
155 onPropertyChanged();
John Reck1bcacfd2017-11-03 10:12:19 -0700156 }
157 const Data& getData() const { return mData; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800158
Doris Liu1d8e1942016-03-02 15:16:28 -0800159 private:
160 Data mData;
161 };
162
Doris Liu4bbc2932015-12-01 17:59:40 -0800163 Path(const Path& path);
164 Path(const char* path, size_t strLength);
165 Path() {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800166
Doris Liu4bbc2932015-12-01 17:59:40 -0800167 void dump() override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800168 virtual void syncProperties() override;
169 virtual void onPropertyChanged(Properties* prop) override {
170 if (prop == &mStagingProperties) {
171 mStagingPropertiesDirty = true;
172 if (mPropertyChangedListener) {
173 mPropertyChangedListener->onStagingPropertyChanged();
174 }
John Reck1bcacfd2017-11-03 10:12:19 -0700175 } else if (prop == &mProperties) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800176 mSkPathDirty = true;
177 if (mPropertyChangedListener) {
178 mPropertyChangedListener->onPropertyChanged();
179 }
180 }
181 }
182 PathProperties* mutateStagingProperties() { return &mStagingProperties; }
183 const PathProperties* stagingProperties() { return &mStagingProperties; }
184
185 // This should only be called from animations on RT
186 PathProperties* mutateProperties() { return &mProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800187
188protected:
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400189 virtual const SkPath& getUpdatedPath(bool useStagingData, SkPath* tempStagingPath);
Doris Liu1d8e1942016-03-02 15:16:28 -0800190
191 // Internal data, render thread only.
Doris Liu4bbc2932015-12-01 17:59:40 -0800192 bool mSkPathDirty = true;
Doris Liu1d8e1942016-03-02 15:16:28 -0800193 SkPath mSkPath;
194
195private:
196 PathProperties mProperties = PathProperties(this);
197 PathProperties mStagingProperties = PathProperties(this);
198 bool mStagingPropertiesDirty = true;
Doris Liu4bbc2932015-12-01 17:59:40 -0800199};
200
John Reck1bcacfd2017-11-03 10:12:19 -0700201class ANDROID_API FullPath : public Path {
Doris Liu4bbc2932015-12-01 17:59:40 -0800202public:
Doris Liu1d8e1942016-03-02 15:16:28 -0800203 class FullPathProperties : public Properties {
204 public:
205 struct PrimitiveFields {
206 float strokeWidth = 0;
207 SkColor strokeColor = SK_ColorTRANSPARENT;
208 float strokeAlpha = 1;
209 SkColor fillColor = SK_ColorTRANSPARENT;
210 float fillAlpha = 1;
211 float trimPathStart = 0;
212 float trimPathEnd = 1;
213 float trimPathOffset = 0;
214 int32_t strokeLineCap = SkPaint::Cap::kButt_Cap;
215 int32_t strokeLineJoin = SkPaint::Join::kMiter_Join;
216 float strokeMiterLimit = 4;
217 int fillType = 0; /* non-zero or kWinding_FillType in Skia */
218 };
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700219 explicit FullPathProperties(Node* mNode) : Properties(mNode), mTrimDirty(false) {}
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400220 ~FullPathProperties() {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800221 void syncProperties(const FullPathProperties& prop) {
222 mPrimitiveFields = prop.mPrimitiveFields;
223 mTrimDirty = true;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400224 fillGradient = prop.fillGradient;
225 strokeGradient = prop.strokeGradient;
Doris Liu1d8e1942016-03-02 15:16:28 -0800226 onPropertyChanged();
227 }
228 void setFillGradient(SkShader* gradient) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400229 if (fillGradient.get() != gradient) {
230 fillGradient = sk_ref_sp(gradient);
Doris Liu1d8e1942016-03-02 15:16:28 -0800231 onPropertyChanged();
232 }
233 }
234 void setStrokeGradient(SkShader* gradient) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400235 if (strokeGradient.get() != gradient) {
236 strokeGradient = sk_ref_sp(gradient);
Doris Liu1d8e1942016-03-02 15:16:28 -0800237 onPropertyChanged();
238 }
239 }
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400240 SkShader* getFillGradient() const { return fillGradient.get(); }
241 SkShader* getStrokeGradient() const { return strokeGradient.get(); }
John Reck1bcacfd2017-11-03 10:12:19 -0700242 float getStrokeWidth() const { return mPrimitiveFields.strokeWidth; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800243 void setStrokeWidth(float strokeWidth) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700244 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeWidth, strokeWidth);
Doris Liu1d8e1942016-03-02 15:16:28 -0800245 }
John Reck1bcacfd2017-11-03 10:12:19 -0700246 SkColor getStrokeColor() const { return mPrimitiveFields.strokeColor; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800247 void setStrokeColor(SkColor strokeColor) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700248 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeColor, strokeColor);
Doris Liu1d8e1942016-03-02 15:16:28 -0800249 }
John Reck1bcacfd2017-11-03 10:12:19 -0700250 float getStrokeAlpha() const { return mPrimitiveFields.strokeAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800251 void setStrokeAlpha(float strokeAlpha) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700252 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeAlpha, strokeAlpha);
Doris Liu1d8e1942016-03-02 15:16:28 -0800253 }
John Reck1bcacfd2017-11-03 10:12:19 -0700254 SkColor getFillColor() const { return mPrimitiveFields.fillColor; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800255 void setFillColor(SkColor fillColor) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700256 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(fillColor, fillColor);
Doris Liu1d8e1942016-03-02 15:16:28 -0800257 }
John Reck1bcacfd2017-11-03 10:12:19 -0700258 float getFillAlpha() const { return mPrimitiveFields.fillAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800259 void setFillAlpha(float fillAlpha) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700260 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(fillAlpha, fillAlpha);
Doris Liu1d8e1942016-03-02 15:16:28 -0800261 }
John Reck1bcacfd2017-11-03 10:12:19 -0700262 float getTrimPathStart() const { return mPrimitiveFields.trimPathStart; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800263 void setTrimPathStart(float trimPathStart) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700264 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathStart, trimPathStart, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800265 }
John Reck1bcacfd2017-11-03 10:12:19 -0700266 float getTrimPathEnd() const { return mPrimitiveFields.trimPathEnd; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800267 void setTrimPathEnd(float trimPathEnd) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700268 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathEnd, trimPathEnd, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800269 }
John Reck1bcacfd2017-11-03 10:12:19 -0700270 float getTrimPathOffset() const { return mPrimitiveFields.trimPathOffset; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800271 void setTrimPathOffset(float trimPathOffset) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700272 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathOffset, trimPathOffset, mTrimDirty);
Doris Liu1d8e1942016-03-02 15:16:28 -0800273 }
Doris Liu766431a2016-02-04 22:17:11 +0000274
John Reck1bcacfd2017-11-03 10:12:19 -0700275 float getStrokeMiterLimit() const { return mPrimitiveFields.strokeMiterLimit; }
276 float getStrokeLineCap() const { return mPrimitiveFields.strokeLineCap; }
277 float getStrokeLineJoin() const { return mPrimitiveFields.strokeLineJoin; }
278 float getFillType() const { return mPrimitiveFields.fillType; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800279 bool copyProperties(int8_t* outProperties, int length) const;
280 void updateProperties(float strokeWidth, SkColor strokeColor, float strokeAlpha,
John Reck1bcacfd2017-11-03 10:12:19 -0700281 SkColor fillColor, float fillAlpha, float trimPathStart,
282 float trimPathEnd, float trimPathOffset, float strokeMiterLimit,
283 int strokeLineCap, int strokeLineJoin, int fillType) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800284 mPrimitiveFields.strokeWidth = strokeWidth;
285 mPrimitiveFields.strokeColor = strokeColor;
286 mPrimitiveFields.strokeAlpha = strokeAlpha;
287 mPrimitiveFields.fillColor = fillColor;
288 mPrimitiveFields.fillAlpha = fillAlpha;
289 mPrimitiveFields.trimPathStart = trimPathStart;
290 mPrimitiveFields.trimPathEnd = trimPathEnd;
291 mPrimitiveFields.trimPathOffset = trimPathOffset;
292 mPrimitiveFields.strokeMiterLimit = strokeMiterLimit;
293 mPrimitiveFields.strokeLineCap = strokeLineCap;
294 mPrimitiveFields.strokeLineJoin = strokeLineJoin;
295 mPrimitiveFields.fillType = fillType;
296 mTrimDirty = true;
297 onPropertyChanged();
298 }
299 // Set property values during animation
300 void setColorPropertyValue(int propertyId, int32_t value);
301 void setPropertyValue(int propertyId, float value);
302 bool mTrimDirty;
John Reck1bcacfd2017-11-03 10:12:19 -0700303
Doris Liu1d8e1942016-03-02 15:16:28 -0800304 private:
305 enum class Property {
306 strokeWidth = 0,
307 strokeColor,
308 strokeAlpha,
309 fillColor,
310 fillAlpha,
311 trimPathStart,
312 trimPathEnd,
313 trimPathOffset,
314 strokeLineCap,
315 strokeLineJoin,
316 strokeMiterLimit,
317 fillType,
318 count,
319 };
320 PrimitiveFields mPrimitiveFields;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400321 sk_sp<SkShader> fillGradient;
322 sk_sp<SkShader> strokeGradient;
Doris Liu1d8e1942016-03-02 15:16:28 -0800323 };
Doris Liu766431a2016-02-04 22:17:11 +0000324
Doris Liu1d8e1942016-03-02 15:16:28 -0800325 // Called from UI thread
John Reck1bcacfd2017-11-03 10:12:19 -0700326 FullPath(const FullPath& path); // for cloning
Doris Liu4bbc2932015-12-01 17:59:40 -0800327 FullPath(const char* path, size_t strLength) : Path(path, strLength) {}
328 FullPath() : Path() {}
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400329 void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800330 void dump() override;
331 FullPathProperties* mutateStagingProperties() { return &mStagingProperties; }
332 const FullPathProperties* stagingProperties() { return &mStagingProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800333
Doris Liu1d8e1942016-03-02 15:16:28 -0800334 // This should only be called from animations on RT
335 FullPathProperties* mutateProperties() { return &mProperties; }
Teng-Hui Zhudbee9bb2015-12-15 11:01:27 -0800336
Doris Liu1d8e1942016-03-02 15:16:28 -0800337 virtual void syncProperties() override;
338 virtual void onPropertyChanged(Properties* properties) override {
339 Path::onPropertyChanged(properties);
340 if (properties == &mStagingProperties) {
341 mStagingPropertiesDirty = true;
342 if (mPropertyChangedListener) {
343 mPropertyChangedListener->onStagingPropertyChanged();
344 }
345 } else if (properties == &mProperties) {
346 if (mPropertyChangedListener) {
347 mPropertyChangedListener->onPropertyChanged();
348 }
349 }
Doris Liu4bbc2932015-12-01 17:59:40 -0800350 }
Doris Liu6b184d72017-12-04 16:31:07 -0800351 virtual void setAntiAlias(bool aa) { mAntiAlias = aa; }
Teng-Hui Zhudbee9bb2015-12-15 11:01:27 -0800352
Doris Liu4bbc2932015-12-01 17:59:40 -0800353protected:
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400354 const SkPath& getUpdatedPath(bool useStagingData, SkPath* tempStagingPath) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800355
John Reck1bcacfd2017-11-03 10:12:19 -0700356private:
Doris Liu1d8e1942016-03-02 15:16:28 -0800357 FullPathProperties mProperties = FullPathProperties(this);
358 FullPathProperties mStagingProperties = FullPathProperties(this);
359 bool mStagingPropertiesDirty = true;
360
361 // Intermediate data for drawing, render thread only
Doris Liu5a11e8d2016-02-04 20:04:10 +0000362 SkPath mTrimmedSkPath;
Doris Liu6b184d72017-12-04 16:31:07 -0800363 // Default to use AntiAlias
364 bool mAntiAlias = true;
Doris Liu4bbc2932015-12-01 17:59:40 -0800365};
366
John Reck1bcacfd2017-11-03 10:12:19 -0700367class ANDROID_API ClipPath : public Path {
Doris Liu4bbc2932015-12-01 17:59:40 -0800368public:
369 ClipPath(const ClipPath& path) : Path(path) {}
370 ClipPath(const char* path, size_t strLength) : Path(path, strLength) {}
371 ClipPath() : Path() {}
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400372 void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu6b184d72017-12-04 16:31:07 -0800373 virtual void setAntiAlias(bool aa) {}
Doris Liu4bbc2932015-12-01 17:59:40 -0800374};
375
John Reck1bcacfd2017-11-03 10:12:19 -0700376class ANDROID_API Group : public Node {
Doris Liu4bbc2932015-12-01 17:59:40 -0800377public:
Doris Liu1d8e1942016-03-02 15:16:28 -0800378 class GroupProperties : public Properties {
379 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700380 explicit GroupProperties(Node* mNode) : Properties(mNode) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800381 struct PrimitiveFields {
382 float rotate = 0;
383 float pivotX = 0;
384 float pivotY = 0;
385 float scaleX = 1;
386 float scaleY = 1;
387 float translateX = 0;
388 float translateY = 0;
389 } mPrimitiveFields;
390 void syncProperties(const GroupProperties& prop) {
391 mPrimitiveFields = prop.mPrimitiveFields;
392 onPropertyChanged();
393 }
John Reck1bcacfd2017-11-03 10:12:19 -0700394 float getRotation() const { return mPrimitiveFields.rotate; }
395 void setRotation(float rotation) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(rotate, rotation); }
396 float getPivotX() const { return mPrimitiveFields.pivotX; }
397 void setPivotX(float pivotX) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(pivotX, pivotX); }
398 float getPivotY() const { return mPrimitiveFields.pivotY; }
399 void setPivotY(float pivotY) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(pivotY, pivotY); }
400 float getScaleX() const { return mPrimitiveFields.scaleX; }
401 void setScaleX(float scaleX) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(scaleX, scaleX); }
402 float getScaleY() const { return mPrimitiveFields.scaleY; }
403 void setScaleY(float scaleY) { VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(scaleY, scaleY); }
404 float getTranslateX() const { return mPrimitiveFields.translateX; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800405 void setTranslateX(float translateX) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700406 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(translateX, translateX);
Doris Liu1d8e1942016-03-02 15:16:28 -0800407 }
John Reck1bcacfd2017-11-03 10:12:19 -0700408 float getTranslateY() const { return mPrimitiveFields.translateY; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800409 void setTranslateY(float translateY) {
Doris Liu32d7cda2016-04-08 13:48:47 -0700410 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(translateY, translateY);
Doris Liu1d8e1942016-03-02 15:16:28 -0800411 }
John Reck1bcacfd2017-11-03 10:12:19 -0700412 void updateProperties(float rotate, float pivotX, float pivotY, float scaleX, float scaleY,
413 float translateX, float translateY) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800414 mPrimitiveFields.rotate = rotate;
415 mPrimitiveFields.pivotX = pivotX;
416 mPrimitiveFields.pivotY = pivotY;
417 mPrimitiveFields.scaleX = scaleX;
418 mPrimitiveFields.scaleY = scaleY;
419 mPrimitiveFields.translateX = translateX;
420 mPrimitiveFields.translateY = translateY;
421 onPropertyChanged();
422 }
423 void setPropertyValue(int propertyId, float value);
424 float getPropertyValue(int propertyId) const;
425 bool copyProperties(float* outProperties, int length) const;
426 static bool isValidProperty(int propertyId);
John Reck1bcacfd2017-11-03 10:12:19 -0700427
Doris Liu1d8e1942016-03-02 15:16:28 -0800428 private:
429 enum class Property {
430 rotate = 0,
431 pivotX,
432 pivotY,
433 scaleX,
434 scaleY,
435 translateX,
436 translateY,
437 // Count of the properties, must be at the end.
438 count,
439 };
Doris Liu766431a2016-02-04 22:17:11 +0000440 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800441
Doris Liu4bbc2932015-12-01 17:59:40 -0800442 Group(const Group& group);
443 Group() {}
Doris Liu4bbc2932015-12-01 17:59:40 -0800444 void addChild(Node* child);
Doris Liu1d8e1942016-03-02 15:16:28 -0800445 virtual void setPropertyChangedListener(PropertyChangedListener* listener) override {
446 Node::setPropertyChangedListener(listener);
447 for (auto& child : mChildren) {
John Reck1bcacfd2017-11-03 10:12:19 -0700448 child->setPropertyChangedListener(listener);
Doris Liu1d8e1942016-03-02 15:16:28 -0800449 }
450 }
451 virtual void syncProperties() override;
452 GroupProperties* mutateStagingProperties() { return &mStagingProperties; }
453 const GroupProperties* stagingProperties() { return &mStagingProperties; }
454
455 // This should only be called from animations on RT
456 GroupProperties* mutateProperties() { return &mProperties; }
457
458 // Methods below could be called from either UI thread or Render Thread.
Stan Ilievcc29a5d2017-03-15 16:37:10 -0400459 virtual void draw(SkCanvas* outCanvas, bool useStagingData) override;
Doris Liu1d8e1942016-03-02 15:16:28 -0800460 void getLocalMatrix(SkMatrix* outMatrix, const GroupProperties& properties);
Doris Liu4bbc2932015-12-01 17:59:40 -0800461 void dump() override;
Doris Liu766431a2016-02-04 22:17:11 +0000462 static bool isValidProperty(int propertyId);
Doris Liu4bbc2932015-12-01 17:59:40 -0800463
Doris Liu1d8e1942016-03-02 15:16:28 -0800464 virtual void onPropertyChanged(Properties* properties) override {
465 if (properties == &mStagingProperties) {
466 mStagingPropertiesDirty = true;
467 if (mPropertyChangedListener) {
468 mPropertyChangedListener->onStagingPropertyChanged();
469 }
470 } else {
471 if (mPropertyChangedListener) {
472 mPropertyChangedListener->onPropertyChanged();
473 }
474 }
475 }
476
Doris Liu6b184d72017-12-04 16:31:07 -0800477 virtual void setAntiAlias(bool aa) {
478 for (auto& child : mChildren) {
479 child->setAntiAlias(aa);
480 }
481 }
482
Doris Liu4bbc2932015-12-01 17:59:40 -0800483private:
Doris Liu1d8e1942016-03-02 15:16:28 -0800484 GroupProperties mProperties = GroupProperties(this);
485 GroupProperties mStagingProperties = GroupProperties(this);
486 bool mStagingPropertiesDirty = true;
John Reck1bcacfd2017-11-03 10:12:19 -0700487 std::vector<std::unique_ptr<Node> > mChildren;
Doris Liu4bbc2932015-12-01 17:59:40 -0800488};
489
Doris Liu766431a2016-02-04 22:17:11 +0000490class ANDROID_API Tree : public VirtualLightRefBase {
Doris Liu4bbc2932015-12-01 17:59:40 -0800491public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700492 explicit Tree(Group* rootNode) : mRootNode(rootNode) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800493 mRootNode->setPropertyChangedListener(&mPropertyChangedListener);
494 }
Doris Liu335d7d12016-05-26 15:19:15 -0700495
496 // Copy properties from the tree and use the give node as the root node
497 Tree(const Tree* copy, Group* rootNode) : Tree(rootNode) {
498 mStagingProperties.syncAnimatableProperties(*copy->stagingProperties());
499 mStagingProperties.syncNonAnimatableProperties(*copy->stagingProperties());
500 }
Doris Liuf8d131c2016-04-29 18:41:29 -0700501 // Draws the VD onto a bitmap cache, then the bitmap cache will be rendered onto the input
502 // canvas. Returns the number of pixels needed for the bitmap cache.
John Reck1bcacfd2017-11-03 10:12:19 -0700503 int draw(Canvas* outCanvas, SkColorFilter* colorFilter, const SkRect& bounds,
504 bool needsMirroring, bool canReuseCache);
Doris Liu1d8e1942016-03-02 15:16:28 -0800505 void drawStaging(Canvas* canvas);
Doris Liu4bbc2932015-12-01 17:59:40 -0800506
sergeyvfc9999502016-10-17 13:07:38 -0700507 Bitmap& getBitmapUpdateIfDirty();
John Reck1bcacfd2017-11-03 10:12:19 -0700508 void setAllowCaching(bool allowCaching) { mAllowCaching = allowCaching; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800509 SkPaint* getPaint();
510 void syncProperties() {
511 if (mStagingProperties.mNonAnimatablePropertiesDirty) {
John Reck1bcacfd2017-11-03 10:12:19 -0700512 mCache.dirty |= (mProperties.mNonAnimatableProperties.viewportWidth !=
513 mStagingProperties.mNonAnimatableProperties.viewportWidth) ||
514 (mProperties.mNonAnimatableProperties.viewportHeight !=
515 mStagingProperties.mNonAnimatableProperties.viewportHeight) ||
516 (mProperties.mNonAnimatableProperties.scaledWidth !=
517 mStagingProperties.mNonAnimatableProperties.scaledWidth) ||
518 (mProperties.mNonAnimatableProperties.scaledHeight !=
519 mStagingProperties.mNonAnimatableProperties.scaledHeight) ||
520 (mProperties.mNonAnimatableProperties.bounds !=
521 mStagingProperties.mNonAnimatableProperties.bounds);
Doris Liu1d8e1942016-03-02 15:16:28 -0800522 mProperties.syncNonAnimatableProperties(mStagingProperties);
523 mStagingProperties.mNonAnimatablePropertiesDirty = false;
524 }
525
526 if (mStagingProperties.mAnimatablePropertiesDirty) {
527 mProperties.syncAnimatableProperties(mStagingProperties);
528 } else {
529 mStagingProperties.syncAnimatableProperties(mProperties);
530 }
531 mStagingProperties.mAnimatablePropertiesDirty = false;
532 mRootNode->syncProperties();
Doris Liu4bbc2932015-12-01 17:59:40 -0800533 }
534
Doris Liu1d8e1942016-03-02 15:16:28 -0800535 class TreeProperties {
536 public:
Chih-Hung Hsieha619ec72016-08-29 14:52:43 -0700537 explicit TreeProperties(Tree* tree) : mTree(tree) {}
Doris Liu1d8e1942016-03-02 15:16:28 -0800538 // Properties that can only be modified by UI thread, therefore sync should
539 // only go from UI to RT
540 struct NonAnimatableProperties {
541 float viewportWidth = 0;
542 float viewportHeight = 0;
543 SkRect bounds;
544 int scaledWidth = 0;
545 int scaledHeight = 0;
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400546 sk_sp<SkColorFilter> colorFilter;
Doris Liu1d8e1942016-03-02 15:16:28 -0800547 } mNonAnimatableProperties;
548 bool mNonAnimatablePropertiesDirty = true;
549
550 float mRootAlpha = 1.0f;
551 bool mAnimatablePropertiesDirty = true;
552
553 void syncNonAnimatableProperties(const TreeProperties& prop) {
554 // Copy over the data that can only be changed in UI thread
555 if (mNonAnimatableProperties.colorFilter != prop.mNonAnimatableProperties.colorFilter) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400556 mNonAnimatableProperties.colorFilter = prop.mNonAnimatableProperties.colorFilter;
Doris Liu1d8e1942016-03-02 15:16:28 -0800557 }
558 mNonAnimatableProperties = prop.mNonAnimatableProperties;
559 }
560
561 void setViewportSize(float width, float height) {
John Reck1bcacfd2017-11-03 10:12:19 -0700562 if (mNonAnimatableProperties.viewportWidth != width ||
563 mNonAnimatableProperties.viewportHeight != height) {
Doris Liu1d8e1942016-03-02 15:16:28 -0800564 mNonAnimatablePropertiesDirty = true;
565 mNonAnimatableProperties.viewportWidth = width;
566 mNonAnimatableProperties.viewportHeight = height;
567 mTree->onPropertyChanged(this);
568 }
569 }
570 void setBounds(const SkRect& bounds) {
571 if (mNonAnimatableProperties.bounds != bounds) {
572 mNonAnimatableProperties.bounds = bounds;
573 mNonAnimatablePropertiesDirty = true;
574 mTree->onPropertyChanged(this);
575 }
576 }
577
578 void setScaledSize(int width, int height) {
Teng-Hui Zhu037fc182016-11-16 10:29:39 -0800579 // If the requested size is bigger than what the bitmap was, then
580 // we increase the bitmap size to match. The width and height
581 // are bound by MAX_CACHED_BITMAP_SIZE.
John Reck1bcacfd2017-11-03 10:12:19 -0700582 if (mNonAnimatableProperties.scaledWidth < width ||
583 mNonAnimatableProperties.scaledHeight < height) {
584 mNonAnimatableProperties.scaledWidth =
585 std::max(width, mNonAnimatableProperties.scaledWidth);
586 mNonAnimatableProperties.scaledHeight =
587 std::max(height, mNonAnimatableProperties.scaledHeight);
Doris Liu1d8e1942016-03-02 15:16:28 -0800588 mNonAnimatablePropertiesDirty = true;
589 mTree->onPropertyChanged(this);
590 }
591 }
592 void setColorFilter(SkColorFilter* filter) {
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400593 if (mNonAnimatableProperties.colorFilter.get() != filter) {
594 mNonAnimatableProperties.colorFilter = sk_ref_sp(filter);
Doris Liu1d8e1942016-03-02 15:16:28 -0800595 mNonAnimatablePropertiesDirty = true;
596 mTree->onPropertyChanged(this);
597 }
598 }
Ben Wagnerc1a8a462018-07-12 12:41:28 -0400599 SkColorFilter* getColorFilter() const { return mNonAnimatableProperties.colorFilter.get(); }
Doris Liu1d8e1942016-03-02 15:16:28 -0800600
John Reck1bcacfd2017-11-03 10:12:19 -0700601 float getViewportWidth() const { return mNonAnimatableProperties.viewportWidth; }
602 float getViewportHeight() const { return mNonAnimatableProperties.viewportHeight; }
603 float getScaledWidth() const { return mNonAnimatableProperties.scaledWidth; }
604 float getScaledHeight() const { return mNonAnimatableProperties.scaledHeight; }
605 void syncAnimatableProperties(const TreeProperties& prop) { mRootAlpha = prop.mRootAlpha; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800606 bool setRootAlpha(float rootAlpha) {
607 if (rootAlpha != mRootAlpha) {
608 mAnimatablePropertiesDirty = true;
609 mRootAlpha = rootAlpha;
610 mTree->onPropertyChanged(this);
611 return true;
612 }
613 return false;
614 }
John Reck1bcacfd2017-11-03 10:12:19 -0700615 float getRootAlpha() const { return mRootAlpha; }
616 const SkRect& getBounds() const { return mNonAnimatableProperties.bounds; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800617 Tree* mTree;
618 };
619 void onPropertyChanged(TreeProperties* prop);
620 TreeProperties* mutateStagingProperties() { return &mStagingProperties; }
Doris Liu335d7d12016-05-26 15:19:15 -0700621 const TreeProperties* stagingProperties() const { return &mStagingProperties; }
Doris Liu1d8e1942016-03-02 15:16:28 -0800622
623 // This should only be called from animations on RT
624 TreeProperties* mutateProperties() { return &mProperties; }
Doris Liu4bbc2932015-12-01 17:59:40 -0800625
Stan Iliev23c38a92017-03-23 00:12:50 -0400626 // called from RT only
627 const TreeProperties& properties() const { return mProperties; }
628
Doris Liu67ce99b2016-05-17 16:50:31 -0700629 // This should always be called from RT.
Doris Liu7c7052d2016-07-25 17:19:24 -0700630 void markDirty() { mCache.dirty = true; }
Doris Liu67ce99b2016-05-17 16:50:31 -0700631 bool isDirty() const { return mCache.dirty; }
632 bool getPropertyChangeWillBeConsumed() const { return mWillBeConsumed; }
633 void setPropertyChangeWillBeConsumed(bool willBeConsumed) { mWillBeConsumed = willBeConsumed; }
634
Stan Iliev3310fb12017-03-23 16:56:51 -0400635 /**
636 * Draws VD cache into a canvas. This should always be called from RT and it works with Skia
637 * pipelines only.
638 */
Stan Iliev65e678f2018-02-07 14:07:30 -0500639 void draw(SkCanvas* canvas, const SkRect& bounds);
Stan Iliev23c38a92017-03-23 00:12:50 -0400640
Stan Iliev3310fb12017-03-23 16:56:51 -0400641 /**
642 * Draws VD into a GPU backed surface.
643 * This should always be called from RT and it works with Skia pipeline only.
644 */
645 void updateCache(sp<skiapipeline::VectorDrawableAtlas>& atlas, GrContext* context);
Stan Iliev23c38a92017-03-23 00:12:50 -0400646
Doris Liu6b184d72017-12-04 16:31:07 -0800647 void setAntiAlias(bool aa) { mRootNode->setAntiAlias(aa); }
648
Doris Liu4bbc2932015-12-01 17:59:40 -0800649private:
Stan Iliev3310fb12017-03-23 16:56:51 -0400650 class Cache {
651 public:
John Reck1bcacfd2017-11-03 10:12:19 -0700652 sk_sp<Bitmap> bitmap; // used by HWUI pipeline and software
653 // TODO: use surface instead of bitmap when drawing in software canvas
sergeyvfc9999502016-10-17 13:07:38 -0700654 bool dirty = true;
Stan Iliev3310fb12017-03-23 16:56:51 -0400655
656 // the rest of the code in Cache is used by Skia pipelines only
657
658 ~Cache() { clear(); }
659
660 /**
661 * Stores a weak pointer to the atlas and a key.
662 */
663 void setAtlas(sp<skiapipeline::VectorDrawableAtlas> atlas,
John Reck1bcacfd2017-11-03 10:12:19 -0700664 skiapipeline::AtlasKey newAtlasKey);
Stan Iliev3310fb12017-03-23 16:56:51 -0400665
666 /**
667 * Gets a surface and bounds from the atlas.
668 *
669 * @return nullptr if the altas has been deleted.
670 */
671 sk_sp<SkSurface> getSurface(SkRect* bounds);
672
673 /**
674 * Releases atlas key from the atlas, which makes it available for reuse.
675 */
676 void clear();
John Reck1bcacfd2017-11-03 10:12:19 -0700677
Stan Iliev3310fb12017-03-23 16:56:51 -0400678 private:
679 wp<skiapipeline::VectorDrawableAtlas> mAtlas;
680 skiapipeline::AtlasKey mAtlasKey = INVALID_ATLAS_KEY;
sergeyvfc9999502016-10-17 13:07:38 -0700681 };
Doris Liu1d8e1942016-03-02 15:16:28 -0800682
683 SkPaint* updatePaint(SkPaint* outPaint, TreeProperties* prop);
sergeyvfc9999502016-10-17 13:07:38 -0700684 bool allocateBitmapIfNeeded(Cache& cache, int width, int height);
685 bool canReuseBitmap(Bitmap*, int width, int height);
686 void updateBitmapCache(Bitmap& outCache, bool useStagingData);
Stan Iliev3310fb12017-03-23 16:56:51 -0400687
Doris Liu4bbc2932015-12-01 17:59:40 -0800688 // Cap the bitmap size, such that it won't hurt the performance too much
689 // and it won't crash due to a very large scale.
690 // The drawable will look blurry above this size.
691 const static int MAX_CACHED_BITMAP_SIZE;
692
Doris Liu4bbc2932015-12-01 17:59:40 -0800693 bool mAllowCaching = true;
Doris Liuef062eb2016-02-04 16:16:27 -0800694 std::unique_ptr<Group> mRootNode;
Doris Liu4bbc2932015-12-01 17:59:40 -0800695
Doris Liu1d8e1942016-03-02 15:16:28 -0800696 TreeProperties mProperties = TreeProperties(this);
697 TreeProperties mStagingProperties = TreeProperties(this);
698
Doris Liu1d8e1942016-03-02 15:16:28 -0800699 SkPaint mPaint;
Doris Liu1d8e1942016-03-02 15:16:28 -0800700
701 Cache mStagingCache;
702 Cache mCache;
703
John Reck1bcacfd2017-11-03 10:12:19 -0700704 PropertyChangedListener mPropertyChangedListener =
705 PropertyChangedListener(&mCache.dirty, &mStagingCache.dirty);
Doris Liu67ce99b2016-05-17 16:50:31 -0700706
707 mutable bool mWillBeConsumed = false;
Doris Liu4bbc2932015-12-01 17:59:40 -0800708};
709
John Reck1bcacfd2017-11-03 10:12:19 -0700710} // namespace VectorDrawable
Doris Liu4bbc2932015-12-01 17:59:40 -0800711
712typedef VectorDrawable::Path::Data PathData;
John Reckd9d7f122018-05-03 14:40:56 -0700713typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
714
John Reck1bcacfd2017-11-03 10:12:19 -0700715} // namespace uirenderer
716} // namespace android
Doris Liu4bbc2932015-12-01 17:59:40 -0800717
John Reck1bcacfd2017-11-03 10:12:19 -0700718#endif // ANDROID_HWUI_VPATH_H