blob: b348a6ecaae44c7c0874c00dfc1212b15319f6a2 [file] [log] [blame]
John Reck113e0822014-03-18 09:22:59 -07001/*
2 * Copyright (C) 2014 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
John Reck113e0822014-03-18 09:22:59 -070017#include "RenderNode.h"
18
John Recke4267ea2014-06-03 15:53:15 -070019#include "DamageAccumulator.h"
John Reck113e0822014-03-18 09:22:59 -070020#include "Debug.h"
Huihong Luoec68b7c2021-06-25 21:54:16 -070021#include "Properties.h"
Tom Hudson2dc236b2014-10-15 15:46:42 -040022#include "TreeInfo.h"
John Reck1bcacfd2017-11-03 10:12:19 -070023#include "VectorDrawable.h"
Derek Sollenberger5d0ca632019-07-19 16:17:12 -040024#include "private/hwui/WebViewFunctor.h"
Fedor Kudasov86bd2142019-06-18 15:51:57 +010025#ifdef __ANDROID__
John Reck1bcacfd2017-11-03 10:12:19 -070026#include "renderthread/CanvasContext.h"
Fedor Kudasov86bd2142019-06-18 15:51:57 +010027#else
28#include "DamageAccumulator.h"
29#include "pipeline/skia/SkiaDisplayList.h"
30#endif
rnleece9762b2021-05-21 15:40:53 -070031#include <gui/TraceUtils.h>
Chris Craike0bb87d2014-04-22 17:55:41 -070032#include "utils/MathUtils.h"
sergeyvc3849aa2016-08-08 13:22:06 -070033#include "utils/StringUtils.h"
John Reck113e0822014-03-18 09:22:59 -070034
Derek Sollenberger579317d42017-08-29 16:33:49 -040035#include <SkPathOps.h>
John Reck77c40102015-10-26 15:49:47 -070036#include <algorithm>
John Reckf96b2842018-11-29 09:44:10 -080037#include <atomic>
John Reck77c40102015-10-26 15:49:47 -070038#include <sstream>
39#include <string>
Jagadeesh Pakaravoorb624af32020-05-01 00:01:40 +000040#include <ui/FatVector.h>
John Reck77c40102015-10-26 15:49:47 -070041
John Reck113e0822014-03-18 09:22:59 -070042namespace android {
43namespace uirenderer {
44
John Reck2de950d2017-01-25 10:58:30 -080045// Used for tree mutations that are purely destructive.
46// Generic tree mutations should use MarkAndSweepObserver instead
47class ImmediateRemoved : public TreeObserver {
48public:
49 explicit ImmediateRemoved(TreeInfo* info) : mTreeInfo(info) {}
50
John Reck1bcacfd2017-11-03 10:12:19 -070051 void onMaybeRemovedFromTree(RenderNode* node) override { node->onRemovedFromTree(mTreeInfo); }
John Reck2de950d2017-01-25 10:58:30 -080052
53private:
54 TreeInfo* mTreeInfo;
55};
56
John Reckf96b2842018-11-29 09:44:10 -080057static int64_t generateId() {
58 static std::atomic<int64_t> sNextId{1};
59 return sNextId++;
60}
61
John Reck8de65a82014-04-09 15:23:38 -070062RenderNode::RenderNode()
John Reckf96b2842018-11-29 09:44:10 -080063 : mUniqueId(generateId())
64 , mDirtyPropertyFields(0)
Chris Craik003cc3d2015-10-16 10:24:55 -070065 , mNeedsDisplayListSync(false)
66 , mDisplayList(nullptr)
67 , mStagingDisplayList(nullptr)
John Reck68bfe0a2014-06-24 15:34:58 -070068 , mAnimatorManager(*this)
John Reck1bcacfd2017-11-03 10:12:19 -070069 , mParentCount(0) {}
John Reck113e0822014-03-18 09:22:59 -070070
71RenderNode::~RenderNode() {
John Reck2de950d2017-01-25 10:58:30 -080072 ImmediateRemoved observer(nullptr);
73 deleteDisplayList(observer);
Derek Sollenberger0df62092016-09-27 16:04:42 -040074 LOG_ALWAYS_FATAL_IF(hasLayer(), "layer missed detachment!");
John Reck113e0822014-03-18 09:22:59 -070075}
76
John Reckbe671952021-01-13 22:39:32 -050077void RenderNode::setStagingDisplayList(DisplayList&& newData) {
78 mValid = newData.isValid();
Chris Craik003cc3d2015-10-16 10:24:55 -070079 mNeedsDisplayListSync = true;
John Reckbe671952021-01-13 22:39:32 -050080 mStagingDisplayList = std::move(newData);
John Reck113e0822014-03-18 09:22:59 -070081}
82
John Reckdc1a6962021-01-12 13:56:07 -050083void RenderNode::discardStagingDisplayList() {
John Reckbe671952021-01-13 22:39:32 -050084 setStagingDisplayList(DisplayList());
John Reckdc1a6962021-01-12 13:56:07 -050085}
86
John Reck113e0822014-03-18 09:22:59 -070087/**
88 * This function is a simplified version of replay(), where we simply retrieve and log the
89 * display list. This function should remain in sync with the replay() function.
90 */
sergeyvc3849aa2016-08-08 13:22:06 -070091void RenderNode::output() {
92 LogcatStream strout;
93 strout << "Root";
94 output(strout, 0);
95}
96
97void RenderNode::output(std::ostream& output, uint32_t level) {
98 output << " (" << getName() << " " << this
John Reck1bcacfd2017-11-03 10:12:19 -070099 << (MathUtils::isZero(properties().getAlpha()) ? ", zero alpha" : "")
100 << (properties().hasShadow() ? ", casting shadow" : "")
101 << (isRenderable() ? "" : ", empty")
102 << (properties().getProjectBackwards() ? ", projected" : "")
103 << (hasLayer() ? ", on HW Layer" : "") << ")" << std::endl;
sergeyvc3849aa2016-08-08 13:22:06 -0700104
105 properties().debugOutputProperties(output, level + 1);
Chris Craik91eff222016-02-22 13:39:33 -0800106
John Reckbe671952021-01-13 22:39:32 -0500107 mDisplayList.output(output, level);
sergeyvc3849aa2016-08-08 13:22:06 -0700108 output << std::string(level * 2, ' ') << "/RenderNode(" << getName() << " " << this << ")";
109 output << std::endl;
Chris Craik91eff222016-02-22 13:39:33 -0800110}
John Reck113e0822014-03-18 09:22:59 -0700111
John Reck183e1382019-10-09 13:41:18 -0700112int RenderNode::getUsageSize() {
John Reckfe5e7b72014-05-23 17:42:28 -0700113 int size = sizeof(RenderNode);
John Reckbe671952021-01-13 22:39:32 -0500114 size += mStagingDisplayList.getUsedSize();
115 size += mDisplayList.getUsedSize();
John Reckfe5e7b72014-05-23 17:42:28 -0700116 return size;
117}
118
John Reck183e1382019-10-09 13:41:18 -0700119int RenderNode::getAllocatedSize() {
120 int size = sizeof(RenderNode);
John Reckbe671952021-01-13 22:39:32 -0500121 size += mStagingDisplayList.getAllocatedSize();
122 size += mDisplayList.getAllocatedSize();
John Reck183e1382019-10-09 13:41:18 -0700123 return size;
124}
125
126
John Reckf4198b72014-04-09 17:00:04 -0700127void RenderNode::prepareTree(TreeInfo& info) {
128 ATRACE_CALL();
Chris Craik69e5adf2014-08-14 13:34:01 -0700129 LOG_ALWAYS_FATAL_IF(!info.damageAccumulator, "DamageAccumulator missing");
John Reck2de950d2017-01-25 10:58:30 -0800130 MarkAndSweepRemoved observer(&info);
John Reckf4198b72014-04-09 17:00:04 -0700131
John Reck1423e132018-09-21 14:30:19 -0700132 const int before = info.disableForceDark;
John Reck1072fff2018-04-12 15:20:09 -0700133 prepareTreeImpl(observer, info, false);
John Reck1423e132018-09-21 14:30:19 -0700134 LOG_ALWAYS_FATAL_IF(before != info.disableForceDark, "Mis-matched force dark");
John Reckf4198b72014-04-09 17:00:04 -0700135}
136
John Reck68bfe0a2014-06-24 15:34:58 -0700137void RenderNode::addAnimator(const sp<BaseRenderNodeAnimator>& animator) {
138 mAnimatorManager.addAnimator(animator);
139}
140
Doris Liu8b083202016-02-19 21:46:06 +0000141void RenderNode::removeAnimator(const sp<BaseRenderNodeAnimator>& animator) {
142 mAnimatorManager.removeAnimator(animator);
143}
144
John Recke4267ea2014-06-03 15:53:15 -0700145void RenderNode::damageSelf(TreeInfo& info) {
John Reckce9f3082014-06-17 16:18:09 -0700146 if (isRenderable()) {
John Reckf1aa7909e2019-03-07 17:01:08 -0800147 mDamageGenerationId = info.damageGenerationId;
John Reck293e8682014-06-17 10:34:02 -0700148 if (properties().getClipDamageToBounds()) {
John Recka447d292014-06-11 18:39:44 -0700149 info.damageAccumulator->dirty(0, 0, properties().getWidth(), properties().getHeight());
150 } else {
151 // Hope this is big enough?
152 // TODO: Get this from the display list ops or something
John Reckc1288232015-08-12 13:39:11 -0700153 info.damageAccumulator->dirty(DIRTY_MIN, DIRTY_MIN, DIRTY_MAX, DIRTY_MAX);
John Recka447d292014-06-11 18:39:44 -0700154 }
John Recke4267ea2014-06-03 15:53:15 -0700155 }
156}
157
John Recka7c2ea22014-08-08 13:21:00 -0700158void RenderNode::prepareLayer(TreeInfo& info, uint32_t dirtyMask) {
Chris Craik856f0cc2015-04-21 15:13:29 -0700159 LayerType layerType = properties().effectiveLayerType();
Chris Craik182952f2015-03-09 14:17:29 -0700160 if (CC_UNLIKELY(layerType == LayerType::RenderLayer)) {
John Recka7c2ea22014-08-08 13:21:00 -0700161 // Damage applied so far needs to affect our parent, but does not require
162 // the layer to be updated. So we pop/push here to clear out the current
163 // damage and get a clean state for display list or children updates to
164 // affect, which will require the layer to be updated
165 info.damageAccumulator->popTransform();
166 info.damageAccumulator->pushTransform(this);
167 if (dirtyMask & DISPLAY_LIST) {
168 damageSelf(info);
169 }
John Reck25fbb3f2014-06-12 13:46:45 -0700170 }
171}
172
173void RenderNode::pushLayerUpdate(TreeInfo& info) {
Fedor Kudasov86bd2142019-06-18 15:51:57 +0100174#ifdef __ANDROID__ // Layoutlib does not support CanvasContext and Layers
Chris Craik856f0cc2015-04-21 15:13:29 -0700175 LayerType layerType = properties().effectiveLayerType();
John Reck25fbb3f2014-06-12 13:46:45 -0700176 // If we are not a layer OR we cannot be rendered (eg, view was detached)
177 // we need to destroy any Layers we may have had previously
John Reck1bcacfd2017-11-03 10:12:19 -0700178 if (CC_LIKELY(layerType != LayerType::RenderLayer) || CC_UNLIKELY(!isRenderable()) ||
179 CC_UNLIKELY(properties().getWidth() == 0) || CC_UNLIKELY(properties().getHeight() == 0) ||
180 CC_UNLIKELY(!properties().fitsOnLayer())) {
Derek Sollenberger0df62092016-09-27 16:04:42 -0400181 if (CC_UNLIKELY(hasLayer())) {
Derek Sollenberger28a4d992018-09-20 13:37:24 -0400182 this->setLayerSurface(nullptr);
John Reck25fbb3f2014-06-12 13:46:45 -0700183 }
184 return;
185 }
186
Stan Iliev216b1572018-03-26 14:29:50 -0400187 if (info.canvasContext.createOrUpdateLayer(this, *info.damageAccumulator, info.errorHandler)) {
Chris Craik9fded232015-11-11 16:42:34 -0800188 damageSelf(info);
Chris Craik69e5adf2014-08-14 13:34:01 -0700189 }
190
Derek Sollenberger0df62092016-09-27 16:04:42 -0400191 if (!hasLayer()) {
John Reckc25e5062014-06-18 14:21:29 -0700192 return;
193 }
194
Derek Sollenberger6a21ca52016-09-28 13:39:55 -0400195 SkRect dirty;
196 info.damageAccumulator->peekAtDirty(&dirty);
Chris Craik0b7e8242015-10-28 16:50:44 -0700197 info.layerUpdateQueue->enqueueLayerWithDamage(this, dirty);
Nader Jawad197743f2021-04-19 19:45:13 -0700198 if (!dirty.isEmpty()) {
199 mStretchMask.markDirty();
200 }
John Reck998a6d82014-08-28 15:35:53 -0700201
Chris Craike2e53a72015-10-28 15:55:40 -0700202 // There might be prefetched layers that need to be accounted for.
203 // That might be us, so tell CanvasContext that this layer is in the
204 // tree and should not be destroyed.
205 info.canvasContext.markLayerInUse(this);
Fedor Kudasov86bd2142019-06-18 15:51:57 +0100206#endif
John Reck25fbb3f2014-06-12 13:46:45 -0700207}
208
Chris Craika766cb22015-06-08 16:49:43 -0700209/**
210 * Traverse down the the draw tree to prepare for a frame.
211 *
212 * MODE_FULL = UI Thread-driven (thus properties must be synced), otherwise RT driven
213 *
214 * While traversing down the tree, functorsNeedLayer flag is set to true if anything that uses the
215 * stencil buffer may be needed. Views that use a functor to draw will be forced onto a layer.
216 */
John Reck2de950d2017-01-25 10:58:30 -0800217void RenderNode::prepareTreeImpl(TreeObserver& observer, TreeInfo& info, bool functorsNeedLayer) {
John Reckf1aa7909e2019-03-07 17:01:08 -0800218 if (mDamageGenerationId == info.damageGenerationId) {
219 // We hit the same node a second time in the same tree. We don't know the minimal
220 // damage rect anymore, so just push the biggest we can onto our parent's transform
221 // We push directly onto parent in case we are clipped to bounds but have moved position.
222 info.damageAccumulator->dirty(DIRTY_MIN, DIRTY_MIN, DIRTY_MAX, DIRTY_MAX);
223 }
John Recka447d292014-06-11 18:39:44 -0700224 info.damageAccumulator->pushTransform(this);
John Reckf47a5942014-06-30 16:20:04 -0700225
John Reckdcba6722014-07-08 13:59:49 -0700226 if (info.mode == TreeInfo::MODE_FULL) {
John Reck25fbb3f2014-06-12 13:46:45 -0700227 pushStagingPropertiesChanges(info);
John Recke45b1fd2014-04-15 09:50:16 -0700228 }
John Reck1423e132018-09-21 14:30:19 -0700229
230 if (!mProperties.getAllowForceDark()) {
231 info.disableForceDark++;
232 }
John Reck5d53a752021-02-08 19:22:59 -0500233 if (!mProperties.layerProperties().getStretchEffect().isEmpty()) {
234 info.stretchEffectCount++;
235 }
John Reck1423e132018-09-21 14:30:19 -0700236
John Reck9eb9f6f2014-08-21 11:23:05 -0700237 uint32_t animatorDirtyMask = 0;
238 if (CC_LIKELY(info.runAnimations)) {
239 animatorDirtyMask = mAnimatorManager.animate(info);
240 }
Chris Craika766cb22015-06-08 16:49:43 -0700241
John Reck3f725f02015-06-16 10:29:31 -0700242 bool willHaveFunctor = false;
Chris Craik003cc3d2015-10-16 10:24:55 -0700243 if (info.mode == TreeInfo::MODE_FULL && mStagingDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500244 willHaveFunctor = mStagingDisplayList.hasFunctor();
Chris Craik003cc3d2015-10-16 10:24:55 -0700245 } else if (mDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500246 willHaveFunctor = mDisplayList.hasFunctor();
John Reck3f725f02015-06-16 10:29:31 -0700247 }
John Reck1bcacfd2017-11-03 10:12:19 -0700248 bool childFunctorsNeedLayer =
249 mProperties.prepareForFunctorPresence(willHaveFunctor, functorsNeedLayer);
Chris Craika766cb22015-06-08 16:49:43 -0700250
John Reckf6481082016-02-02 15:18:23 -0800251 if (CC_UNLIKELY(mPositionListener.get())) {
252 mPositionListener->onPositionUpdated(*this, info);
253 }
254
John Recka7c2ea22014-08-08 13:21:00 -0700255 prepareLayer(info, animatorDirtyMask);
John Reckdcba6722014-07-08 13:59:49 -0700256 if (info.mode == TreeInfo::MODE_FULL) {
John Reck2de950d2017-01-25 10:58:30 -0800257 pushStagingDisplayListChanges(observer, info);
John Reck25fbb3f2014-06-12 13:46:45 -0700258 }
John Reck25fbb3f2014-06-12 13:46:45 -0700259
Doris Liu07c056d2016-06-13 12:52:44 -0700260 if (mDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500261 info.out.hasFunctors |= mDisplayList.hasFunctor();
Nader Jawad2dc632a2021-03-29 18:51:29 -0700262 mHasHolePunches = mDisplayList.hasHolePunches();
John Reckbe671952021-01-13 22:39:32 -0500263 bool isDirty = mDisplayList.prepareListAndChildren(
John Reck1bcacfd2017-11-03 10:12:19 -0700264 observer, info, childFunctorsNeedLayer,
Nader Jawad2dc632a2021-03-29 18:51:29 -0700265 [this](RenderNode* child, TreeObserver& observer, TreeInfo& info,
266 bool functorsNeedLayer) {
John Reck1bcacfd2017-11-03 10:12:19 -0700267 child->prepareTreeImpl(observer, info, functorsNeedLayer);
Nader Jawad2dc632a2021-03-29 18:51:29 -0700268 mHasHolePunches |= child->hasHolePunches();
John Reck1bcacfd2017-11-03 10:12:19 -0700269 });
Derek Sollenberger0df62092016-09-27 16:04:42 -0400270 if (isDirty) {
271 damageSelf(info);
Doris Liu718cd3e2016-05-17 16:50:31 -0700272 }
Nader Jawad2dc632a2021-03-29 18:51:29 -0700273 } else {
274 mHasHolePunches = false;
Doris Liu718cd3e2016-05-17 16:50:31 -0700275 }
Doris Liub51b2862016-08-01 19:56:47 -0700276 pushLayerUpdate(info);
Doris Liu718cd3e2016-05-17 16:50:31 -0700277
John Reck1423e132018-09-21 14:30:19 -0700278 if (!mProperties.getAllowForceDark()) {
279 info.disableForceDark--;
280 }
John Reck5d53a752021-02-08 19:22:59 -0500281 if (!mProperties.layerProperties().getStretchEffect().isEmpty()) {
282 info.stretchEffectCount--;
283 }
John Recka447d292014-06-11 18:39:44 -0700284 info.damageAccumulator->popTransform();
John Reckf4198b72014-04-09 17:00:04 -0700285}
286
Chris Craikb565df12015-10-05 13:00:52 -0700287void RenderNode::syncProperties() {
288 mProperties = mStagingProperties;
289}
290
John Reck25fbb3f2014-06-12 13:46:45 -0700291void RenderNode::pushStagingPropertiesChanges(TreeInfo& info) {
John Reck097e1d32019-06-12 15:01:51 -0700292 if (mPositionListenerDirty) {
293 mPositionListener = std::move(mStagingPositionListener);
294 mStagingPositionListener = nullptr;
295 mPositionListenerDirty = false;
296 }
297
John Reckff941dc2014-05-14 16:34:14 -0700298 // Push the animators first so that setupStartValueIfNecessary() is called
299 // before properties() is trampled by stagingProperties(), as they are
300 // required by some animators.
John Reck9eb9f6f2014-08-21 11:23:05 -0700301 if (CC_LIKELY(info.runAnimations)) {
John Reck119907c2014-08-14 09:02:01 -0700302 mAnimatorManager.pushStaging();
John Reck9eb9f6f2014-08-21 11:23:05 -0700303 }
John Reckff941dc2014-05-14 16:34:14 -0700304 if (mDirtyPropertyFields) {
305 mDirtyPropertyFields = 0;
John Recke4267ea2014-06-03 15:53:15 -0700306 damageSelf(info);
John Recka447d292014-06-11 18:39:44 -0700307 info.damageAccumulator->popTransform();
Chris Craikb565df12015-10-05 13:00:52 -0700308 syncProperties();
Nader Jawad197743f2021-04-19 19:45:13 -0700309
Nader Jawad6aff4812021-06-09 10:14:43 -0700310 auto& layerProperties = mProperties.layerProperties();
311 const StretchEffect& stagingStretch = layerProperties.getStretchEffect();
Nader Jawad197743f2021-04-19 19:45:13 -0700312 if (stagingStretch.isEmpty()) {
313 mStretchMask.clear();
314 }
Nader Jawad6aff4812021-06-09 10:14:43 -0700315
316 if (layerProperties.getImageFilter() == nullptr) {
317 mSnapshotResult.snapshot = nullptr;
318 mTargetImageFilter = nullptr;
319 }
320
John Recke4267ea2014-06-03 15:53:15 -0700321 // We could try to be clever and only re-damage if the matrix changed.
322 // However, we don't need to worry about that. The cost of over-damaging
323 // here is only going to be a single additional map rect of this node
324 // plus a rect join(). The parent's transform (and up) will only be
325 // performed once.
John Recka447d292014-06-11 18:39:44 -0700326 info.damageAccumulator->pushTransform(this);
John Recke4267ea2014-06-03 15:53:15 -0700327 damageSelf(info);
John Reckff941dc2014-05-14 16:34:14 -0700328 }
John Reck25fbb3f2014-06-12 13:46:45 -0700329}
330
Nader Jawad6aff4812021-06-09 10:14:43 -0700331std::optional<RenderNode::SnapshotResult> RenderNode::updateSnapshotIfRequired(
332 GrRecordingContext* context,
333 const SkImageFilter* imageFilter,
334 const SkIRect& clipBounds
335) {
336 auto* layerSurface = getLayerSurface();
337 if (layerSurface == nullptr) {
338 return std::nullopt;
339 }
340
341 sk_sp<SkImage> snapshot = layerSurface->makeImageSnapshot();
342 const auto subset = SkIRect::MakeWH(properties().getWidth(),
343 properties().getHeight());
Nader Jawadf49068f2021-09-08 22:17:15 -0700344 uint32_t layerSurfaceGenerationId = layerSurface->generationID();
Nader Jawad6aff4812021-06-09 10:14:43 -0700345 // If we don't have an ImageFilter just return the snapshot
346 if (imageFilter == nullptr) {
347 mSnapshotResult.snapshot = snapshot;
348 mSnapshotResult.outSubset = subset;
349 mSnapshotResult.outOffset = SkIPoint::Make(0.0f, 0.0f);
350 mImageFilterClipBounds = clipBounds;
351 mTargetImageFilter = nullptr;
Nader Jawadf49068f2021-09-08 22:17:15 -0700352 mTargetImageFilterLayerSurfaceGenerationId = 0;
353 } else if (mSnapshotResult.snapshot == nullptr || imageFilter != mTargetImageFilter.get() ||
354 mImageFilterClipBounds != clipBounds ||
355 mTargetImageFilterLayerSurfaceGenerationId != layerSurfaceGenerationId) {
Nader Jawad6aff4812021-06-09 10:14:43 -0700356 // Otherwise create a new snapshot with the given filter and snapshot
357 mSnapshotResult.snapshot =
358 snapshot->makeWithFilter(context,
359 imageFilter,
360 subset,
361 clipBounds,
362 &mSnapshotResult.outSubset,
363 &mSnapshotResult.outOffset);
364 mTargetImageFilter = sk_ref_sp(imageFilter);
365 mImageFilterClipBounds = clipBounds;
Nader Jawadf49068f2021-09-08 22:17:15 -0700366 mTargetImageFilterLayerSurfaceGenerationId = layerSurfaceGenerationId;
Nader Jawad6aff4812021-06-09 10:14:43 -0700367 }
368
369 return mSnapshotResult;
370}
371
John Reck2de950d2017-01-25 10:58:30 -0800372void RenderNode::syncDisplayList(TreeObserver& observer, TreeInfo* info) {
Chris Craikb565df12015-10-05 13:00:52 -0700373 // Make sure we inc first so that we don't fluctuate between 0 and 1,
374 // which would thrash the layer cache
Chris Craik003cc3d2015-10-16 10:24:55 -0700375 if (mStagingDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500376 mStagingDisplayList.updateChildren([](RenderNode* child) { child->incParentRefCount(); });
Chris Craikb565df12015-10-05 13:00:52 -0700377 }
John Reck2de950d2017-01-25 10:58:30 -0800378 deleteDisplayList(observer, info);
John Reckbe671952021-01-13 22:39:32 -0500379 mDisplayList = std::move(mStagingDisplayList);
Chris Craik003cc3d2015-10-16 10:24:55 -0700380 if (mDisplayList) {
John Reck283bb462018-12-13 16:40:14 -0800381 WebViewSyncData syncData {
382 .applyForceDark = info && !info->disableForceDark
383 };
John Reckbe671952021-01-13 22:39:32 -0500384 mDisplayList.syncContents(syncData);
John Reck3b4510cd2018-09-27 17:39:45 -0700385 handleForceDark(info);
386 }
387}
John Reckf3c724f2018-09-20 13:00:04 -0700388
John Reck3b4510cd2018-09-27 17:39:45 -0700389void RenderNode::handleForceDark(android::uirenderer::TreeInfo *info) {
390 if (CC_LIKELY(!info || info->disableForceDark)) {
391 return;
392 }
393 auto usage = usageHint();
John Reckbe671952021-01-13 22:39:32 -0500394 FatVector<RenderNode*, 6> children;
395 mDisplayList.updateChildren([&children](RenderNode* node) {
396 children.push_back(node);
397 });
398 if (mDisplayList.hasText()) {
John Reck3b4510cd2018-09-27 17:39:45 -0700399 usage = UsageHint::Foreground;
400 }
401 if (usage == UsageHint::Unknown) {
402 if (children.size() > 1) {
403 usage = UsageHint::Background;
404 } else if (children.size() == 1 &&
John Reckbe671952021-01-13 22:39:32 -0500405 children.front()->usageHint() !=
John Reck3b4510cd2018-09-27 17:39:45 -0700406 UsageHint::Background) {
407 usage = UsageHint::Background;
John Reck8f45d4a2018-08-15 10:17:12 -0700408 }
Chris Craikb565df12015-10-05 13:00:52 -0700409 }
John Reck3b4510cd2018-09-27 17:39:45 -0700410 if (children.size() > 1) {
411 // Crude overlap check
412 SkRect drawn = SkRect::MakeEmpty();
413 for (auto iter = children.rbegin(); iter != children.rend(); ++iter) {
John Reckbe671952021-01-13 22:39:32 -0500414 const auto& child = *iter;
John Reck3b4510cd2018-09-27 17:39:45 -0700415 // We use stagingProperties here because we haven't yet sync'd the children
416 SkRect bounds = SkRect::MakeXYWH(child->stagingProperties().getX(), child->stagingProperties().getY(),
417 child->stagingProperties().getWidth(), child->stagingProperties().getHeight());
418 if (bounds.contains(drawn)) {
419 // This contains everything drawn after it, so make it a background
420 child->setUsageHint(UsageHint::Background);
421 }
422 drawn.join(bounds);
423 }
424 }
John Reckbe671952021-01-13 22:39:32 -0500425 mDisplayList.applyColorTransform(
John Reck3b4510cd2018-09-27 17:39:45 -0700426 usage == UsageHint::Background ? ColorTransform::Dark : ColorTransform::Light);
Chris Craikb565df12015-10-05 13:00:52 -0700427}
428
John Reck2de950d2017-01-25 10:58:30 -0800429void RenderNode::pushStagingDisplayListChanges(TreeObserver& observer, TreeInfo& info) {
Chris Craik003cc3d2015-10-16 10:24:55 -0700430 if (mNeedsDisplayListSync) {
431 mNeedsDisplayListSync = false;
John Reck5c9d7172014-10-22 11:32:27 -0700432 // Damage with the old display list first then the new one to catch any
433 // changes in isRenderable or, in the future, bounds
434 damageSelf(info);
John Reck2de950d2017-01-25 10:58:30 -0800435 syncDisplayList(observer, &info);
John Recke4267ea2014-06-03 15:53:15 -0700436 damageSelf(info);
John Reck8de65a82014-04-09 15:23:38 -0700437 }
John Reck8de65a82014-04-09 15:23:38 -0700438}
439
John Reck2de950d2017-01-25 10:58:30 -0800440void RenderNode::deleteDisplayList(TreeObserver& observer, TreeInfo* info) {
Chris Craik003cc3d2015-10-16 10:24:55 -0700441 if (mDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500442 mDisplayList.updateChildren(
John Reck1bcacfd2017-11-03 10:12:19 -0700443 [&observer, info](RenderNode* child) { child->decParentRefCount(observer, info); });
John Reckbe671952021-01-13 22:39:32 -0500444 mDisplayList.clear(this);
John Reckdcba6722014-07-08 13:59:49 -0700445 }
John Reckdcba6722014-07-08 13:59:49 -0700446}
447
John Reck2de950d2017-01-25 10:58:30 -0800448void RenderNode::destroyHardwareResources(TreeInfo* info) {
Derek Sollenberger0df62092016-09-27 16:04:42 -0400449 if (hasLayer()) {
Derek Sollenberger28a4d992018-09-20 13:37:24 -0400450 this->setLayerSurface(nullptr);
John Reckdcba6722014-07-08 13:59:49 -0700451 }
John Reckbe671952021-01-13 22:39:32 -0500452 discardStagingDisplayList();
John Reck3afd6372017-01-30 10:15:48 -0800453
454 ImmediateRemoved observer(info);
455 deleteDisplayList(observer, info);
John Reck2de950d2017-01-25 10:58:30 -0800456}
457
458void RenderNode::destroyLayers() {
459 if (hasLayer()) {
Derek Sollenberger28a4d992018-09-20 13:37:24 -0400460 this->setLayerSurface(nullptr);
John Reck2de950d2017-01-25 10:58:30 -0800461 }
Nader Jawadb502ad72021-06-17 14:10:04 -0700462
John Reck2de950d2017-01-25 10:58:30 -0800463 if (mDisplayList) {
John Reckbe671952021-01-13 22:39:32 -0500464 mDisplayList.updateChildren([](RenderNode* child) { child->destroyLayers(); });
John Reck2de950d2017-01-25 10:58:30 -0800465 }
466}
467
468void RenderNode::decParentRefCount(TreeObserver& observer, TreeInfo* info) {
469 LOG_ALWAYS_FATAL_IF(!mParentCount, "already 0!");
470 mParentCount--;
471 if (!mParentCount) {
472 observer.onMaybeRemovedFromTree(this);
473 if (CC_UNLIKELY(mPositionListener.get())) {
474 mPositionListener->onPositionLost(*this, info);
John Reckdcba6722014-07-08 13:59:49 -0700475 }
476 }
477}
478
John Reck2de950d2017-01-25 10:58:30 -0800479void RenderNode::onRemovedFromTree(TreeInfo* info) {
Huihong Luoec68b7c2021-06-25 21:54:16 -0700480 if (Properties::enableWebViewOverlays && mDisplayList) {
481 mDisplayList.onRemovedFromTree();
482 }
John Reck2de950d2017-01-25 10:58:30 -0800483 destroyHardwareResources(info);
484}
485
486void RenderNode::clearRoot() {
487 ImmediateRemoved observer(nullptr);
488 decParentRefCount(observer);
John Reckdcba6722014-07-08 13:59:49 -0700489}
490
John Reck113e0822014-03-18 09:22:59 -0700491/**
492 * Apply property-based transformations to input matrix
493 *
494 * If true3dTransform is set to true, the transform applied to the input matrix will use true 4x4
495 * matrix computation instead of the Skia 3x3 matrix + camera hackery.
496 */
Chris Craik69e5adf2014-08-14 13:34:01 -0700497void RenderNode::applyViewPropertyTransforms(mat4& matrix, bool true3dTransform) const {
John Reckd0a0b2a2014-03-20 16:28:56 -0700498 if (properties().getLeft() != 0 || properties().getTop() != 0) {
499 matrix.translate(properties().getLeft(), properties().getTop());
John Reck113e0822014-03-18 09:22:59 -0700500 }
John Reckd0a0b2a2014-03-20 16:28:56 -0700501 if (properties().getStaticMatrix()) {
502 mat4 stat(*properties().getStaticMatrix());
John Reck113e0822014-03-18 09:22:59 -0700503 matrix.multiply(stat);
John Reckd0a0b2a2014-03-20 16:28:56 -0700504 } else if (properties().getAnimationMatrix()) {
505 mat4 anim(*properties().getAnimationMatrix());
John Reck113e0822014-03-18 09:22:59 -0700506 matrix.multiply(anim);
507 }
Chris Craike0bb87d2014-04-22 17:55:41 -0700508
Chris Craikcc39e162014-04-25 18:34:11 -0700509 bool applyTranslationZ = true3dTransform && !MathUtils::isZero(properties().getZ());
Chris Craike0bb87d2014-04-22 17:55:41 -0700510 if (properties().hasTransformMatrix() || applyTranslationZ) {
John Reckf7483e32014-04-11 08:54:47 -0700511 if (properties().isTransformTranslateOnly()) {
John Reckd0a0b2a2014-03-20 16:28:56 -0700512 matrix.translate(properties().getTranslationX(), properties().getTranslationY(),
John Reck1bcacfd2017-11-03 10:12:19 -0700513 true3dTransform ? properties().getZ() : 0.0f);
John Reck113e0822014-03-18 09:22:59 -0700514 } else {
515 if (!true3dTransform) {
John Reckd0a0b2a2014-03-20 16:28:56 -0700516 matrix.multiply(*properties().getTransformMatrix());
John Reck113e0822014-03-18 09:22:59 -0700517 } else {
518 mat4 true3dMat;
John Reck1bcacfd2017-11-03 10:12:19 -0700519 true3dMat.loadTranslate(properties().getPivotX() + properties().getTranslationX(),
520 properties().getPivotY() + properties().getTranslationY(),
521 properties().getZ());
John Reckd0a0b2a2014-03-20 16:28:56 -0700522 true3dMat.rotate(properties().getRotationX(), 1, 0, 0);
523 true3dMat.rotate(properties().getRotationY(), 0, 1, 0);
524 true3dMat.rotate(properties().getRotation(), 0, 0, 1);
525 true3dMat.scale(properties().getScaleX(), properties().getScaleY(), 1);
526 true3dMat.translate(-properties().getPivotX(), -properties().getPivotY());
John Reck113e0822014-03-18 09:22:59 -0700527
528 matrix.multiply(true3dMat);
529 }
530 }
531 }
John Reck8ed00dc2021-05-10 13:09:27 -0400532
Nader Jawad93d6e242021-05-17 18:12:29 -0700533 if (Properties::getStretchEffectBehavior() == StretchEffectBehavior::UniformScale) {
John Reck8ed00dc2021-05-10 13:09:27 -0400534 const StretchEffect& stretch = properties().layerProperties().getStretchEffect();
535 if (!stretch.isEmpty()) {
536 matrix.multiply(
537 stretch.makeLinearStretch(properties().getWidth(), properties().getHeight()));
538 }
539 }
John Reck113e0822014-03-18 09:22:59 -0700540}
541
Derek Sollenberger579317d42017-08-29 16:33:49 -0400542const SkPath* RenderNode::getClippedOutline(const SkRect& clipRect) const {
543 const SkPath* outlinePath = properties().getOutline().getPath();
544 const uint32_t outlineID = outlinePath->getGenerationID();
545
546 if (outlineID != mClippedOutlineCache.outlineID || clipRect != mClippedOutlineCache.clipRect) {
547 // update the cache keys
548 mClippedOutlineCache.outlineID = outlineID;
549 mClippedOutlineCache.clipRect = clipRect;
550
551 // update the cache value by recomputing a new path
552 SkPath clipPath;
553 clipPath.addRect(clipRect);
554 Op(*outlinePath, clipPath, kIntersect_SkPathOp, &mClippedOutlineCache.clippedOutline);
Derek Sollenberger579317d42017-08-29 16:33:49 -0400555 }
556 return &mClippedOutlineCache.clippedOutline;
557}
558
John Reckf96b2842018-11-29 09:44:10 -0800559using StringBuffer = FatVector<char, 128>;
560
561template <typename... T>
John Reck7af5b2c2018-12-05 13:36:20 -0800562// TODO:__printflike(2, 3)
563// Doesn't work because the warning doesn't understand string_view and doesn't like that
564// it's not a C-style variadic function.
John Reckf96b2842018-11-29 09:44:10 -0800565static void format(StringBuffer& buffer, const std::string_view& format, T... args) {
566 buffer.resize(buffer.capacity());
567 while (1) {
568 int needed = snprintf(buffer.data(), buffer.size(),
569 format.data(), std::forward<T>(args)...);
570 if (needed < 0) {
571 buffer[0] = '\0';
572 buffer.resize(1);
573 return;
574 }
575 if (needed < buffer.size()) {
576 buffer.resize(needed + 1);
577 return;
578 }
John Reck7af5b2c2018-12-05 13:36:20 -0800579 // If we're doing a heap alloc anyway might as well give it some slop
580 buffer.resize(needed + 100);
John Reckf96b2842018-11-29 09:44:10 -0800581 }
582}
583
584void RenderNode::markDrawStart(SkCanvas& canvas) {
585 StringBuffer buffer;
John Reck7af5b2c2018-12-05 13:36:20 -0800586 format(buffer, "RenderNode(id=%" PRId64 ", name='%s')", uniqueId(), getName());
John Reckf96b2842018-11-29 09:44:10 -0800587 canvas.drawAnnotation(SkRect::MakeWH(getWidth(), getHeight()), buffer.data(), nullptr);
588}
589
590void RenderNode::markDrawEnd(SkCanvas& canvas) {
591 StringBuffer buffer;
John Reck7af5b2c2018-12-05 13:36:20 -0800592 format(buffer, "/RenderNode(id=%" PRId64 ", name='%s')", uniqueId(), getName());
John Reckf96b2842018-11-29 09:44:10 -0800593 canvas.drawAnnotation(SkRect::MakeWH(getWidth(), getHeight()), buffer.data(), nullptr);
594}
595
John Reck113e0822014-03-18 09:22:59 -0700596} /* namespace uirenderer */
597} /* namespace android */