blob: cf215adba273e5ea0469bbea7abed6039d763456 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -080017// TODO(b/129481165): remove the #pragma below and fix conversion issues
18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wconversion"
20
Dan Stoza9e56aa02015-11-02 13:00:03 -080021//#define LOG_NDEBUG 0
22#undef LOG_TAG
23#define LOG_TAG "Layer"
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080024#define ATRACE_TAG ATRACE_TAG_GRAPHICS
25
Alec Mourie60041e2019-06-14 18:59:51 -070026#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080027
[1;3C2b9fc252021-02-04 16:16:50 -080028#include <android-base/properties.h>
Yiwei Zhang5434a782018-12-05 18:06:32 -080029#include <android-base/stringprintf.h>
Steven Thomas62a4cf82020-01-31 12:04:03 -080030#include <android/native_window.h>
Vishnu Nair0f085c62019-08-30 08:49:12 -070031#include <binder/IPCThreadState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080032#include <compositionengine/Display.h>
Lloyd Piquea83776c2019-01-29 18:42:32 -080033#include <compositionengine/LayerFECompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080034#include <compositionengine/OutputLayer.h>
35#include <compositionengine/impl/OutputLayerCompositionState.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070036#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070037#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070038#include <cutils/properties.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080039#include <gui/BufferItem.h>
40#include <gui/LayerDebugInfo.h>
41#include <gui/Surface.h>
Alec Mourie60041e2019-06-14 18:59:51 -070042#include <math.h>
chaviw250bcbb2020-08-05 11:17:54 -070043#include <private/android_filesystem_config.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080044#include <renderengine/RenderEngine.h>
Alec Mourie60041e2019-06-14 18:59:51 -070045#include <stdint.h>
46#include <stdlib.h>
47#include <sys/types.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080048#include <ui/DebugUtils.h>
49#include <ui/GraphicBuffer.h>
50#include <ui/PixelFormat.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051#include <utils/Errors.h>
52#include <utils/Log.h>
Jesse Hall399184a2014-03-03 15:42:54 -080053#include <utils/NativeHandle.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080055#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056
Alec Mourie60041e2019-06-14 18:59:51 -070057#include <algorithm>
58#include <mutex>
59#include <sstream>
60
Yiwei Zhang60d1a192018-03-07 14:52:28 -080061#include "BufferLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020062#include "Colorizer.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070063#include "DisplayDevice.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080064#include "DisplayHardware/HWComposer.h"
Vishnu Nairfa247b12020-02-11 08:58:26 -080065#include "EffectLayer.h"
Ady Abraham22c7b5c2020-09-22 19:33:40 -070066#include "FrameTimeline.h"
Mikael Pessa90092f42019-08-26 17:22:04 -070067#include "FrameTracer/FrameTracer.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080068#include "LayerProtoHelper.h"
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070069#include "LayerRejecter.h"
Dan Stozab9b08832014-03-13 11:55:57 -070070#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071#include "SurfaceFlinger.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -080072#include "TimeStats/TimeStats.h"
Michael Wright44753b12020-07-08 13:48:11 +010073#include "input/InputWindow.h"
Mathias Agopian1b031492012-06-20 17:51:20 -070074
David Sodman41fdfc92017-11-06 16:09:56 -080075#define DEBUG_RESIZE 0
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077namespace android {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +010078namespace {
79constexpr int kDumpTableRowLength = 159;
80} // namespace
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080081
Yiwei Zhang5434a782018-12-05 18:06:32 -080082using base::StringAppendF;
Michael Wright44753b12020-07-08 13:48:11 +010083using namespace android::flag_operators;
Ady Abraham22c7b5c2020-09-22 19:33:40 -070084using PresentState = frametimeline::SurfaceFrame::PresentState;
Yiwei Zhang5434a782018-12-05 18:06:32 -080085
Lloyd Piquef1c675b2018-09-12 20:45:39 -070086std::atomic<int32_t> Layer::sSequence{1};
Mathias Agopian13127d82013-03-05 17:47:11 -080087
Lloyd Pique42ab75e2018-09-12 20:46:03 -070088Layer::Layer(const LayerCreationArgs& args)
Ady Abraham8f1ee7f2019-04-05 10:32:50 -070089 : mFlinger(args.flinger),
90 mName(args.name),
91 mClientRef(args.client),
Michael Wright44753b12020-07-08 13:48:11 +010092 mWindowType(static_cast<InputWindowInfo::Type>(
93 args.metadata.getInt32(METADATA_WINDOW_TYPE, 0))) {
Mathias Agopian4d9b8222013-03-12 17:11:48 -070094 uint32_t layerFlags = 0;
Lloyd Pique42ab75e2018-09-12 20:46:03 -070095 if (args.flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden;
96 if (args.flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque;
97 if (args.flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure;
chaviwc5676c62020-09-18 15:01:04 -070098 if (args.flags & ISurfaceComposerClient::eSkipScreenshot)
99 layerFlags |= layer_state_t::eLayerSkipScreenshot;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700100
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800101 mCurrentState.active_legacy.w = args.w;
102 mCurrentState.active_legacy.h = args.h;
103 mCurrentState.flags = layerFlags;
104 mCurrentState.active_legacy.transform.set(0, 0);
chaviw25714502021-02-11 10:01:08 -0800105 mCurrentState.crop.makeInvalid();
106 mCurrentState.requestedCrop = mCurrentState.crop;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800107 mCurrentState.z = 0;
108 mCurrentState.color.a = 1.0f;
109 mCurrentState.layerStack = 0;
110 mCurrentState.sequence = 0;
111 mCurrentState.requested_legacy = mCurrentState.active_legacy;
chaviw766c9c52021-02-10 17:36:47 -0800112 mCurrentState.width = UINT32_MAX;
113 mCurrentState.height = UINT32_MAX;
114 mCurrentState.transform.set(0, 0);
Valerie Hau134651a2020-01-28 16:21:22 -0800115 mCurrentState.frameNumber = 0;
chaviw766c9c52021-02-10 17:36:47 -0800116 mCurrentState.bufferTransform = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800117 mCurrentState.transformToDisplayInverse = false;
118 mCurrentState.crop.makeInvalid();
Ady Abraham6c1b7ac2021-03-31 16:56:03 -0700119 mCurrentState.acquireFence = sp<Fence>::make(-1);
120 mCurrentState.acquireFenceTime = std::make_shared<FenceTime>(mCurrentState.acquireFence);
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800121 mCurrentState.dataspace = ui::Dataspace::UNKNOWN;
122 mCurrentState.hdrMetadata.validTypes = 0;
Marissa Wall7e0a01f2019-08-14 14:29:25 -0700123 mCurrentState.surfaceDamageRegion = Region::INVALID_REGION;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800124 mCurrentState.cornerRadius = 0.0f;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -0800125 mCurrentState.backgroundBlurRadius = 0;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800126 mCurrentState.api = -1;
127 mCurrentState.hasColorTransform = false;
Peiyong Linc502cb72019-03-01 15:00:23 -0800128 mCurrentState.colorSpaceAgnostic = false;
Ana Krulecc84d09b2019-11-02 23:10:29 +0100129 mCurrentState.frameRateSelectionPriority = PRIORITY_UNSET;
Evan Roskya1f1e152019-01-24 16:17:46 -0800130 mCurrentState.metadata = args.metadata;
Vishnu Nairf37dcfb2019-11-16 07:37:09 -0800131 mCurrentState.shadowRadius = 0.f;
Ady Abraham60e42ea2020-03-09 19:17:31 -0700132 mCurrentState.treeHasFrameRateVote = false;
Vishnu Nair6213bd92020-05-08 17:42:25 -0700133 mCurrentState.fixedTransformHint = ui::Transform::ROT_INVALID;
Siarhei Vishniakoufc434ac2021-01-13 10:28:00 -1000134 mCurrentState.frameTimelineInfo = {};
Ady Abraham22c7b5c2020-09-22 19:33:40 -0700135 mCurrentState.postTime = -1;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700136
Vishnu Nairc43a23c2020-05-29 14:32:27 -0700137 if (args.flags & ISurfaceComposerClient::eNoColorFill) {
138 // Set an invalid color so there is no color fill.
139 mCurrentState.color.r = -1.0_hf;
140 mCurrentState.color.g = -1.0_hf;
141 mCurrentState.color.b = -1.0_hf;
142 }
143
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700144 // drawing state & current state are identical
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800145 mDrawingState = mCurrentState;
Jamie Gennis6547ff42013-07-16 20:12:42 -0700146
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800147 CompositorTiming compositorTiming;
Lloyd Pique42ab75e2018-09-12 20:46:03 -0700148 args.flinger->getCompositorTiming(&compositorTiming);
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800149 mFrameEventHistory.initializeCompositorTiming(compositorTiming);
Jorim Jaggibd6480f2018-08-10 14:37:31 +0200150 mFrameTracker.setDisplayRefreshPeriod(compositorTiming.interval);
Robert Carr2e102c92018-10-23 12:11:15 -0700151
Vishnu Nair0f085c62019-08-30 08:49:12 -0700152 mCallingPid = args.callingPid;
153 mCallingUid = args.callingUid;
chaviw250bcbb2020-08-05 11:17:54 -0700154
155 if (mCallingUid == AID_GRAPHICS || mCallingUid == AID_SYSTEM) {
156 // If the system didn't send an ownerUid, use the callingUid for the ownerUid.
157 mOwnerUid = args.metadata.getInt32(METADATA_OWNER_UID, mCallingUid);
Adithya Srinivasan9febda82020-10-19 10:49:41 -0700158 mOwnerPid = args.metadata.getInt32(METADATA_OWNER_PID, mCallingPid);
chaviw250bcbb2020-08-05 11:17:54 -0700159 } else {
160 // A create layer request from a non system request cannot specify the owner uid
161 mOwnerUid = mCallingUid;
Adithya Srinivasan9febda82020-10-19 10:49:41 -0700162 mOwnerPid = mCallingPid;
chaviw250bcbb2020-08-05 11:17:54 -0700163 }
Dominik Laskowski75848362019-11-11 17:57:20 -0800164}
165
166void Layer::onFirstRef() {
167 mFlinger->onLayerFirstRef(this);
Dan Stoza436ccf32018-06-21 12:10:12 -0700168}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700169
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700170Layer::~Layer() {
David Sodman577c8962017-12-08 14:50:53 -0800171 sp<Client> c(mClientRef.promote());
172 if (c != 0) {
173 c->detachLayer(this);
174 }
175
Jorim Jaggi10c985e2018-10-23 11:17:45 +0000176 mFrameTracker.logAndResetStats(mName);
chaviw74d90ad2019-04-26 14:45:26 -0700177 mFlinger->onLayerDestroyed(this);
Mathias Agopian96f08192010-06-02 23:28:45 -0700178}
179
Dominik Laskowskib7251f42020-04-20 17:42:59 -0700180LayerCreationArgs::LayerCreationArgs(SurfaceFlinger* flinger, sp<Client> client, std::string name,
181 uint32_t w, uint32_t h, uint32_t flags, LayerMetadata metadata)
Vishnu Nair0f085c62019-08-30 08:49:12 -0700182 : flinger(flinger),
Dominik Laskowskib7251f42020-04-20 17:42:59 -0700183 client(std::move(client)),
Dominik Laskowski87a07e42019-10-10 20:38:02 -0700184 name(std::move(name)),
Vishnu Nair0f085c62019-08-30 08:49:12 -0700185 w(w),
186 h(h),
187 flags(flags),
188 metadata(std::move(metadata)) {
189 IPCThreadState* ipc = IPCThreadState::self();
190 callingPid = ipc->getCallingPid();
191 callingUid = ipc->getCallingUid();
192}
193
Mathias Agopian13127d82013-03-05 17:47:11 -0800194// ---------------------------------------------------------------------------
195// callbacks
196// ---------------------------------------------------------------------------
197
David Sodmaneb085e02017-10-05 18:49:04 -0700198/*
199 * onLayerDisplayed is only meaningful for BufferLayer, but, is called through
200 * Layer. So, the implementation is done in BufferLayer. When called on a
Vishnu Nairfa247b12020-02-11 08:58:26 -0800201 * EffectLayer object, it's essentially a NOP.
David Sodmaneb085e02017-10-05 18:49:04 -0700202 */
David Sodmaneb085e02017-10-05 18:49:04 -0700203void Layer::onLayerDisplayed(const sp<Fence>& /*releaseFence*/) {}
Mathias Agopian13127d82013-03-05 17:47:11 -0800204
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700205void Layer::removeRelativeZ(const std::vector<Layer*>& layersInTree) {
206 if (mCurrentState.zOrderRelativeOf == nullptr) {
207 return;
208 }
Robert Carr2e102c92018-10-23 12:11:15 -0700209
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700210 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
211 if (strongRelative == nullptr) {
212 setZOrderRelativeOf(nullptr);
213 return;
214 }
215
216 if (!std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
217 strongRelative->removeZOrderRelative(this);
218 mFlinger->setTransactionFlags(eTraversalNeeded);
chaviw606e5cf2019-03-01 10:12:10 -0800219 setZOrderRelativeOf(nullptr);
Robert Carr5edb1ad2017-04-25 10:54:24 -0700220 }
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700221}
222
223void Layer::removeFromCurrentState() {
224 mRemovedFromCurrentState = true;
Rob Carr4bba3702018-10-08 21:53:30 +0000225
Robert Carr6fb1a7e2018-12-11 12:07:25 -0800226 mFlinger->markLayerPendingRemovalLocked(this);
Chia-I Wuc6657022017-08-15 11:18:17 -0700227}
Chia-I Wu38512252017-05-17 14:36:16 -0700228
chaviw68d4dab2020-06-08 15:07:32 -0700229sp<Layer> Layer::getRootLayer() {
230 sp<Layer> parent = getParent();
231 if (parent == nullptr) {
232 return this;
233 }
234 return parent->getRootLayer();
235}
236
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700237void Layer::onRemovedFromCurrentState() {
chaviw68d4dab2020-06-08 15:07:32 -0700238 // Use the root layer since we want to maintain the hierarchy for the entire subtree.
239 auto layersInTree = getRootLayer()->getLayersInTree(LayerVector::StateSet::Current);
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700240 std::sort(layersInTree.begin(), layersInTree.end());
chaviw68d4dab2020-06-08 15:07:32 -0700241
242 traverse(LayerVector::StateSet::Current, [&](Layer* layer) {
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700243 layer->removeFromCurrentState();
244 layer->removeRelativeZ(layersInTree);
chaviw68d4dab2020-06-08 15:07:32 -0700245 });
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700246}
247
chaviw61626f22018-11-15 16:26:27 -0800248void Layer::addToCurrentState() {
249 mRemovedFromCurrentState = false;
250
251 for (const auto& child : mCurrentChildren) {
252 child->addToCurrentState();
253 }
254}
255
Mathias Agopian13127d82013-03-05 17:47:11 -0800256// ---------------------------------------------------------------------------
257// set-up
258// ---------------------------------------------------------------------------
259
chaviw13fdc492017-06-27 12:40:18 -0700260bool Layer::getPremultipledAlpha() const {
261 return mPremultipliedAlpha;
262}
263
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700264sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800265 Mutex::Autolock _l(mLock);
Robert Carrc0df3122019-04-11 13:18:21 -0700266 if (mGetHandleCalled) {
267 ALOGE("Get handle called twice" );
268 return nullptr;
269 }
270 mGetHandleCalled = true;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700271 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800272}
273
274// ---------------------------------------------------------------------------
275// h/w composer set-up
276// ---------------------------------------------------------------------------
277
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700278static Rect reduce(const Rect& win, const Region& exclude) {
279 if (CC_LIKELY(exclude.isEmpty())) {
280 return win;
281 }
282 if (exclude.isRect()) {
283 return win.reduce(exclude.getBounds());
284 }
285 return Region(win).subtract(exclude).getBounds();
286}
287
Dan Stoza80d61162017-12-20 15:57:52 -0800288static FloatRect reduce(const FloatRect& win, const Region& exclude) {
289 if (CC_LIKELY(exclude.isEmpty())) {
290 return win;
291 }
292 // Convert through Rect (by rounding) for lack of FloatRegion
293 return Region(Rect{win}).subtract(exclude).getBounds().toFloatRect();
294}
295
Vishnu Nair4351ad52019-02-11 14:13:02 -0800296Rect Layer::getScreenBounds(bool reduceTransparentRegion) const {
Vishnu Nairf0c28512019-02-08 12:40:28 -0800297 if (!reduceTransparentRegion) {
298 return Rect{mScreenBounds};
299 }
300
301 FloatRect bounds = getBounds();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800302 ui::Transform t = getTransform();
Vishnu Nair60356342018-11-13 13:00:45 -0800303 // Transform to screen space.
304 bounds = t.transform(bounds);
305 return Rect{bounds};
Robert Carr1f0a16a2016-10-24 16:27:39 -0700306}
307
Vishnu Nair4351ad52019-02-11 14:13:02 -0800308FloatRect Layer::getBounds() const {
Alec Mourib416efd2018-09-06 21:01:59 +0000309 const State& s(getDrawingState());
Vishnu Nair4351ad52019-02-11 14:13:02 -0800310 return getBounds(getActiveTransparentRegion(s));
Michael Lentine6c925ed2014-09-26 17:55:01 -0700311}
312
Vishnu Nairf0c28512019-02-08 12:40:28 -0800313FloatRect Layer::getBounds(const Region& activeTransparentRegion) const {
314 // Subtract the transparent region and snap to the bounds.
315 return reduce(mBounds, activeTransparentRegion);
316}
317
Vishnu Nairc652ff82019-03-15 12:48:54 -0700318ui::Transform Layer::getBufferScaleTransform() const {
Vishnu Nair4351ad52019-02-11 14:13:02 -0800319 // If the layer is not using NATIVE_WINDOW_SCALING_MODE_FREEZE (e.g.
320 // it isFixedSize) then there may be additional scaling not accounted
Vishnu Nairc652ff82019-03-15 12:48:54 -0700321 // for in the layer transform.
chaviwd62d3062019-09-04 14:48:02 -0700322 if (!isFixedSize() || getBuffer() == nullptr) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700323 return {};
Vishnu Nair4351ad52019-02-11 14:13:02 -0800324 }
325
Marissa Wall290ad082019-03-06 13:23:47 -0800326 // If the layer is a buffer state layer, the active width and height
327 // could be infinite. In that case, return the effective transform.
328 const uint32_t activeWidth = getActiveWidth(getDrawingState());
329 const uint32_t activeHeight = getActiveHeight(getDrawingState());
330 if (activeWidth >= UINT32_MAX && activeHeight >= UINT32_MAX) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700331 return {};
Marissa Wall290ad082019-03-06 13:23:47 -0800332 }
333
chaviwd62d3062019-09-04 14:48:02 -0700334 int bufferWidth = getBuffer()->getWidth();
335 int bufferHeight = getBuffer()->getHeight();
Vishnu Nairc652ff82019-03-15 12:48:54 -0700336
chaviw4244e032019-09-04 11:27:49 -0700337 if (getBufferTransform() & NATIVE_WINDOW_TRANSFORM_ROT_90) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700338 std::swap(bufferWidth, bufferHeight);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800339 }
Vishnu Nairc652ff82019-03-15 12:48:54 -0700340
Marissa Wall290ad082019-03-06 13:23:47 -0800341 float sx = activeWidth / static_cast<float>(bufferWidth);
342 float sy = activeHeight / static_cast<float>(bufferHeight);
343
Vishnu Nair4351ad52019-02-11 14:13:02 -0800344 ui::Transform extraParentScaling;
345 extraParentScaling.set(sx, 0, 0, sy);
Vishnu Nairc652ff82019-03-15 12:48:54 -0700346 return extraParentScaling;
347}
348
349ui::Transform Layer::getTransformWithScale(const ui::Transform& bufferScaleTransform) const {
350 // We need to mirror this scaling to child surfaces or we will break the contract where WM can
351 // treat child surfaces as pixels in the parent surface.
chaviwd62d3062019-09-04 14:48:02 -0700352 if (!isFixedSize() || getBuffer() == nullptr) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700353 return mEffectiveTransform;
354 }
355 return mEffectiveTransform * bufferScaleTransform;
356}
357
358FloatRect Layer::getBoundsPreScaling(const ui::Transform& bufferScaleTransform) const {
359 // We need the pre scaled layer bounds when computing child bounds to make sure the child is
360 // cropped to its parent layer after any buffer transform scaling is applied.
chaviwd62d3062019-09-04 14:48:02 -0700361 if (!isFixedSize() || getBuffer() == nullptr) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700362 return mBounds;
363 }
364 return bufferScaleTransform.inverse().transform(mBounds);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800365}
366
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700367void Layer::computeBounds(FloatRect parentBounds, ui::Transform parentTransform,
368 float parentShadowRadius) {
Vishnu Nair4351ad52019-02-11 14:13:02 -0800369 const State& s(getDrawingState());
370
371 // Calculate effective layer transform
372 mEffectiveTransform = parentTransform * getActiveTransform(s);
373
374 // Transform parent bounds to layer space
375 parentBounds = getActiveTransform(s).inverse().transform(parentBounds);
376
Vishnu Nairc652ff82019-03-15 12:48:54 -0700377 // Calculate source bounds
Vishnu Nair4351ad52019-02-11 14:13:02 -0800378 mSourceBounds = computeSourceBounds(parentBounds);
379
380 // Calculate bounds by croping diplay frame with layer crop and parent bounds
381 FloatRect bounds = mSourceBounds;
382 const Rect layerCrop = getCrop(s);
383 if (!layerCrop.isEmpty()) {
384 bounds = mSourceBounds.intersect(layerCrop.toFloatRect());
385 }
386 bounds = bounds.intersect(parentBounds);
387
388 mBounds = bounds;
389 mScreenBounds = mEffectiveTransform.transform(mBounds);
Vishnu Nairc652ff82019-03-15 12:48:54 -0700390
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700391 // Use the layer's own shadow radius if set. Otherwise get the radius from
392 // parent.
393 if (s.shadowRadius > 0.f) {
394 mEffectiveShadowRadius = s.shadowRadius;
395 } else {
396 mEffectiveShadowRadius = parentShadowRadius;
397 }
398
399 // Shadow radius is passed down to only one layer so if the layer can draw shadows,
400 // don't pass it to its children.
401 const float childShadowRadius = canDrawShadows() ? 0.f : mEffectiveShadowRadius;
402
Vishnu Nairc652ff82019-03-15 12:48:54 -0700403 // Add any buffer scaling to the layer's children.
404 ui::Transform bufferScaleTransform = getBufferScaleTransform();
Vishnu Nair4351ad52019-02-11 14:13:02 -0800405 for (const sp<Layer>& child : mDrawingChildren) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700406 child->computeBounds(getBoundsPreScaling(bufferScaleTransform),
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700407 getTransformWithScale(bufferScaleTransform), childShadowRadius);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800408 }
409}
410
Vishnu Nair60356342018-11-13 13:00:45 -0800411Rect Layer::getCroppedBufferSize(const State& s) const {
412 Rect size = getBufferSize(s);
413 Rect crop = getCrop(s);
414 if (!crop.isEmpty() && size.isValid()) {
415 size.intersect(crop, &size);
416 } else if (!crop.isEmpty()) {
417 size = crop;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700418 }
Vishnu Nair60356342018-11-13 13:00:45 -0800419 return size;
Mathias Agopian13127d82013-03-05 17:47:11 -0800420}
421
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700422void Layer::setupRoundedCornersCropCoordinates(Rect win,
423 const FloatRect& roundedCornersCrop) const {
424 // Translate win by the rounded corners rect coordinates, to have all values in
425 // layer coordinate space.
426 win.left -= roundedCornersCrop.left;
427 win.right -= roundedCornersCrop.left;
428 win.top -= roundedCornersCrop.top;
429 win.bottom -= roundedCornersCrop.top;
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700430}
431
Lloyd Piquede196652020-01-22 17:29:58 -0800432void Layer::prepareBasicGeometryCompositionState() {
Lloyd Piquec6687342019-03-07 21:34:57 -0800433 const auto& drawingState{getDrawingState()};
434 const uint32_t layerStack = getLayerStack();
435 const auto alpha = static_cast<float>(getAlpha());
436 const bool opaque = isOpaque(drawingState);
437 const bool usesRoundedCorners = getRoundedCornerState().radius != 0.f;
438
439 auto blendMode = Hwc2::IComposerClient::BlendMode::NONE;
440 if (!opaque || alpha != 1.0f) {
441 blendMode = mPremultipliedAlpha ? Hwc2::IComposerClient::BlendMode::PREMULTIPLIED
442 : Hwc2::IComposerClient::BlendMode::COVERAGE;
443 }
444
Lloyd Piquede196652020-01-22 17:29:58 -0800445 auto* compositionState = editCompositionState();
446 compositionState->layerStackId =
Lloyd Piquec6687342019-03-07 21:34:57 -0800447 (layerStack != ~0u) ? std::make_optional(layerStack) : std::nullopt;
Lloyd Piquede196652020-01-22 17:29:58 -0800448 compositionState->internalOnly = getPrimaryDisplayOnly();
449 compositionState->isVisible = isVisible();
450 compositionState->isOpaque = opaque && !usesRoundedCorners && alpha == 1.f;
451 compositionState->shadowRadius = mEffectiveShadowRadius;
Lloyd Piquec6687342019-03-07 21:34:57 -0800452
Lloyd Piquede196652020-01-22 17:29:58 -0800453 compositionState->contentDirty = contentDirty;
Lloyd Piquec6687342019-03-07 21:34:57 -0800454 contentDirty = false;
455
Lloyd Piquede196652020-01-22 17:29:58 -0800456 compositionState->geomLayerBounds = mBounds;
457 compositionState->geomLayerTransform = getTransform();
458 compositionState->geomInverseLayerTransform = compositionState->geomLayerTransform.inverse();
459 compositionState->transparentRegionHint = getActiveTransparentRegion(drawingState);
Lloyd Piquec6687342019-03-07 21:34:57 -0800460
Lloyd Piquede196652020-01-22 17:29:58 -0800461 compositionState->blendMode = static_cast<Hwc2::IComposerClient::BlendMode>(blendMode);
462 compositionState->alpha = alpha;
463 compositionState->backgroundBlurRadius = drawingState.backgroundBlurRadius;
Lucas Dupinc3800b82020-10-02 16:24:48 -0700464 compositionState->blurRegions = drawingState.blurRegions;
John Reckc00c6692021-02-16 11:37:33 -0500465 compositionState->stretchEffect = getStretchEffect();
Lloyd Piquec6687342019-03-07 21:34:57 -0800466}
467
Lloyd Piquede196652020-01-22 17:29:58 -0800468void Layer::prepareGeometryCompositionState() {
Lloyd Piquea83776c2019-01-29 18:42:32 -0800469 const auto& drawingState{getDrawingState()};
Mathias Agopian13127d82013-03-05 17:47:11 -0800470
Lloyd Piquea83776c2019-01-29 18:42:32 -0800471 int type = drawingState.metadata.getInt32(METADATA_WINDOW_TYPE, 0);
472 int appId = drawingState.metadata.getInt32(METADATA_OWNER_UID, 0);
Chia-I Wue41dbe62017-06-13 14:10:56 -0700473 sp<Layer> parent = mDrawingParent.promote();
Albert Chaulk2a589632017-05-04 16:59:44 -0400474 if (parent.get()) {
475 auto& parentState = parent->getDrawingState();
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800476 const int parentType = parentState.metadata.getInt32(METADATA_WINDOW_TYPE, 0);
477 const int parentAppId = parentState.metadata.getInt32(METADATA_OWNER_UID, 0);
Jiwen 'Steve' Cai736c74e2019-05-28 18:33:22 -0700478 if (parentType > 0 && parentAppId > 0) {
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800479 type = parentType;
480 appId = parentAppId;
rongliucfb187b2018-03-14 12:26:23 -0700481 }
Albert Chaulk2a589632017-05-04 16:59:44 -0400482 }
483
Lloyd Piquede196652020-01-22 17:29:58 -0800484 auto* compositionState = editCompositionState();
David Sodman15094112018-10-11 09:39:37 -0700485
Lloyd Piquede196652020-01-22 17:29:58 -0800486 compositionState->geomBufferSize = getBufferSize(drawingState);
487 compositionState->geomContentCrop = getBufferCrop();
488 compositionState->geomCrop = getCrop(drawingState);
489 compositionState->geomBufferTransform = getBufferTransform();
490 compositionState->geomBufferUsesDisplayInverseTransform = getTransformToDisplayInverse();
491 compositionState->geomUsesSourceCrop = usesSourceCrop();
492 compositionState->isSecure = isSecure();
493
Lloyd Pique8d9f8362020-02-11 19:13:09 -0800494 compositionState->metadata.clear();
495 const auto& supportedMetadata = mFlinger->getHwComposer().getSupportedLayerGenericMetadata();
496 for (const auto& [key, mandatory] : supportedMetadata) {
497 const auto& genericLayerMetadataCompatibilityMap =
498 mFlinger->getGenericLayerMetadataKeyMap();
499 auto compatIter = genericLayerMetadataCompatibilityMap.find(key);
500 if (compatIter == std::end(genericLayerMetadataCompatibilityMap)) {
501 continue;
502 }
503 const uint32_t id = compatIter->second;
504
505 auto it = drawingState.metadata.mMap.find(id);
506 if (it == std::end(drawingState.metadata.mMap)) {
507 continue;
508 }
509
510 compositionState->metadata
511 .emplace(key, compositionengine::GenericLayerMetadataEntry{mandatory, it->second});
512 }
Lloyd Piquea83776c2019-01-29 18:42:32 -0800513}
David Sodmanba340492018-08-05 21:51:33 -0700514
Lloyd Piquede196652020-01-22 17:29:58 -0800515void Layer::preparePerFrameCompositionState() {
Lloyd Pique688abd42019-02-15 15:42:24 -0800516 const auto& drawingState{getDrawingState()};
Lloyd Piquede196652020-01-22 17:29:58 -0800517 auto* compositionState = editCompositionState();
Lloyd Piquef5275482019-01-29 18:42:42 -0800518
Lloyd Piquede196652020-01-22 17:29:58 -0800519 compositionState->forceClientComposition = false;
520
521 compositionState->isColorspaceAgnostic = isColorSpaceAgnostic();
522 compositionState->dataspace = getDataSpace();
523 compositionState->colorTransform = getColorTransform();
524 compositionState->colorTransformIsIdentity = !hasColorTransform();
525 compositionState->surfaceDamage = surfaceDamageRegion;
526 compositionState->hasProtectedContent = isProtected();
Lloyd Pique688abd42019-02-15 15:42:24 -0800527
528 const bool usesRoundedCorners = getRoundedCornerState().radius != 0.f;
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700529
Lloyd Piquede196652020-01-22 17:29:58 -0800530 compositionState->isOpaque =
Lloyd Pique688abd42019-02-15 15:42:24 -0800531 isOpaque(drawingState) && !usesRoundedCorners && getAlpha() == 1.0_hf;
Lloyd Piquef5275482019-01-29 18:42:42 -0800532
533 // Force client composition for special cases known only to the front-end.
John Reckcdb4ed72021-02-04 13:39:33 -0500534 if (isHdrY410() || usesRoundedCorners || drawShadows() || drawingState.blurRegions.size() > 0 ||
John Reckc00c6692021-02-16 11:37:33 -0500535 compositionState->stretchEffect.hasEffect()) {
Lloyd Piquede196652020-01-22 17:29:58 -0800536 compositionState->forceClientComposition = true;
Lloyd Piquef5275482019-01-29 18:42:42 -0800537 }
538}
539
Lloyd Piquede196652020-01-22 17:29:58 -0800540void Layer::prepareCursorCompositionState() {
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800541 const State& drawingState{getDrawingState()};
Lloyd Piquede196652020-01-22 17:29:58 -0800542 auto* compositionState = editCompositionState();
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800543
544 // Apply the layer's transform, followed by the display's global transform
545 // Here we're guaranteed that the layer's transform preserves rects
546 Rect win = getCroppedBufferSize(drawingState);
547 // Subtract the transparent region and snap to the bounds
548 Rect bounds = reduce(win, getActiveTransparentRegion(drawingState));
549 Rect frame(getTransform().transform(bounds));
550
Lloyd Piquede196652020-01-22 17:29:58 -0800551 compositionState->cursorFrame = frame;
552}
553
554sp<compositionengine::LayerFE> Layer::asLayerFE() const {
555 return const_cast<compositionengine::LayerFE*>(
556 static_cast<const compositionengine::LayerFE*>(this));
557}
558
559sp<compositionengine::LayerFE> Layer::getCompositionEngineLayerFE() const {
560 return nullptr;
561}
562
563compositionengine::LayerFECompositionState* Layer::editCompositionState() {
564 return nullptr;
565}
566
567const compositionengine::LayerFECompositionState* Layer::getCompositionState() const {
568 return nullptr;
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800569}
570
Lloyd Piquef16688f2019-02-19 17:47:57 -0800571bool Layer::onPreComposition(nsecs_t) {
572 return false;
573}
574
Lloyd Piquede196652020-01-22 17:29:58 -0800575void Layer::prepareCompositionState(compositionengine::LayerFE::StateSubset subset) {
Lloyd Piquec6687342019-03-07 21:34:57 -0800576 using StateSubset = compositionengine::LayerFE::StateSubset;
Lloyd Piquef5275482019-01-29 18:42:42 -0800577
Lloyd Piquec6687342019-03-07 21:34:57 -0800578 switch (subset) {
579 case StateSubset::BasicGeometry:
Lloyd Piquede196652020-01-22 17:29:58 -0800580 prepareBasicGeometryCompositionState();
Lloyd Piquec6687342019-03-07 21:34:57 -0800581 break;
582
583 case StateSubset::GeometryAndContent:
Lloyd Piquede196652020-01-22 17:29:58 -0800584 prepareBasicGeometryCompositionState();
585 prepareGeometryCompositionState();
586 preparePerFrameCompositionState();
Lloyd Piquec6687342019-03-07 21:34:57 -0800587 break;
588
589 case StateSubset::Content:
Lloyd Piquede196652020-01-22 17:29:58 -0800590 preparePerFrameCompositionState();
591 break;
592
593 case StateSubset::Cursor:
594 prepareCursorCompositionState();
Lloyd Piquec6687342019-03-07 21:34:57 -0800595 break;
596 }
Lloyd Piquea83776c2019-01-29 18:42:32 -0800597}
Mathias Agopian29a367b2011-07-12 14:51:45 -0700598
Lloyd Piquea83776c2019-01-29 18:42:32 -0800599const char* Layer::getDebugName() const {
Dominik Laskowski87a07e42019-10-10 20:38:02 -0700600 return mName.c_str();
David Sodman4b7c4bc2017-11-17 12:13:59 -0800601}
602
Mathias Agopian13127d82013-03-05 17:47:11 -0800603// ---------------------------------------------------------------------------
604// drawing...
605// ---------------------------------------------------------------------------
606
Vishnu Nair9b079a22020-01-21 14:36:08 -0800607std::optional<compositionengine::LayerFE::LayerSettings> Layer::prepareClientComposition(
Galia Peycheva66eaf4a2020-11-09 13:17:57 +0100608 compositionengine::LayerFE::ClientCompositionTargetSettings& targetSettings) {
Lloyd Piquede196652020-01-22 17:29:58 -0800609 if (!getCompositionState()) {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800610 return {};
611 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800612
Vishnu Nair4351ad52019-02-11 14:13:02 -0800613 FloatRect bounds = getBounds();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000614 half alpha = getAlpha();
Vishnu Nair9b079a22020-01-21 14:36:08 -0800615
616 compositionengine::LayerFE::LayerSettings layerSettings;
Lloyd Piquef16688f2019-02-19 17:47:57 -0800617 layerSettings.geometry.boundaries = bounds;
chaviwc6ad8af2020-08-03 11:33:30 -0700618 layerSettings.geometry.positionTransform = getTransform().asMatrix4();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000619
620 if (hasColorTransform()) {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800621 layerSettings.colorTransform = getColorTransform();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000622 }
623
624 const auto roundedCornerState = getRoundedCornerState();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800625 layerSettings.geometry.roundedCornersRadius = roundedCornerState.radius;
626 layerSettings.geometry.roundedCornersCrop = roundedCornerState.cropRect;
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000627
Lloyd Piquef16688f2019-02-19 17:47:57 -0800628 layerSettings.alpha = alpha;
chaviw4244e032019-09-04 11:27:49 -0700629 layerSettings.sourceDataspace = getDataSpace();
Galia Peycheva66eaf4a2020-11-09 13:17:57 +0100630 if (!targetSettings.disableBlurs) {
631 layerSettings.backgroundBlurRadius = getBackgroundBlurRadius();
632 layerSettings.blurRegions = getBlurRegions();
633 }
John Reckcdb4ed72021-02-04 13:39:33 -0500634 layerSettings.stretchEffect = getDrawingState().stretchEffect;
Ana Krulec6eab17a2020-12-09 15:52:36 -0800635 // Record the name of the layer for debugging further down the stack.
636 layerSettings.name = getName();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800637 return layerSettings;
Mathias Agopian13127d82013-03-05 17:47:11 -0800638}
639
Vishnu Nair9b079a22020-01-21 14:36:08 -0800640std::optional<compositionengine::LayerFE::LayerSettings> Layer::prepareShadowClientComposition(
Marin Shalamanov6ad317c2020-07-29 23:34:07 +0200641 const LayerFE::LayerSettings& casterLayerSettings, const Rect& layerStackRect,
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800642 ui::Dataspace outputDataspace) {
Marin Shalamanov6ad317c2020-07-29 23:34:07 +0200643 renderengine::ShadowSettings shadow = getShadowSettings(layerStackRect);
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800644 if (shadow.length <= 0.f) {
645 return {};
646 }
647
648 const float casterAlpha = casterLayerSettings.alpha;
649 const bool casterIsOpaque = ((casterLayerSettings.source.buffer.buffer != nullptr) &&
650 casterLayerSettings.source.buffer.isOpaque);
651
Vishnu Nair9b079a22020-01-21 14:36:08 -0800652 compositionengine::LayerFE::LayerSettings shadowLayer = casterLayerSettings;
653
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800654 shadowLayer.shadow = shadow;
Vishnu Naira483b4a2019-12-12 15:07:52 -0800655 shadowLayer.geometry.boundaries = mBounds; // ignore transparent region
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800656
657 // If the casting layer is translucent, we need to fill in the shadow underneath the layer.
658 // Otherwise the generated shadow will only be shown around the casting layer.
659 shadowLayer.shadow.casterIsTranslucent = !casterIsOpaque || (casterAlpha < 1.0f);
660 shadowLayer.shadow.ambientColor *= casterAlpha;
661 shadowLayer.shadow.spotColor *= casterAlpha;
662 shadowLayer.sourceDataspace = outputDataspace;
663 shadowLayer.source.buffer.buffer = nullptr;
Vishnu Nair9b079a22020-01-21 14:36:08 -0800664 shadowLayer.source.buffer.fence = nullptr;
665 shadowLayer.frameNumber = 0;
666 shadowLayer.bufferId = 0;
Alec Mouribd17b3b2020-12-17 11:08:30 -0800667 shadowLayer.name = getName();
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800668
669 if (shadowLayer.shadow.ambientColor.a <= 0.f && shadowLayer.shadow.spotColor.a <= 0.f) {
670 return {};
671 }
672
673 float casterCornerRadius = shadowLayer.geometry.roundedCornersRadius;
Vishnu Nair9b079a22020-01-21 14:36:08 -0800674 const FloatRect& cornerRadiusCropRect = shadowLayer.geometry.roundedCornersCrop;
Vishnu Nair3a7346c2019-12-04 08:09:09 -0800675 const FloatRect& casterRect = shadowLayer.geometry.boundaries;
676
677 // crop used to set the corner radius may be larger than the content rect. Adjust the corner
678 // radius accordingly.
679 if (casterCornerRadius > 0.f) {
680 float cropRectOffset = std::max(std::abs(cornerRadiusCropRect.top - casterRect.top),
681 std::abs(cornerRadiusCropRect.left - casterRect.left));
682 if (cropRectOffset > casterCornerRadius) {
683 casterCornerRadius = 0;
684 } else {
685 casterCornerRadius -= cropRectOffset;
686 }
687 shadowLayer.geometry.roundedCornersRadius = casterCornerRadius;
688 }
689
690 return shadowLayer;
691}
692
Vishnu Nairb87d94f2020-02-13 09:17:36 -0800693void Layer::prepareClearClientComposition(LayerFE::LayerSettings& layerSettings,
694 bool blackout) const {
695 layerSettings.source.buffer.buffer = nullptr;
696 layerSettings.source.solidColor = half3(0.0, 0.0, 0.0);
697 layerSettings.disableBlending = true;
Vishnu Nair3b653e72020-02-24 16:40:50 -0800698 layerSettings.bufferId = 0;
Vishnu Nairb87d94f2020-02-13 09:17:36 -0800699 layerSettings.frameNumber = 0;
700
701 // If layer is blacked out, force alpha to 1 so that we draw a black color layer.
702 layerSettings.alpha = blackout ? 1.0f : 0.0f;
Alec Mouribd17b3b2020-12-17 11:08:30 -0800703 layerSettings.name = getName();
Vishnu Nairb87d94f2020-02-13 09:17:36 -0800704}
705
706std::vector<compositionengine::LayerFE::LayerSettings> Layer::prepareClientCompositionList(
707 compositionengine::LayerFE::ClientCompositionTargetSettings& targetSettings) {
708 std::optional<compositionengine::LayerFE::LayerSettings> layerSettings =
709 prepareClientComposition(targetSettings);
710 // Nothing to render.
711 if (!layerSettings) {
712 return {};
713 }
714
715 // HWC requests to clear this layer.
716 if (targetSettings.clearContent) {
717 prepareClearClientComposition(*layerSettings, false /* blackout */);
718 return {*layerSettings};
719 }
720
721 std::optional<compositionengine::LayerFE::LayerSettings> shadowSettings =
722 prepareShadowClientComposition(*layerSettings, targetSettings.viewport,
723 targetSettings.dataspace);
724 // There are no shadows to render.
725 if (!shadowSettings) {
726 return {*layerSettings};
727 }
728
729 // If the layer casts a shadow but the content casting the shadow is occluded, skip
730 // composing the non-shadow content and only draw the shadows.
731 if (targetSettings.realContentIsVisible) {
732 return {*shadowSettings, *layerSettings};
733 }
734
735 return {*shadowSettings};
736}
737
Dominik Laskowskib7251f42020-04-20 17:42:59 -0700738Hwc2::IComposerClient::Composition Layer::getCompositionType(const DisplayDevice& display) const {
739 const auto outputLayer = findOutputLayerForDisplay(&display);
Alec Mouri6b9e9912020-01-21 10:50:24 -0800740 if (outputLayer == nullptr) {
741 return Hwc2::IComposerClient::Composition::INVALID;
742 }
743 if (outputLayer->getState().hwc) {
744 return (*outputLayer->getState().hwc).hwcCompositionType;
745 } else {
746 return Hwc2::IComposerClient::Composition::CLIENT;
747 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800748}
749
Mathias Agopian13127d82013-03-05 17:47:11 -0800750// ----------------------------------------------------------------------------
751// local state
752// ----------------------------------------------------------------------------
753
David Sodman41fdfc92017-11-06 16:09:56 -0800754bool Layer::isSecure() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800755 const State& s(mDrawingState);
Garfield Tande619fa2020-10-02 17:13:53 -0700756 if (s.flags & layer_state_t::eLayerSecure) {
757 return true;
758 }
759
760 const auto p = mDrawingParent.promote();
761 return (p != nullptr) ? p->isSecure() : false;
Dan Stoza23116082015-06-18 14:58:39 -0700762}
763
Mathias Agopian13127d82013-03-05 17:47:11 -0800764// ----------------------------------------------------------------------------
765// transaction
766// ----------------------------------------------------------------------------
Ady Abraham83729882018-12-07 12:26:48 -0800767
Marissa Wall61c58622018-07-18 10:12:20 -0700768uint32_t Layer::doTransactionResize(uint32_t flags, State* stateToCommit) {
Alec Mourib416efd2018-09-06 21:01:59 +0000769 const State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800770
Marissa Wall61c58622018-07-18 10:12:20 -0700771 const bool sizeChanged = (stateToCommit->requested_legacy.w != s.requested_legacy.w) ||
772 (stateToCommit->requested_legacy.h != s.requested_legacy.h);
Mathias Agopiana138f892010-05-21 17:24:35 -0700773
David Sodmaneb085e02017-10-05 18:49:04 -0700774 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700775 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +0000776 ALOGD_IF(DEBUG_RESIZE,
David Sodman41fdfc92017-11-06 16:09:56 -0800777 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
778 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
779 " requested={ wh={%4u,%4u} }}\n"
780 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
781 " requested={ wh={%4u,%4u} }}\n",
Dominik Laskowski87a07e42019-10-10 20:38:02 -0700782 this, getName().c_str(), getBufferTransform(), getEffectiveScalingMode(),
Marissa Wall61c58622018-07-18 10:12:20 -0700783 stateToCommit->active_legacy.w, stateToCommit->active_legacy.h,
chaviw25714502021-02-11 10:01:08 -0800784 stateToCommit->crop.left, stateToCommit->crop.top, stateToCommit->crop.right,
785 stateToCommit->crop.bottom, stateToCommit->crop.getWidth(),
786 stateToCommit->crop.getHeight(), stateToCommit->requested_legacy.w,
787 stateToCommit->requested_legacy.h, s.active_legacy.w, s.active_legacy.h,
788 s.crop.left, s.crop.top, s.crop.right, s.crop.bottom, s.crop.getWidth(),
789 s.crop.getHeight(), s.requested_legacy.w, s.requested_legacy.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800790 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700791
Robert Carre392b552017-09-19 12:16:05 -0700792 // Don't let Layer::doTransaction update the drawing state
793 // if we have a pending resize, unless we are in fixed-size mode.
794 // the drawing state will be updated only once we receive a buffer
795 // with the correct size.
796 //
797 // In particular, we want to make sure the clip (which is part
798 // of the geometry state) is latched together with the size but is
799 // latched immediately when no resizing is involved.
800 //
801 // If a sideband stream is attached, however, we want to skip this
802 // optimization so that transactions aren't missed when a buffer
803 // never arrives
804 //
805 // In the case that we don't have a buffer we ignore other factors
806 // and avoid entering the resizePending state. At a high level the
807 // resizePending state is to avoid applying the state of the new buffer
808 // to the old buffer. However in the state where we don't have an old buffer
809 // there is no such concern but we may still be being used as a parent layer.
Marissa Wall61c58622018-07-18 10:12:20 -0700810 const bool resizePending =
811 ((stateToCommit->requested_legacy.w != stateToCommit->active_legacy.w) ||
812 (stateToCommit->requested_legacy.h != stateToCommit->active_legacy.h)) &&
chaviwd62d3062019-09-04 14:48:02 -0700813 (getBuffer() != nullptr);
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700814 if (!isFixedSize()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -0800815 if (resizePending && mSidebandStream == nullptr) {
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700816 flags |= eDontUpdateGeometryState;
817 }
818 }
819
Robert Carr7bf247e2017-05-18 14:02:49 -0700820 // Here we apply various requested geometry states, depending on our
821 // latching configuration. See Layer.h for a detailed discussion of
822 // how geometry latching is controlled.
823 if (!(flags & eDontUpdateGeometryState)) {
Alec Mourib416efd2018-09-06 21:01:59 +0000824 State& editCurrentState(getCurrentState());
Robert Carr7bf247e2017-05-18 14:02:49 -0700825
Robert Carr7bf247e2017-05-18 14:02:49 -0700826 // There is an awkward asymmetry in the handling of the crop states in the position
827 // states, as can be seen below. Largely this arises from position and transform
828 // being stored in the same data structure while having different latching rules.
829 // b/38182305
830 //
Marissa Wall61c58622018-07-18 10:12:20 -0700831 // Careful that "stateToCommit" and editCurrentState may not begin as equivalent due to
Robert Carr7bf247e2017-05-18 14:02:49 -0700832 // applyPendingStates in the presence of deferred transactions.
chaviw214c89d2019-09-04 16:03:53 -0700833 editCurrentState.active_legacy = editCurrentState.requested_legacy;
834 stateToCommit->active_legacy = stateToCommit->requested_legacy;
Mathias Agopian13127d82013-03-05 17:47:11 -0800835 }
836
Marissa Wall61c58622018-07-18 10:12:20 -0700837 return flags;
838}
839
840uint32_t Layer::doTransaction(uint32_t flags) {
841 ATRACE_CALL();
842
Robert Carr7f2ed8b2019-02-07 14:45:11 -0800843 if (mChildrenChanged) {
844 flags |= eVisibleRegion;
845 mChildrenChanged = false;
chaviw5aedec92018-10-22 10:40:38 -0700846 }
847
Robert Carr0758e5d2021-03-11 22:15:04 -0800848 // TODO: This is unfortunate.
849 mCurrentStateModified = mCurrentState.modified;
850 mCurrentState.modified = false;
Marissa Wall61c58622018-07-18 10:12:20 -0700851
Robert Carr0758e5d2021-03-11 22:15:04 -0800852 flags = doTransactionResize(flags, &mCurrentState);
Marissa Wall61c58622018-07-18 10:12:20 -0700853
Alec Mourib416efd2018-09-06 21:01:59 +0000854 const State& s(getDrawingState());
Robert Carr0758e5d2021-03-11 22:15:04 -0800855 State& c(getCurrentState());
Marissa Wall61c58622018-07-18 10:12:20 -0700856
857 if (getActiveGeometry(c) != getActiveGeometry(s)) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800858 // invalidate and recompute the visible regions if needed
859 flags |= Layer::eVisibleRegion;
860 }
861
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700862 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800863 // invalidate and recompute the visible regions if needed
864 flags |= eVisibleRegion;
865 this->contentDirty = true;
866
867 // we may use linear filtering, if the matrix scales us
Marin Shalamanov043ba292020-09-10 13:35:20 +0200868 mNeedsFiltering = getActiveTransform(c).needsBilinearFiltering();
Mathias Agopian13127d82013-03-05 17:47:11 -0800869 }
870
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800871 if (mCurrentState.inputInfoChanged) {
Robert Carr720e5062018-07-30 17:45:14 -0700872 flags |= eInputInfoChanged;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800873 mCurrentState.inputInfoChanged = false;
Robert Carr720e5062018-07-30 17:45:14 -0700874 }
875
chaviw47dbd692020-10-26 17:50:12 -0700876 // Add the callbacks from the drawing state into the current state. This is so when the current
877 // state gets copied to drawing, we don't lose the callback handles that are still in drawing.
878 for (auto& handle : s.callbackHandles) {
879 c.callbackHandles.push_back(handle);
880 }
881
Vishnu Nair1506b182021-02-22 14:35:15 -0800882 // Allow BufferStateLayer to release any unlatched buffers in drawing state.
Alec Mouria90a5702021-04-16 16:36:21 +0000883 bufferMayChange(c.buffer->getBuffer());
Vishnu Nair1506b182021-02-22 14:35:15 -0800884
Mathias Agopian13127d82013-03-05 17:47:11 -0800885 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -0700886 commitTransaction(c);
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800887 mCurrentState.callbackHandles = {};
Robert Carra1257842020-01-31 13:48:28 -0800888
Mathias Agopian13127d82013-03-05 17:47:11 -0800889 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800890}
891
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +0000892void Layer::commitTransaction(State& stateToCommit) {
Adithya Srinivasand11eb6b2021-03-09 18:46:28 +0000893 if (auto& bufferSurfaceFrame = mDrawingState.bufferSurfaceFrameTX;
Alec Mouria90a5702021-04-16 16:36:21 +0000894 ((mDrawingState.buffer && stateToCommit.buffer &&
895 mDrawingState.buffer->getBuffer() != stateToCommit.buffer->getBuffer()) ||
896 (mDrawingState.buffer && !stateToCommit.buffer) ||
897 (!mDrawingState.buffer && stateToCommit.buffer)) &&
898 bufferSurfaceFrame != nullptr &&
Adithya Srinivasand11eb6b2021-03-09 18:46:28 +0000899 bufferSurfaceFrame->getPresentState() != PresentState::Presented) {
900 // If the previous buffer was committed but not latched (refreshPending - happens during
901 // back to back invalidates), it gets silently dropped here. Mark the corresponding
902 // SurfaceFrame as dropped to prevent it from getting stuck in the pending classification
903 // list.
904 addSurfaceFrameDroppedForBuffer(bufferSurfaceFrame);
905 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800906 mDrawingState = stateToCommit;
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +0000907
908 // Set the present state for all bufferlessSurfaceFramesTX to Presented. The
909 // bufferSurfaceFrameTX will be presented in latchBuffer.
910 for (auto& [token, surfaceFrame] : mDrawingState.bufferlessSurfaceFramesTX) {
911 if (surfaceFrame->getPresentState() != PresentState::Presented) {
912 // With applyPendingStates, we could end up having presented surfaceframes from previous
913 // states
914 surfaceFrame->setPresentState(PresentState::Presented);
915 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
916 }
917 }
918 // Clear the surfaceFrames from the old state now that it has been copied into DrawingState.
919 stateToCommit.bufferSurfaceFrameTX.reset();
920 stateToCommit.bufferlessSurfaceFramesTX.clear();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700921}
922
Mathias Agopian13127d82013-03-05 17:47:11 -0800923uint32_t Layer::getTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800924 return mTransactionFlags.fetch_and(~flags) & flags;
Mathias Agopian13127d82013-03-05 17:47:11 -0800925}
926
927uint32_t Layer::setTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800928 return mTransactionFlags.fetch_or(flags);
Mathias Agopian13127d82013-03-05 17:47:11 -0800929}
930
chaviw214c89d2019-09-04 16:03:53 -0700931bool Layer::setPosition(float x, float y) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800932 if (mCurrentState.requested_legacy.transform.tx() == x &&
933 mCurrentState.requested_legacy.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -0800934 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800935 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -0700936
937 // We update the requested and active position simultaneously because
938 // we want to apply the position portion of the transform matrix immediately,
939 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800940 mCurrentState.requested_legacy.transform.set(x, y);
chaviw214c89d2019-09-04 16:03:53 -0700941 // Here we directly update the active state
942 // unlike other setters, because we store it within
943 // the transform, but use different latching rules.
944 // b/38182305
945 mCurrentState.active_legacy.transform.set(x, y);
Robert Carr69663fb2016-03-27 19:59:19 -0700946
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800947 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800948 setTransactionFlags(eTransactionNeeded);
949 return true;
950}
Robert Carr82364e32016-05-15 11:27:47 -0700951
Robert Carr1f0a16a2016-10-24 16:27:39 -0700952bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
953 ssize_t idx = mCurrentChildren.indexOf(childLayer);
954 if (idx < 0) {
955 return false;
956 }
957 if (childLayer->setLayer(z)) {
958 mCurrentChildren.removeAt(idx);
959 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800960 return true;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700961 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800962 return false;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700963}
964
Robert Carr503c7042017-09-27 15:06:08 -0700965bool Layer::setChildRelativeLayer(const sp<Layer>& childLayer,
966 const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
967 ssize_t idx = mCurrentChildren.indexOf(childLayer);
968 if (idx < 0) {
969 return false;
970 }
971 if (childLayer->setRelativeLayer(relativeToHandle, relativeZ)) {
972 mCurrentChildren.removeAt(idx);
973 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800974 return true;
Robert Carr503c7042017-09-27 15:06:08 -0700975 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800976 return false;
Robert Carr503c7042017-09-27 15:06:08 -0700977}
978
Robert Carrae060832016-11-28 10:51:00 -0800979bool Layer::setLayer(int32_t z) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800980 if (mCurrentState.z == z && !usingRelativeZ(LayerVector::StateSet::Current)) return false;
981 mCurrentState.sequence++;
982 mCurrentState.z = z;
983 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700984
985 // Discard all relative layering.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800986 if (mCurrentState.zOrderRelativeOf != nullptr) {
987 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
Robert Carrdb66e622017-04-10 16:55:57 -0700988 if (strongRelative != nullptr) {
989 strongRelative->removeZOrderRelative(this);
990 }
chaviw606e5cf2019-03-01 10:12:10 -0800991 setZOrderRelativeOf(nullptr);
Robert Carrdb66e622017-04-10 16:55:57 -0700992 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800993 setTransactionFlags(eTransactionNeeded);
994 return true;
995}
Robert Carr1f0a16a2016-10-24 16:27:39 -0700996
Robert Carrdb66e622017-04-10 16:55:57 -0700997void Layer::removeZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800998 mCurrentState.zOrderRelatives.remove(relative);
999 mCurrentState.sequence++;
1000 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -07001001 setTransactionFlags(eTransactionNeeded);
1002}
1003
1004void Layer::addZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001005 mCurrentState.zOrderRelatives.add(relative);
1006 mCurrentState.modified = true;
1007 mCurrentState.sequence++;
Robert Carrdb66e622017-04-10 16:55:57 -07001008 setTransactionFlags(eTransactionNeeded);
1009}
1010
chaviw606e5cf2019-03-01 10:12:10 -08001011void Layer::setZOrderRelativeOf(const wp<Layer>& relativeOf) {
1012 mCurrentState.zOrderRelativeOf = relativeOf;
1013 mCurrentState.sequence++;
1014 mCurrentState.modified = true;
chaviwbdb8b802019-10-14 09:17:12 -07001015 mCurrentState.isRelativeOf = relativeOf != nullptr;
1016
chaviw606e5cf2019-03-01 10:12:10 -08001017 setTransactionFlags(eTransactionNeeded);
1018}
1019
Robert Carr503d2bd2017-12-04 15:49:47 -08001020bool Layer::setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
Robert Carrdb66e622017-04-10 16:55:57 -07001021 sp<Handle> handle = static_cast<Handle*>(relativeToHandle.get());
1022 if (handle == nullptr) {
1023 return false;
1024 }
1025 sp<Layer> relative = handle->owner.promote();
1026 if (relative == nullptr) {
1027 return false;
1028 }
1029
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001030 if (mCurrentState.z == relativeZ && usingRelativeZ(LayerVector::StateSet::Current) &&
1031 mCurrentState.zOrderRelativeOf == relative) {
Robert Carr503d2bd2017-12-04 15:49:47 -08001032 return false;
1033 }
1034
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001035 mCurrentState.sequence++;
1036 mCurrentState.modified = true;
1037 mCurrentState.z = relativeZ;
Robert Carrdb66e622017-04-10 16:55:57 -07001038
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001039 auto oldZOrderRelativeOf = mCurrentState.zOrderRelativeOf.promote();
chaviw9ab4bd12017-11-03 13:11:00 -07001040 if (oldZOrderRelativeOf != nullptr) {
1041 oldZOrderRelativeOf->removeZOrderRelative(this);
1042 }
chaviw606e5cf2019-03-01 10:12:10 -08001043 setZOrderRelativeOf(relative);
Robert Carrdb66e622017-04-10 16:55:57 -07001044 relative->addZOrderRelative(this);
1045
1046 setTransactionFlags(eTransactionNeeded);
1047
1048 return true;
1049}
1050
Mathias Agopian13127d82013-03-05 17:47:11 -08001051bool Layer::setSize(uint32_t w, uint32_t h) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001052 if (mCurrentState.requested_legacy.w == w && mCurrentState.requested_legacy.h == h)
Marissa Wallf58c14b2018-07-24 10:50:43 -07001053 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001054 mCurrentState.requested_legacy.w = w;
1055 mCurrentState.requested_legacy.h = h;
1056 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001057 setTransactionFlags(eTransactionNeeded);
Vishnu Naird01c4432018-08-13 10:38:47 -07001058
1059 // record the new size, from this point on, when the client request
1060 // a buffer, it'll get the new size.
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001061 setDefaultBufferSize(mCurrentState.requested_legacy.w, mCurrentState.requested_legacy.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001062 return true;
1063}
Dan Stoza9e56aa02015-11-02 13:00:03 -08001064bool Layer::setAlpha(float alpha) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001065 if (mCurrentState.color.a == alpha) return false;
1066 mCurrentState.sequence++;
1067 mCurrentState.color.a = alpha;
1068 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001069 setTransactionFlags(eTransactionNeeded);
1070 return true;
1071}
chaviw13fdc492017-06-27 12:40:18 -07001072
Valerie Haudd0b7572019-01-29 14:59:27 -08001073bool Layer::setBackgroundColor(const half3& color, float alpha, ui::Dataspace dataspace) {
1074 if (!mCurrentState.bgColorLayer && alpha == 0) {
chaviw13fdc492017-06-27 12:40:18 -07001075 return false;
Valerie Hauaa194562019-02-05 16:21:38 -08001076 }
1077 mCurrentState.sequence++;
1078 mCurrentState.modified = true;
1079 setTransactionFlags(eTransactionNeeded);
1080
1081 if (!mCurrentState.bgColorLayer && alpha != 0) {
Valerie Haudd0b7572019-01-29 14:59:27 -08001082 // create background color layer if one does not yet exist
Vishnu Nairfa247b12020-02-11 08:58:26 -08001083 uint32_t flags = ISurfaceComposerClient::eFXSurfaceEffect;
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001084 std::string name = mName + "BackgroundColorLayer";
Vishnu Nairfa247b12020-02-11 08:58:26 -08001085 mCurrentState.bgColorLayer = mFlinger->getFactory().createEffectLayer(
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001086 LayerCreationArgs(mFlinger.get(), nullptr, std::move(name), 0, 0, flags,
1087 LayerMetadata()));
chaviw13fdc492017-06-27 12:40:18 -07001088
Valerie Haudd0b7572019-01-29 14:59:27 -08001089 // add to child list
1090 addChild(mCurrentState.bgColorLayer);
1091 mFlinger->mLayersAdded = true;
1092 // set up SF to handle added color layer
1093 if (isRemovedFromCurrentState()) {
1094 mCurrentState.bgColorLayer->onRemovedFromCurrentState();
1095 }
1096 mFlinger->setTransactionFlags(eTransactionNeeded);
1097 } else if (mCurrentState.bgColorLayer && alpha == 0) {
1098 mCurrentState.bgColorLayer->reparent(nullptr);
1099 mCurrentState.bgColorLayer = nullptr;
1100 return true;
1101 }
1102
1103 mCurrentState.bgColorLayer->setColor(color);
1104 mCurrentState.bgColorLayer->setLayer(std::numeric_limits<int32_t>::min());
1105 mCurrentState.bgColorLayer->setAlpha(alpha);
1106 mCurrentState.bgColorLayer->setDataspace(dataspace);
1107
chaviw13fdc492017-06-27 12:40:18 -07001108 return true;
1109}
1110
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001111bool Layer::setCornerRadius(float cornerRadius) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001112 if (mCurrentState.cornerRadius == cornerRadius) return false;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001113
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001114 mCurrentState.sequence++;
1115 mCurrentState.cornerRadius = cornerRadius;
1116 mCurrentState.modified = true;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001117 setTransactionFlags(eTransactionNeeded);
1118 return true;
1119}
1120
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08001121bool Layer::setBackgroundBlurRadius(int backgroundBlurRadius) {
1122 if (mCurrentState.backgroundBlurRadius == backgroundBlurRadius) return false;
1123
1124 mCurrentState.sequence++;
1125 mCurrentState.backgroundBlurRadius = backgroundBlurRadius;
1126 mCurrentState.modified = true;
1127 setTransactionFlags(eTransactionNeeded);
1128 return true;
1129}
1130
Robert Carrd4ae7f32018-06-07 16:10:57 -07001131bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix,
1132 bool allowNonRectPreservingTransforms) {
Peiyong Linefefaac2018-08-17 12:27:51 -07001133 ui::Transform t;
Robert Carrd4ae7f32018-06-07 16:10:57 -07001134 t.set(matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
1135
1136 if (!allowNonRectPreservingTransforms && !t.preserveRects()) {
Hongwei Wang46213ea2020-12-04 17:17:31 -08001137 ALOGW("Attempt to set rotation matrix without permission ACCESS_SURFACE_FLINGER nor "
1138 "ROTATE_SURFACE_FLINGER ignored");
Robert Carrd4ae7f32018-06-07 16:10:57 -07001139 return false;
1140 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001141 mCurrentState.sequence++;
1142 mCurrentState.requested_legacy.transform.set(matrix.dsdx, matrix.dtdy, matrix.dtdx,
1143 matrix.dsdy);
1144 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001145 setTransactionFlags(eTransactionNeeded);
1146 return true;
1147}
Marissa Wall61c58622018-07-18 10:12:20 -07001148
Mathias Agopian13127d82013-03-05 17:47:11 -08001149bool Layer::setTransparentRegionHint(const Region& transparent) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001150 mCurrentState.requestedTransparentRegion_legacy = transparent;
1151 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001152 setTransactionFlags(eTransactionNeeded);
1153 return true;
1154}
Ana Krulecc84d09b2019-11-02 23:10:29 +01001155
Lucas Dupinc3800b82020-10-02 16:24:48 -07001156bool Layer::setBlurRegions(const std::vector<BlurRegion>& blurRegions) {
1157 mCurrentState.sequence++;
1158 mCurrentState.blurRegions = blurRegions;
1159 mCurrentState.modified = true;
1160 setTransactionFlags(eTransactionNeeded);
1161 return true;
1162}
1163
Vishnu Nairf6eddb62021-01-27 22:02:11 -08001164bool Layer::setFlags(uint32_t flags, uint32_t mask) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001165 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1166 if (mCurrentState.flags == newFlags) return false;
1167 mCurrentState.sequence++;
1168 mCurrentState.flags = newFlags;
1169 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001170 setTransactionFlags(eTransactionNeeded);
1171 return true;
1172}
Robert Carr99e27f02016-06-16 15:18:02 -07001173
chaviw25714502021-02-11 10:01:08 -08001174bool Layer::setCrop(const Rect& crop) {
1175 if (mCurrentState.requestedCrop == crop) return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001176 mCurrentState.sequence++;
chaviw25714502021-02-11 10:01:08 -08001177 mCurrentState.requestedCrop = crop;
1178 mCurrentState.crop = crop;
Robert Carr7bf247e2017-05-18 14:02:49 -07001179
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001180 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001181 setTransactionFlags(eTransactionNeeded);
1182 return true;
1183}
Robert Carr8d5227b2017-03-16 15:41:03 -07001184
Evan Roskyef876c92019-01-25 17:46:06 -08001185bool Layer::setMetadata(const LayerMetadata& data) {
1186 if (!mCurrentState.metadata.merge(data, true /* eraseEmpty */)) return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001187 mCurrentState.modified = true;
David Sodman41fdfc92017-11-06 16:09:56 -08001188 setTransactionFlags(eTransactionNeeded);
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001189 return true;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001190}
1191
Mathias Agopian13127d82013-03-05 17:47:11 -08001192bool Layer::setLayerStack(uint32_t layerStack) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001193 if (mCurrentState.layerStack == layerStack) return false;
1194 mCurrentState.sequence++;
1195 mCurrentState.layerStack = layerStack;
1196 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001197 setTransactionFlags(eTransactionNeeded);
1198 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001199}
1200
Peiyong Linc502cb72019-03-01 15:00:23 -08001201bool Layer::setColorSpaceAgnostic(const bool agnostic) {
1202 if (mCurrentState.colorSpaceAgnostic == agnostic) {
1203 return false;
1204 }
1205 mCurrentState.sequence++;
1206 mCurrentState.colorSpaceAgnostic = agnostic;
1207 mCurrentState.modified = true;
1208 setTransactionFlags(eTransactionNeeded);
1209 return true;
1210}
1211
Ana Krulecc84d09b2019-11-02 23:10:29 +01001212bool Layer::setFrameRateSelectionPriority(int32_t priority) {
1213 if (mCurrentState.frameRateSelectionPriority == priority) return false;
1214 mCurrentState.frameRateSelectionPriority = priority;
1215 mCurrentState.sequence++;
1216 mCurrentState.modified = true;
1217 setTransactionFlags(eTransactionNeeded);
1218 return true;
1219}
1220
1221int32_t Layer::getFrameRateSelectionPriority() const {
1222 // Check if layer has priority set.
1223 if (mDrawingState.frameRateSelectionPriority != PRIORITY_UNSET) {
1224 return mDrawingState.frameRateSelectionPriority;
1225 }
1226 // If not, search whether its parents have it set.
1227 sp<Layer> parent = getParent();
1228 if (parent != nullptr) {
1229 return parent->getFrameRateSelectionPriority();
1230 }
1231
1232 return Layer::PRIORITY_UNSET;
1233}
1234
Ady Abrahamaae5ed52020-06-26 09:32:43 -07001235bool Layer::isLayerFocusedBasedOnPriority(int32_t priority) {
1236 return priority == PRIORITY_FOCUSED_WITH_MODE || priority == PRIORITY_FOCUSED_WITHOUT_MODE;
1237};
1238
Robert Carr1f0a16a2016-10-24 16:27:39 -07001239uint32_t Layer::getLayerStack() const {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001240 auto p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001241 if (p == nullptr) {
1242 return getDrawingState().layerStack;
1243 }
1244 return p->getLayerStack();
1245}
1246
Vishnu Nairc97b8db2019-10-29 18:19:35 -07001247bool Layer::setShadowRadius(float shadowRadius) {
1248 if (mCurrentState.shadowRadius == shadowRadius) {
1249 return false;
1250 }
1251
1252 mCurrentState.sequence++;
1253 mCurrentState.shadowRadius = shadowRadius;
1254 mCurrentState.modified = true;
1255 setTransactionFlags(eTransactionNeeded);
1256 return true;
1257}
1258
Vishnu Nair6213bd92020-05-08 17:42:25 -07001259bool Layer::setFixedTransformHint(ui::Transform::RotationFlags fixedTransformHint) {
1260 if (mCurrentState.fixedTransformHint == fixedTransformHint) {
1261 return false;
1262 }
1263
1264 mCurrentState.sequence++;
1265 mCurrentState.fixedTransformHint = fixedTransformHint;
1266 mCurrentState.modified = true;
1267 setTransactionFlags(eTransactionNeeded);
1268 return true;
1269}
1270
John Reckcdb4ed72021-02-04 13:39:33 -05001271bool Layer::setStretchEffect(const StretchEffect& effect) {
1272 StretchEffect temp = effect;
1273 temp.sanitize();
1274 if (mCurrentState.stretchEffect == temp) {
1275 return false;
1276 }
1277 mCurrentState.sequence++;
1278 mCurrentState.stretchEffect = temp;
1279 mCurrentState.modified = true;
1280 setTransactionFlags(eTransactionNeeded);
1281 return true;
1282}
1283
John Reckc00c6692021-02-16 11:37:33 -05001284StretchEffect Layer::getStretchEffect() const {
1285 if (mDrawingState.stretchEffect.hasEffect()) {
1286 return mDrawingState.stretchEffect;
1287 }
1288
1289 sp<Layer> parent = getParent();
1290 if (parent != nullptr) {
1291 auto effect = parent->getStretchEffect();
1292 if (effect.hasEffect()) {
1293 // TODO(b/179047472): Map it? Or do we make the effect be in global space?
1294 return effect;
1295 }
1296 }
1297 return StretchEffect{};
1298}
1299
Ady Abraham60e42ea2020-03-09 19:17:31 -07001300void Layer::updateTreeHasFrameRateVote() {
1301 const auto traverseTree = [&](const LayerVector::Visitor& visitor) {
1302 auto parent = getParent();
1303 while (parent) {
1304 visitor(parent.get());
1305 parent = parent->getParent();
1306 }
1307
1308 traverse(LayerVector::StateSet::Current, visitor);
1309 };
1310
1311 // update parents and children about the vote
Ady Abrahamf467f892020-07-31 16:01:53 -07001312 // First traverse the tree and count how many layers has votes. In addition
1313 // activate the layers in Scheduler's LayerHistory for it to check for changes
Ady Abraham60e42ea2020-03-09 19:17:31 -07001314 int layersWithVote = 0;
Ady Abraham44e9f3b2021-02-16 15:22:58 -08001315 traverseTree([&layersWithVote](Layer* layer) {
Marin Shalamanove8a663d2020-11-24 17:48:00 +01001316 const auto layerVotedWithDefaultCompatibility =
1317 layer->mCurrentState.frameRate.rate.isValid() &&
Ady Abraham414e8b52020-05-21 15:36:04 -07001318 layer->mCurrentState.frameRate.type == FrameRateCompatibility::Default;
1319 const auto layerVotedWithNoVote =
1320 layer->mCurrentState.frameRate.type == FrameRateCompatibility::NoVote;
Ady Abrahamdd5bfa92021-01-07 17:56:08 -08001321 const auto layerVotedWithExactCompatibility =
1322 layer->mCurrentState.frameRate.type == FrameRateCompatibility::Exact;
Ady Abraham414e8b52020-05-21 15:36:04 -07001323
1324 // We do not count layers that are ExactOrMultiple for the same reason
1325 // we are allowing touch boost for those layers. See
1326 // RefreshRateConfigs::getBestRefreshRate for more details.
Ady Abrahamdd5bfa92021-01-07 17:56:08 -08001327 if (layerVotedWithDefaultCompatibility || layerVotedWithNoVote ||
1328 layerVotedWithExactCompatibility) {
Ady Abraham60e42ea2020-03-09 19:17:31 -07001329 layersWithVote++;
1330 }
1331 });
1332
1333 // Now update the other layers
1334 bool transactionNeeded = false;
Ady Abraham44e9f3b2021-02-16 15:22:58 -08001335 traverseTree([layersWithVote, &transactionNeeded, this](Layer* layer) {
1336 const bool treeHasFrameRateVote = layersWithVote > 0;
1337 if (layer->mCurrentState.treeHasFrameRateVote != treeHasFrameRateVote) {
Ady Abraham60e42ea2020-03-09 19:17:31 -07001338 layer->mCurrentState.sequence++;
Ady Abraham44e9f3b2021-02-16 15:22:58 -08001339 layer->mCurrentState.treeHasFrameRateVote = treeHasFrameRateVote;
Ady Abraham60e42ea2020-03-09 19:17:31 -07001340 layer->mCurrentState.modified = true;
1341 layer->setTransactionFlags(eTransactionNeeded);
1342 transactionNeeded = true;
Ady Abraham44e9f3b2021-02-16 15:22:58 -08001343
1344 mFlinger->mScheduler->recordLayerHistory(layer, systemTime(),
1345 LayerHistory::LayerUpdateType::SetFrameRate);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001346 }
1347 });
1348
1349 if (transactionNeeded) {
1350 mFlinger->setTransactionFlags(eTraversalNeeded);
1351 }
1352}
1353
Ady Abraham71c437d2020-01-31 15:56:57 -08001354bool Layer::setFrameRate(FrameRate frameRate) {
Ana Krulec3803b8d2020-02-03 16:35:46 -08001355 if (!mFlinger->useFrameRateApi) {
1356 return false;
1357 }
Steven Thomas3172e202020-01-06 19:25:30 -08001358 if (mCurrentState.frameRate == frameRate) {
1359 return false;
1360 }
1361
1362 mCurrentState.sequence++;
1363 mCurrentState.frameRate = frameRate;
1364 mCurrentState.modified = true;
Ady Abraham60e42ea2020-03-09 19:17:31 -07001365
1366 updateTreeHasFrameRateVote();
1367
Steven Thomas3172e202020-01-06 19:25:30 -08001368 setTransactionFlags(eTransactionNeeded);
1369 return true;
1370}
1371
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001372void Layer::setFrameTimelineVsyncForBufferTransaction(const FrameTimelineInfo& info,
1373 nsecs_t postTime) {
1374 mCurrentState.postTime = postTime;
1375
1376 // Check if one of the bufferlessSurfaceFramesTX contains the same vsyncId. This can happen if
1377 // there are two transactions with the same token, the first one without a buffer and the
1378 // second one with a buffer. We promote the bufferlessSurfaceFrame to a bufferSurfaceFrameTX
1379 // in that case.
1380 auto it = mCurrentState.bufferlessSurfaceFramesTX.find(info.vsyncId);
1381 if (it != mCurrentState.bufferlessSurfaceFramesTX.end()) {
1382 // Promote the bufferlessSurfaceFrame to a bufferSurfaceFrameTX
1383 mCurrentState.bufferSurfaceFrameTX = it->second;
1384 mCurrentState.bufferlessSurfaceFramesTX.erase(it);
Adithya Srinivasan785addd2021-03-09 00:38:00 +00001385 mCurrentState.bufferSurfaceFrameTX->promoteToBuffer();
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001386 mCurrentState.bufferSurfaceFrameTX->setActualQueueTime(postTime);
1387 } else {
1388 mCurrentState.bufferSurfaceFrameTX =
1389 createSurfaceFrameForBuffer(info, postTime, mTransactionName);
1390 }
1391}
1392
1393void Layer::setFrameTimelineVsyncForBufferlessTransaction(const FrameTimelineInfo& info,
1394 nsecs_t postTime) {
Siarhei Vishniakoufc434ac2021-01-13 10:28:00 -10001395 mCurrentState.frameTimelineInfo = info;
Ady Abraham22c7b5c2020-09-22 19:33:40 -07001396 mCurrentState.postTime = postTime;
1397 mCurrentState.modified = true;
1398 setTransactionFlags(eTransactionNeeded);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001399
1400 if (const auto& bufferSurfaceFrameTX = mCurrentState.bufferSurfaceFrameTX;
1401 bufferSurfaceFrameTX != nullptr) {
1402 if (bufferSurfaceFrameTX->getToken() == info.vsyncId) {
1403 // BufferSurfaceFrame takes precedence over BufferlessSurfaceFrame. If the same token is
1404 // being used for BufferSurfaceFrame, don't create a new one.
1405 return;
1406 }
1407 }
1408 // For Transactions without a buffer, we create only one SurfaceFrame per vsyncId. If multiple
1409 // transactions use the same vsyncId, we just treat them as one SurfaceFrame (unless they are
1410 // targeting different vsyncs).
1411 auto it = mCurrentState.bufferlessSurfaceFramesTX.find(info.vsyncId);
1412 if (it == mCurrentState.bufferlessSurfaceFramesTX.end()) {
1413 auto surfaceFrame = createSurfaceFrameForTransaction(info, postTime);
1414 mCurrentState.bufferlessSurfaceFramesTX[info.vsyncId] = surfaceFrame;
1415 } else {
1416 if (it->second->getPresentState() == PresentState::Presented) {
1417 // If the SurfaceFrame was already presented, its safe to overwrite it since it must
1418 // have been from previous vsync.
1419 it->second = createSurfaceFrameForTransaction(info, postTime);
1420 }
1421 }
1422}
1423
1424void Layer::addSurfaceFrameDroppedForBuffer(
1425 std::shared_ptr<frametimeline::SurfaceFrame>& surfaceFrame) {
Adithya Srinivasan061c14c2021-02-11 01:19:47 +00001426 surfaceFrame->setDropTime(systemTime());
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001427 surfaceFrame->setPresentState(PresentState::Dropped);
1428 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
1429}
1430
1431void Layer::addSurfaceFramePresentedForBuffer(
1432 std::shared_ptr<frametimeline::SurfaceFrame>& surfaceFrame, nsecs_t acquireFenceTime,
1433 nsecs_t currentLatchTime) {
1434 surfaceFrame->setAcquireFenceTime(acquireFenceTime);
1435 surfaceFrame->setPresentState(PresentState::Presented, mLastLatchTime);
1436 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
1437 mLastLatchTime = currentLatchTime;
1438}
1439
1440std::shared_ptr<frametimeline::SurfaceFrame> Layer::createSurfaceFrameForTransaction(
1441 const FrameTimelineInfo& info, nsecs_t postTime) {
1442 auto surfaceFrame =
Alec Mouriadebf5c2021-01-05 12:57:36 -08001443 mFlinger->mFrameTimeline->createSurfaceFrameForToken(info, mOwnerPid, mOwnerUid,
1444 getSequence(), mName,
Adithya Srinivasan785addd2021-03-09 00:38:00 +00001445 mTransactionName,
1446 /*isBuffer*/ false);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001447 // For Transactions, the post time is considered to be both queue and acquire fence time.
1448 surfaceFrame->setActualQueueTime(postTime);
1449 surfaceFrame->setAcquireFenceTime(postTime);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001450 const auto fps = mFlinger->mScheduler->getFrameRateOverride(getOwnerUid());
1451 if (fps) {
Alec Mouri819f6302021-02-12 15:37:21 -08001452 surfaceFrame->setRenderRate(*fps);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001453 }
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001454 onSurfaceFrameCreated(surfaceFrame);
1455 return surfaceFrame;
1456}
1457
1458std::shared_ptr<frametimeline::SurfaceFrame> Layer::createSurfaceFrameForBuffer(
1459 const FrameTimelineInfo& info, nsecs_t queueTime, std::string debugName) {
1460 auto surfaceFrame =
Alec Mouriadebf5c2021-01-05 12:57:36 -08001461 mFlinger->mFrameTimeline->createSurfaceFrameForToken(info, mOwnerPid, mOwnerUid,
Adithya Srinivasan785addd2021-03-09 00:38:00 +00001462 getSequence(), mName, debugName,
1463 /*isBuffer*/ true);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001464 // For buffers, acquire fence time will set during latch.
1465 surfaceFrame->setActualQueueTime(queueTime);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001466 const auto fps = mFlinger->mScheduler->getFrameRateOverride(getOwnerUid());
1467 if (fps) {
Alec Mouri819f6302021-02-12 15:37:21 -08001468 surfaceFrame->setRenderRate(*fps);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001469 }
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001470 // TODO(b/178542907): Implement onSurfaceFrameCreated for BQLayer as well.
1471 onSurfaceFrameCreated(surfaceFrame);
1472 return surfaceFrame;
Ady Abraham74e17562020-08-24 18:18:19 -07001473}
1474
Ady Abraham60e42ea2020-03-09 19:17:31 -07001475Layer::FrameRate Layer::getFrameRateForLayerTree() const {
1476 const auto frameRate = getDrawingState().frameRate;
Marin Shalamanove8a663d2020-11-24 17:48:00 +01001477 if (frameRate.rate.isValid() || frameRate.type == FrameRateCompatibility::NoVote) {
Ady Abraham60e42ea2020-03-09 19:17:31 -07001478 return frameRate;
1479 }
1480
Ady Abrahamf467f892020-07-31 16:01:53 -07001481 // This layer doesn't have a frame rate. Check if its ancestors have a vote
1482 if (sp<Layer> parent = getParent(); parent) {
1483 if (const auto parentFrameRate = parent->getFrameRateForLayerTree();
1484 parentFrameRate.rate.isValid()) {
1485 return parentFrameRate;
1486 }
1487 }
1488
1489 // This layer and its ancestors don't have a frame rate. If one of successors
1490 // has a vote, return a NoVote for successors to set the vote
Ady Abraham60e42ea2020-03-09 19:17:31 -07001491 if (getDrawingState().treeHasFrameRateVote) {
Marin Shalamanove8a663d2020-11-24 17:48:00 +01001492 return {Fps(0.0f), FrameRateCompatibility::NoVote};
Ady Abraham60e42ea2020-03-09 19:17:31 -07001493 }
1494
1495 return frameRate;
Steven Thomas3172e202020-01-06 19:25:30 -08001496}
1497
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001498// ----------------------------------------------------------------------------
1499// pageflip handling...
1500// ----------------------------------------------------------------------------
1501
Robert Carr1f0a16a2016-10-24 16:27:39 -07001502bool Layer::isHiddenByPolicy() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001503 const State& s(mDrawingState);
Chia-I Wue41dbe62017-06-13 14:10:56 -07001504 const auto& parent = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001505 if (parent != nullptr && parent->isHiddenByPolicy()) {
1506 return true;
1507 }
Robert Carr1c5481e2019-07-01 14:42:27 -07001508 if (usingRelativeZ(LayerVector::StateSet::Drawing)) {
1509 auto zOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
1510 if (zOrderRelativeOf != nullptr) {
1511 if (zOrderRelativeOf->isHiddenByPolicy()) {
1512 return true;
1513 }
1514 }
1515 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001516 return s.flags & layer_state_t::eLayerHidden;
1517}
1518
David Sodman41fdfc92017-11-06 16:09:56 -08001519uint32_t Layer::getEffectiveUsage(uint32_t usage) const {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001520 // TODO: should we do something special if mSecure is set?
1521 if (mProtectedByApp) {
1522 // need a hardware-protected path to external video sink
1523 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07001524 }
Riley Andrews03414a12014-07-01 14:22:59 -07001525 if (mPotentialCursor) {
1526 usage |= GraphicBuffer::USAGE_CURSOR;
1527 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07001528 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001529 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001530}
1531
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001532void Layer::updateTransformHint(ui::Transform::RotationFlags transformHint) {
1533 if (mFlinger->mDebugDisableTransformHint || transformHint & ui::Transform::ROT_INVALID) {
1534 transformHint = ui::Transform::ROT_0;
Mathias Agopiana4583642011-08-23 18:03:18 -07001535 }
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001536
Vishnu Nair6213bd92020-05-08 17:42:25 -07001537 setTransformHint(transformHint);
Mathias Agopiana4583642011-08-23 18:03:18 -07001538}
1539
Mathias Agopian13127d82013-03-05 17:47:11 -08001540// ----------------------------------------------------------------------------
1541// debugging
1542// ----------------------------------------------------------------------------
1543
Marissa Wall61c58622018-07-18 10:12:20 -07001544// TODO(marissaw): add new layer state info to layer debugging
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001545LayerDebugInfo Layer::getLayerDebugInfo(const DisplayDevice* display) const {
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001546 using namespace std::string_literals;
1547
Kalle Raitaa099a242017-01-11 11:17:29 -08001548 LayerDebugInfo info;
Alec Mourib416efd2018-09-06 21:01:59 +00001549 const State& ds = getDrawingState();
Kalle Raitaa099a242017-01-11 11:17:29 -08001550 info.mName = getName();
Vishnu Nair43bccf82020-06-05 10:53:37 -07001551 sp<Layer> parent = mDrawingParent.promote();
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001552 info.mParentName = parent ? parent->getName() : "none"s;
chaviw8a01fa42019-08-19 12:39:31 -07001553 info.mType = getType();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001554 info.mTransparentRegion = ds.activeTransparentRegion_legacy;
Lloyd Piquea2468662019-03-07 21:31:06 -08001555
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001556 info.mVisibleRegion = getVisibleRegion(display);
Kalle Raitaa099a242017-01-11 11:17:29 -08001557 info.mSurfaceDamageRegion = surfaceDamageRegion;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001558 info.mLayerStack = getLayerStack();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001559 info.mX = ds.active_legacy.transform.tx();
1560 info.mY = ds.active_legacy.transform.ty();
Kalle Raitaa099a242017-01-11 11:17:29 -08001561 info.mZ = ds.z;
Marissa Wallf58c14b2018-07-24 10:50:43 -07001562 info.mWidth = ds.active_legacy.w;
1563 info.mHeight = ds.active_legacy.h;
chaviw25714502021-02-11 10:01:08 -08001564 info.mCrop = ds.crop;
chaviw13fdc492017-06-27 12:40:18 -07001565 info.mColor = ds.color;
Kalle Raitaa099a242017-01-11 11:17:29 -08001566 info.mFlags = ds.flags;
1567 info.mPixelFormat = getPixelFormat();
chaviw4244e032019-09-04 11:27:49 -07001568 info.mDataSpace = static_cast<android_dataspace>(getDataSpace());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001569 info.mMatrix[0][0] = ds.active_legacy.transform[0][0];
1570 info.mMatrix[0][1] = ds.active_legacy.transform[0][1];
1571 info.mMatrix[1][0] = ds.active_legacy.transform[1][0];
1572 info.mMatrix[1][1] = ds.active_legacy.transform[1][1];
Kalle Raitaa099a242017-01-11 11:17:29 -08001573 {
chaviwd62d3062019-09-04 14:48:02 -07001574 sp<const GraphicBuffer> buffer = getBuffer();
David Sodman5b4cffc2017-11-23 13:20:29 -08001575 if (buffer != 0) {
1576 info.mActiveBufferWidth = buffer->getWidth();
1577 info.mActiveBufferHeight = buffer->getHeight();
1578 info.mActiveBufferStride = buffer->getStride();
1579 info.mActiveBufferFormat = buffer->format;
Kalle Raitaa099a242017-01-11 11:17:29 -08001580 } else {
1581 info.mActiveBufferWidth = 0;
1582 info.mActiveBufferHeight = 0;
1583 info.mActiveBufferStride = 0;
1584 info.mActiveBufferFormat = 0;
1585 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001586 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001587 info.mNumQueuedFrames = getQueuedFrameCount();
1588 info.mRefreshPending = isBufferLatched();
1589 info.mIsOpaque = isOpaque(ds);
1590 info.mContentDirty = contentDirty;
John Reckc00c6692021-02-16 11:37:33 -05001591 info.mStretchEffect = getStretchEffect();
Kalle Raitaa099a242017-01-11 11:17:29 -08001592 return info;
Mathias Agopian13127d82013-03-05 17:47:11 -08001593}
Chia-I Wu83ce7c12017-10-19 15:18:55 -07001594
Yiwei Zhang5434a782018-12-05 18:06:32 -08001595void Layer::miniDumpHeader(std::string& result) {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001596 result.append(kDumpTableRowLength, '-');
1597 result.append("\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001598 result.append(" Layer name\n");
1599 result.append(" Z | ");
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001600 result.append(" Window Type | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001601 result.append(" Comp Type | ");
Yichi Chen6ca35192018-05-29 12:20:43 +08001602 result.append(" Transform | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001603 result.append(" Disp Frame (LTRB) | ");
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001604 result.append(" Source Crop (LTRB) | ");
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001605 result.append(" Frame Rate (Explicit) (Seamlessness) [Focused]\n");
1606 result.append(kDumpTableRowLength, '-');
1607 result.append("\n");
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001608}
1609
1610std::string Layer::frameRateCompatibilityString(Layer::FrameRateCompatibility compatibility) {
1611 switch (compatibility) {
1612 case FrameRateCompatibility::Default:
1613 return "Default";
1614 case FrameRateCompatibility::ExactOrMultiple:
1615 return "ExactOrMultiple";
1616 case FrameRateCompatibility::NoVote:
1617 return "NoVote";
Ady Abrahamdd5bfa92021-01-07 17:56:08 -08001618 case FrameRateCompatibility::Exact:
1619 return "Exact";
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001620 }
Dan Stozae22aec72016-08-01 13:20:59 -07001621}
1622
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001623void Layer::miniDump(std::string& result, const DisplayDevice& display) const {
1624 const auto outputLayer = findOutputLayerForDisplay(&display);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001625 if (!outputLayer) {
Dan Stozae22aec72016-08-01 13:20:59 -07001626 return;
1627 }
1628
Yiwei Zhang5434a782018-12-05 18:06:32 -08001629 std::string name;
Dan Stozae22aec72016-08-01 13:20:59 -07001630 if (mName.length() > 77) {
1631 std::string shortened;
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001632 shortened.append(mName, 0, 36);
Dan Stozae22aec72016-08-01 13:20:59 -07001633 shortened.append("[...]");
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001634 shortened.append(mName, mName.length() - 36);
1635 name = std::move(shortened);
Dan Stozae22aec72016-08-01 13:20:59 -07001636 } else {
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001637 name = mName;
Dan Stozae22aec72016-08-01 13:20:59 -07001638 }
1639
Yiwei Zhang5434a782018-12-05 18:06:32 -08001640 StringAppendF(&result, " %s\n", name.c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07001641
Alec Mourib416efd2018-09-06 21:01:59 +00001642 const State& layerState(getDrawingState());
Lloyd Piquede196652020-01-22 17:29:58 -08001643 const auto& outputLayerState = outputLayer->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001644
Chia-I Wu1e043612018-03-01 09:45:09 -08001645 if (layerState.zOrderRelativeOf != nullptr || mDrawingParent != nullptr) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001646 StringAppendF(&result, " rel %6d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001647 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001648 StringAppendF(&result, " %10d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001649 }
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001650 StringAppendF(&result, " %10d | ", mWindowType);
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001651 StringAppendF(&result, "%10s | ", toString(getCompositionType(display)).c_str());
Lloyd Piquede196652020-01-22 17:29:58 -08001652 StringAppendF(&result, "%10s | ", toString(outputLayerState.bufferTransform).c_str());
1653 const Rect& frame = outputLayerState.displayFrame;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001654 StringAppendF(&result, "%4d %4d %4d %4d | ", frame.left, frame.top, frame.right, frame.bottom);
Lloyd Piquede196652020-01-22 17:29:58 -08001655 const FloatRect& crop = outputLayerState.sourceCrop;
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001656 StringAppendF(&result, "%6.1f %6.1f %6.1f %6.1f | ", crop.left, crop.top, crop.right,
Yiwei Zhang5434a782018-12-05 18:06:32 -08001657 crop.bottom);
Ady Abrahamf467f892020-07-31 16:01:53 -07001658 const auto frameRate = getFrameRateForLayerTree();
1659 if (frameRate.rate.isValid() || frameRate.type != FrameRateCompatibility::Default) {
1660 StringAppendF(&result, "%s %15s %17s", to_string(frameRate.rate).c_str(),
1661 frameRateCompatibilityString(frameRate.type).c_str(),
1662 toString(frameRate.seamlessness).c_str());
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001663 } else {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001664 result.append(41, ' ');
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001665 }
Dan Stozae22aec72016-08-01 13:20:59 -07001666
Ady Abrahamaae5ed52020-06-26 09:32:43 -07001667 const auto focused = isLayerFocusedBasedOnPriority(getFrameRateSelectionPriority());
1668 StringAppendF(&result, " [%s]\n", focused ? "*" : " ");
1669
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001670 result.append(kDumpTableRowLength, '-');
1671 result.append("\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001672}
Dan Stozae22aec72016-08-01 13:20:59 -07001673
Yiwei Zhang5434a782018-12-05 18:06:32 -08001674void Layer::dumpFrameStats(std::string& result) const {
Svetoslavd85084b2014-03-20 10:28:31 -07001675 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08001676}
1677
Svetoslavd85084b2014-03-20 10:28:31 -07001678void Layer::clearFrameStats() {
1679 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08001680}
1681
Jamie Gennis6547ff42013-07-16 20:12:42 -07001682void Layer::logFrameStats() {
1683 mFrameTracker.logAndResetStats(mName);
1684}
1685
Svetoslavd85084b2014-03-20 10:28:31 -07001686void Layer::getFrameStats(FrameStats* outStats) const {
1687 mFrameTracker.getStats(outStats);
1688}
1689
Yiwei Zhang5434a782018-12-05 18:06:32 -08001690void Layer::dumpFrameEvents(std::string& result) {
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001691 StringAppendF(&result, "- Layer %s (%s, %p)\n", getName().c_str(), getType(), this);
Brian Andersond6927fb2016-07-23 23:37:30 -07001692 Mutex::Autolock lock(mFrameEventHistoryMutex);
1693 mFrameEventHistory.checkFencesForCompletion();
1694 mFrameEventHistory.dump(result);
1695}
Pablo Ceballos40845df2016-01-25 17:41:15 -08001696
Vishnu Nair0f085c62019-08-30 08:49:12 -07001697void Layer::dumpCallingUidPid(std::string& result) const {
chaviw250bcbb2020-08-05 11:17:54 -07001698 StringAppendF(&result, "Layer %s (%s) callingPid:%d callingUid:%d ownerUid:%d\n",
1699 getName().c_str(), getType(), mCallingPid, mCallingUid, mOwnerUid);
Vishnu Nair0f085c62019-08-30 08:49:12 -07001700}
1701
Brian Anderson5ea5e592016-12-01 16:54:33 -08001702void Layer::onDisconnect() {
1703 Mutex::Autolock lock(mFrameEventHistoryMutex);
1704 mFrameEventHistory.onDisconnect();
Yiwei Zhang1a88c402019-11-18 10:43:58 -08001705 const int32_t layerId = getSequence();
1706 mFlinger->mTimeStats->onDestroy(layerId);
1707 mFlinger->mFrameTracer->onDestroy(layerId);
Brian Anderson5ea5e592016-12-01 16:54:33 -08001708}
1709
Brian Anderson3890c392016-07-25 12:48:08 -07001710void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
David Sodman41fdfc92017-11-06 16:09:56 -08001711 FrameEventHistoryDelta* outDelta) {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001712 if (newTimestamps) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001713 mFlinger->mTimeStats->setPostTime(getSequence(), newTimestamps->frameNumber,
Alec Mouri9a29e672020-09-14 12:39:14 -07001714 getName().c_str(), mOwnerUid, newTimestamps->postedTime);
Yiwei Zhang487340f2019-11-18 17:42:12 -08001715 mFlinger->mTimeStats->setAcquireFence(getSequence(), newTimestamps->frameNumber,
1716 newTimestamps->acquireFence);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001717 }
1718
Brian Andersond6927fb2016-07-23 23:37:30 -07001719 Mutex::Autolock lock(mFrameEventHistoryMutex);
1720 if (newTimestamps) {
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001721 // If there are any unsignaled fences in the aquire timeline at this
1722 // point, the previously queued frame hasn't been latched yet. Go ahead
1723 // and try to get the signal time here so the syscall is taken out of
1724 // the main thread's critical path.
1725 mAcquireTimeline.updateSignalTimes();
1726 // Push the new fence after updating since it's likely still pending.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001727 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07001728 mFrameEventHistory.addQueue(*newTimestamps);
1729 }
1730
Brian Anderson3890c392016-07-25 12:48:08 -07001731 if (outDelta) {
1732 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001733 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08001734}
Dan Stozae77c7662016-05-13 11:37:28 -07001735
Chia-I Wu98f1c102017-05-30 14:54:08 -07001736size_t Layer::getChildrenCount() const {
1737 size_t count = 0;
1738 for (const sp<Layer>& child : mCurrentChildren) {
1739 count += 1 + child->getChildrenCount();
1740 }
1741 return count;
1742}
1743
Robert Carr1f0a16a2016-10-24 16:27:39 -07001744void Layer::addChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001745 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001746 setTransactionFlags(eTransactionNeeded);
Robert Carr1323c952019-01-28 18:13:27 -08001747
Robert Carr1f0a16a2016-10-24 16:27:39 -07001748 mCurrentChildren.add(layer);
1749 layer->setParent(this);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001750 updateTreeHasFrameRateVote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001751}
1752
1753ssize_t Layer::removeChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001754 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001755 setTransactionFlags(eTransactionNeeded);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001756
Robert Carr1323c952019-01-28 18:13:27 -08001757 layer->setParent(nullptr);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001758 const auto removeResult = mCurrentChildren.remove(layer);
1759
1760 updateTreeHasFrameRateVote();
1761 layer->updateTreeHasFrameRateVote();
1762
1763 return removeResult;
1764}
1765
Robert Carr15eae092018-03-23 13:43:53 -07001766void Layer::setChildrenDrawingParent(const sp<Layer>& newParent) {
Robert Carr578038f2018-03-09 12:25:24 -08001767 for (const sp<Layer>& child : mDrawingChildren) {
1768 child->mDrawingParent = newParent;
Vishnu Nairc652ff82019-03-15 12:48:54 -07001769 child->computeBounds(newParent->mBounds,
Vishnu Nairc97b8db2019-10-29 18:19:35 -07001770 newParent->getTransformWithScale(newParent->getBufferScaleTransform()),
1771 newParent->mEffectiveShadowRadius);
Robert Carr578038f2018-03-09 12:25:24 -08001772 }
1773}
1774
chaviwf1961f72017-09-18 16:41:07 -07001775bool Layer::reparent(const sp<IBinder>& newParentHandle) {
Robert Carr54cf5b12019-01-25 14:02:28 -08001776 sp<Layer> newParent;
1777 if (newParentHandle != nullptr) {
1778 auto handle = static_cast<Handle*>(newParentHandle.get());
1779 newParent = handle->owner.promote();
1780 if (newParent == nullptr) {
1781 ALOGE("Unable to promote Layer handle");
1782 return false;
1783 }
1784 if (newParent == this) {
1785 ALOGE("Invalid attempt to reparent Layer (%s) to itself", getName().c_str());
1786 return false;
1787 }
1788 }
1789
chaviwf1961f72017-09-18 16:41:07 -07001790 sp<Layer> parent = getParent();
1791 if (parent != nullptr) {
1792 parent->removeChild(this);
chaviw06178942017-07-27 10:25:59 -07001793 }
1794
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001795 if (newParentHandle != nullptr) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001796 newParent->addChild(this);
1797 if (!newParent->isRemovedFromCurrentState()) {
1798 addToCurrentState();
1799 } else {
1800 onRemovedFromCurrentState();
1801 }
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001802 } else {
1803 onRemovedFromCurrentState();
chaviw61626f22018-11-15 16:26:27 -08001804 }
1805
chaviw06178942017-07-27 10:25:59 -07001806 return true;
1807}
1808
Peiyong Lind3788632018-09-18 16:01:31 -07001809bool Layer::setColorTransform(const mat4& matrix) {
Peiyong Lin747321c2018-10-01 10:03:11 -07001810 static const mat4 identityMatrix = mat4();
1811
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001812 if (mCurrentState.colorTransform == matrix) {
Peiyong Lind3788632018-09-18 16:01:31 -07001813 return false;
1814 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001815 ++mCurrentState.sequence;
1816 mCurrentState.colorTransform = matrix;
1817 mCurrentState.hasColorTransform = matrix != identityMatrix;
1818 mCurrentState.modified = true;
Peiyong Lind3788632018-09-18 16:01:31 -07001819 setTransactionFlags(eTransactionNeeded);
1820 return true;
1821}
1822
chaviwf66724d2018-11-28 16:35:21 -08001823mat4 Layer::getColorTransform() const {
1824 mat4 colorTransform = mat4(getDrawingState().colorTransform);
1825 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1826 colorTransform = parent->getColorTransform() * colorTransform;
1827 }
1828 return colorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001829}
1830
1831bool Layer::hasColorTransform() const {
chaviwf66724d2018-11-28 16:35:21 -08001832 bool hasColorTransform = getDrawingState().hasColorTransform;
1833 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1834 hasColorTransform = hasColorTransform || parent->hasColorTransform();
1835 }
1836 return hasColorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001837}
1838
Chia-I Wu11481472018-05-04 10:43:19 -07001839bool Layer::isLegacyDataSpace() const {
1840 // return true when no higher bits are set
chaviw4244e032019-09-04 11:27:49 -07001841 return !(getDataSpace() &
1842 (ui::Dataspace::STANDARD_MASK | ui::Dataspace::TRANSFER_MASK |
1843 ui::Dataspace::RANGE_MASK));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08001844}
1845
Robert Carr1f0a16a2016-10-24 16:27:39 -07001846void Layer::setParent(const sp<Layer>& layer) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001847 mCurrentParent = layer;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001848}
1849
chaviw301b1d82019-11-06 13:15:09 -08001850int32_t Layer::getZ(LayerVector::StateSet stateSet) const {
1851 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1852 const State& state = useDrawing ? mDrawingState : mCurrentState;
1853 return state.z;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001854}
1855
Robert Carr1c5481e2019-07-01 14:42:27 -07001856bool Layer::usingRelativeZ(LayerVector::StateSet stateSet) const {
Robert Carr29abff82017-12-04 13:51:20 -08001857 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001858 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviwe5ac40f2019-09-24 16:36:55 -07001859 return state.isRelativeOf;
Robert Carr29abff82017-12-04 13:51:20 -08001860}
1861
David Sodman41fdfc92017-11-06 16:09:56 -08001862__attribute__((no_sanitize("unsigned-integer-overflow"))) LayerVector Layer::makeTraversalList(
Robert Carr29abff82017-12-04 13:51:20 -08001863 LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers) {
Dan Stoza412903f2017-04-27 13:42:17 -07001864 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1865 "makeTraversalList received invalid stateSet");
1866 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1867 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001868 const State& state = useDrawing ? mDrawingState : mCurrentState;
Dan Stoza412903f2017-04-27 13:42:17 -07001869
Robert Carr29abff82017-12-04 13:51:20 -08001870 if (state.zOrderRelatives.size() == 0) {
1871 *outSkipRelativeZUsers = true;
1872 return children;
1873 }
1874
chaviwfd462612018-05-31 16:11:27 -07001875 LayerVector traverse(stateSet);
Dan Stoza412903f2017-04-27 13:42:17 -07001876 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
Robert Carrdb66e622017-04-10 16:55:57 -07001877 sp<Layer> strongRelative = weakRelative.promote();
1878 if (strongRelative != nullptr) {
1879 traverse.add(strongRelative);
Robert Carrdb66e622017-04-10 16:55:57 -07001880 }
1881 }
1882
Dan Stoza412903f2017-04-27 13:42:17 -07001883 for (const sp<Layer>& child : children) {
chaviwe5ac40f2019-09-24 16:36:55 -07001884 if (child->usingRelativeZ(stateSet)) {
Robert Carr503c7042017-09-27 15:06:08 -07001885 continue;
1886 }
Robert Carrdb66e622017-04-10 16:55:57 -07001887 traverse.add(child);
1888 }
1889
1890 return traverse;
1891}
1892
Robert Carr1f0a16a2016-10-24 16:27:39 -07001893/**
Robert Carrdb66e622017-04-10 16:55:57 -07001894 * Negatively signed relatives are before 'this' in Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001895 */
Dan Stoza412903f2017-04-27 13:42:17 -07001896void Layer::traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001897 // In the case we have other layers who are using a relative Z to us, makeTraversalList will
1898 // produce a new list for traversing, including our relatives, and not including our children
1899 // who are relatives of another surface. In the case that there are no relative Z,
1900 // makeTraversalList returns our children directly to avoid significant overhead.
1901 // However in this case we need to take the responsibility for filtering children which
1902 // are relatives of another surface here.
1903 bool skipRelativeZUsers = false;
1904 const LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001905
Robert Carr1f0a16a2016-10-24 16:27:39 -07001906 size_t i = 0;
Robert Carrdb66e622017-04-10 16:55:57 -07001907 for (; i < list.size(); i++) {
1908 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001909 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1910 continue;
1911 }
1912
chaviw301b1d82019-11-06 13:15:09 -08001913 if (relative->getZ(stateSet) >= 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001914 break;
Robert Carrdb66e622017-04-10 16:55:57 -07001915 }
Dan Stoza412903f2017-04-27 13:42:17 -07001916 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001917 }
Robert Carr29abff82017-12-04 13:51:20 -08001918
Dan Stoza412903f2017-04-27 13:42:17 -07001919 visitor(this);
Robert Carrdb66e622017-04-10 16:55:57 -07001920 for (; i < list.size(); i++) {
1921 const auto& relative = list[i];
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001922
Robert Carr29abff82017-12-04 13:51:20 -08001923 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1924 continue;
1925 }
Dan Stoza412903f2017-04-27 13:42:17 -07001926 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001927 }
1928}
1929
1930/**
Robert Carrdb66e622017-04-10 16:55:57 -07001931 * Positively signed relatives are before 'this' in reverse Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001932 */
Dan Stoza412903f2017-04-27 13:42:17 -07001933void Layer::traverseInReverseZOrder(LayerVector::StateSet stateSet,
1934 const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001935 // See traverseInZOrder for documentation.
1936 bool skipRelativeZUsers = false;
1937 LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001938
Robert Carr1f0a16a2016-10-24 16:27:39 -07001939 int32_t i = 0;
Joel Galensonbf324992017-11-06 11:04:12 -08001940 for (i = int32_t(list.size()) - 1; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001941 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001942
1943 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1944 continue;
1945 }
1946
chaviw301b1d82019-11-06 13:15:09 -08001947 if (relative->getZ(stateSet) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001948 break;
1949 }
Dan Stoza412903f2017-04-27 13:42:17 -07001950 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001951 }
Dan Stoza412903f2017-04-27 13:42:17 -07001952 visitor(this);
David Sodman41fdfc92017-11-06 16:09:56 -08001953 for (; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001954 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001955
1956 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1957 continue;
1958 }
1959
Dan Stoza412903f2017-04-27 13:42:17 -07001960 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001961 }
1962}
1963
Edgar Arriaga844fa672020-01-16 14:21:42 -08001964void Layer::traverse(LayerVector::StateSet state, const LayerVector::Visitor& visitor) {
1965 visitor(this);
1966 const LayerVector& children =
1967 state == LayerVector::StateSet::Drawing ? mDrawingChildren : mCurrentChildren;
1968 for (const sp<Layer>& child : children) {
1969 child->traverse(state, visitor);
1970 }
1971}
1972
chaviw4b129c22018-04-09 16:19:43 -07001973LayerVector Layer::makeChildrenTraversalList(LayerVector::StateSet stateSet,
1974 const std::vector<Layer*>& layersInTree) {
1975 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1976 "makeTraversalList received invalid stateSet");
chaviwa76b2712017-09-20 12:02:26 -07001977 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1978 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001979 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001980
chaviwfd462612018-05-31 16:11:27 -07001981 LayerVector traverse(stateSet);
chaviw4b129c22018-04-09 16:19:43 -07001982 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1983 sp<Layer> strongRelative = weakRelative.promote();
1984 // Only add relative layers that are also descendents of the top most parent of the tree.
1985 // If a relative layer is not a descendent, then it should be ignored.
1986 if (std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
1987 traverse.add(strongRelative);
1988 }
1989 }
1990
1991 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001992 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001993 // If a layer has a relativeOf layer, only ignore if the layer it's relative to is a
1994 // descendent of the top most parent of the tree. If it's not a descendent, then just add
1995 // the child here since it won't be added later as a relative.
1996 if (std::binary_search(layersInTree.begin(), layersInTree.end(),
1997 childState.zOrderRelativeOf.promote().get())) {
1998 continue;
1999 }
2000 traverse.add(child);
2001 }
2002
2003 return traverse;
2004}
2005
2006void Layer::traverseChildrenInZOrderInner(const std::vector<Layer*>& layersInTree,
2007 LayerVector::StateSet stateSet,
2008 const LayerVector::Visitor& visitor) {
2009 const LayerVector list = makeChildrenTraversalList(stateSet, layersInTree);
chaviwa76b2712017-09-20 12:02:26 -07002010
2011 size_t i = 0;
chaviw4b129c22018-04-09 16:19:43 -07002012 for (; i < list.size(); i++) {
2013 const auto& relative = list[i];
chaviw301b1d82019-11-06 13:15:09 -08002014 if (relative->getZ(stateSet) >= 0) {
chaviwa76b2712017-09-20 12:02:26 -07002015 break;
2016 }
chaviw4b129c22018-04-09 16:19:43 -07002017 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07002018 }
chaviw4b129c22018-04-09 16:19:43 -07002019
chaviwa76b2712017-09-20 12:02:26 -07002020 visitor(this);
chaviw4b129c22018-04-09 16:19:43 -07002021 for (; i < list.size(); i++) {
2022 const auto& relative = list[i];
2023 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07002024 }
2025}
2026
chaviw4b129c22018-04-09 16:19:43 -07002027std::vector<Layer*> Layer::getLayersInTree(LayerVector::StateSet stateSet) {
2028 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
2029 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
2030
2031 std::vector<Layer*> layersInTree = {this};
2032 for (size_t i = 0; i < children.size(); i++) {
2033 const auto& child = children[i];
2034 std::vector<Layer*> childLayers = child->getLayersInTree(stateSet);
2035 layersInTree.insert(layersInTree.end(), childLayers.cbegin(), childLayers.cend());
2036 }
2037
2038 return layersInTree;
2039}
2040
2041void Layer::traverseChildrenInZOrder(LayerVector::StateSet stateSet,
2042 const LayerVector::Visitor& visitor) {
2043 std::vector<Layer*> layersInTree = getLayersInTree(stateSet);
2044 std::sort(layersInTree.begin(), layersInTree.end());
2045 traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
2046}
2047
Peiyong Linefefaac2018-08-17 12:27:51 -07002048ui::Transform Layer::getTransform() const {
Vishnu Nairf0c28512019-02-08 12:40:28 -08002049 return mEffectiveTransform;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002050}
2051
chaviw13fdc492017-06-27 12:40:18 -07002052half Layer::getAlpha() const {
Ady Abraham83729882018-12-07 12:26:48 -08002053 const auto& p = mDrawingParent.promote();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002054
chaviw13fdc492017-06-27 12:40:18 -07002055 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
2056 return parentAlpha * getDrawingState().color.a;
Robert Carr6452f122017-03-21 10:41:29 -07002057}
Robert Carr6452f122017-03-21 10:41:29 -07002058
Vishnu Nair6213bd92020-05-08 17:42:25 -07002059ui::Transform::RotationFlags Layer::getFixedTransformHint() const {
2060 ui::Transform::RotationFlags fixedTransformHint = mCurrentState.fixedTransformHint;
2061 if (fixedTransformHint != ui::Transform::ROT_INVALID) {
2062 return fixedTransformHint;
2063 }
2064 const auto& p = mCurrentParent.promote();
2065 if (!p) return fixedTransformHint;
2066 return p->getFixedTransformHint();
2067}
2068
chaviw13fdc492017-06-27 12:40:18 -07002069half4 Layer::getColor() const {
2070 const half4 color(getDrawingState().color);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002071 return half4(color.r, color.g, color.b, getAlpha());
Robert Carr6452f122017-03-21 10:41:29 -07002072}
Robert Carr6452f122017-03-21 10:41:29 -07002073
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08002074int32_t Layer::getBackgroundBlurRadius() const {
Galia Peychevada7de0e2020-12-03 17:24:35 +01002075 const auto& p = mDrawingParent.promote();
2076
2077 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
2078 return parentAlpha * getDrawingState().backgroundBlurRadius;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08002079}
2080
Galia Peychevae0acf382021-04-12 21:22:34 +02002081const std::vector<BlurRegion> Layer::getBlurRegions() const {
2082 auto regionsCopy(getDrawingState().blurRegions);
2083 int layerAlpha = getAlpha();
2084 for (auto& region : regionsCopy) {
2085 region.alpha = region.alpha * layerAlpha;
2086 }
2087 return regionsCopy;
Lucas Dupinc3800b82020-10-02 16:24:48 -07002088}
2089
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002090Layer::RoundedCornerState Layer::getRoundedCornerState() const {
2091 const auto& p = mDrawingParent.promote();
2092 if (p != nullptr) {
Peiyong Lin27016a92019-03-29 17:36:08 +00002093 RoundedCornerState parentState = p->getRoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002094 if (parentState.radius > 0) {
2095 ui::Transform t = getActiveTransform(getDrawingState());
2096 t = t.inverse();
2097 parentState.cropRect = t.transform(parentState.cropRect);
2098 // The rounded corners shader only accepts 1 corner radius for performance reasons,
2099 // but a transform matrix can define horizontal and vertical scales.
2100 // Let's take the average between both of them and pass into the shader, practically we
2101 // never do this type of transformation on windows anyway.
Lucas Dupineab7ea02020-06-03 17:27:28 -07002102 auto scaleX = sqrtf(t[0][0] * t[0][0] + t[0][1] * t[0][1]);
2103 auto scaleY = sqrtf(t[1][0] * t[1][0] + t[1][1] * t[1][1]);
2104 parentState.radius *= (scaleX + scaleY) / 2.0f;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002105 return parentState;
2106 }
2107 }
2108 const float radius = getDrawingState().cornerRadius;
Chavi Weingartena5aedbd2021-04-09 13:37:33 +00002109 return radius > 0 && getCroppedBufferSize(getDrawingState()).isValid()
2110 ? RoundedCornerState(getCroppedBufferSize(getDrawingState()).toFloatRect(), radius)
Peiyong Linb9ff23e2019-04-08 11:04:59 -07002111 : RoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002112}
2113
Marin Shalamanov6ad317c2020-07-29 23:34:07 +02002114renderengine::ShadowSettings Layer::getShadowSettings(const Rect& layerStackRect) const {
Vishnu Nair08f6eae2019-11-26 14:01:39 -08002115 renderengine::ShadowSettings state = mFlinger->mDrawingState.globalShadowSettings;
2116
2117 // Shift the spot light x-position to the middle of the display and then
2118 // offset it by casting layer's screen pos.
Marin Shalamanov6ad317c2020-07-29 23:34:07 +02002119 state.lightPos.x = (layerStackRect.width() / 2.f) - mScreenBounds.left;
Vishnu Nair08f6eae2019-11-26 14:01:39 -08002120 state.lightPos.y -= mScreenBounds.top;
2121
2122 state.length = mEffectiveShadowRadius;
2123 return state;
2124}
2125
Robert Carr1f0a16a2016-10-24 16:27:39 -07002126void Layer::commitChildList() {
2127 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
2128 const auto& child = mCurrentChildren[i];
2129 child->commitChildList();
2130 }
2131 mDrawingChildren = mCurrentChildren;
Chia-I Wue41dbe62017-06-13 14:10:56 -07002132 mDrawingParent = mCurrentParent;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002133}
2134
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002135static wp<Layer> extractLayerFromBinder(const wp<IBinder>& weakBinderHandle) {
2136 if (weakBinderHandle == nullptr) {
2137 return nullptr;
2138 }
2139 sp<IBinder> binderHandle = weakBinderHandle.promote();
2140 if (binderHandle == nullptr) {
2141 return nullptr;
2142 }
2143 sp<Layer::Handle> handle = static_cast<Layer::Handle*>(binderHandle.get());
2144 if (handle == nullptr) {
2145 return nullptr;
2146 }
2147 return handle->owner;
2148}
2149
Robert Carr720e5062018-07-30 17:45:14 -07002150void Layer::setInputInfo(const InputWindowInfo& info) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002151 mCurrentState.inputInfo = info;
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002152 mCurrentState.touchableRegionCrop = extractLayerFromBinder(info.touchableRegionCropHandle);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002153 mCurrentState.modified = true;
2154 mCurrentState.inputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002155 setTransactionFlags(eTransactionNeeded);
2156}
2157
Alec Mouri6b9e9912020-01-21 10:50:24 -08002158LayerProto* Layer::writeToProto(LayersProto& layersProto, uint32_t traceFlags,
chaviw4c34a092020-07-08 11:30:06 -07002159 const DisplayDevice* display) {
chaviw08f3cb22020-01-13 13:17:21 -08002160 LayerProto* layerProto = layersProto.add_layers();
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002161 writeToProtoDrawingState(layerProto, traceFlags, display);
chaviw08f3cb22020-01-13 13:17:21 -08002162 writeToProtoCommonState(layerProto, LayerVector::StateSet::Drawing, traceFlags);
2163
Vishnu Nair60db8c02020-04-02 11:55:16 -07002164 if (traceFlags & SurfaceTracing::TRACE_COMPOSITION) {
2165 // Only populate for the primary display.
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002166 if (display) {
2167 const Hwc2::IComposerClient::Composition compositionType = getCompositionType(*display);
Vishnu Nair60db8c02020-04-02 11:55:16 -07002168 layerProto->set_hwc_composition_type(static_cast<HwcCompositionType>(compositionType));
2169 }
Alec Mouri6b9e9912020-01-21 10:50:24 -08002170 }
2171
chaviw08f3cb22020-01-13 13:17:21 -08002172 for (const sp<Layer>& layer : mDrawingChildren) {
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002173 layer->writeToProto(layersProto, traceFlags, display);
chaviw08f3cb22020-01-13 13:17:21 -08002174 }
chaviw6d89e2d2020-01-14 14:42:01 -08002175
2176 return layerProto;
chaviw08f3cb22020-01-13 13:17:21 -08002177}
2178
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002179void Layer::writeToProtoDrawingState(LayerProto* layerInfo, uint32_t traceFlags,
chaviw4c34a092020-07-08 11:30:06 -07002180 const DisplayDevice* display) {
Vishnu Nair6b7c5c92020-09-29 17:27:05 -07002181 const ui::Transform transform = getTransform();
Vishnu Nair8406fd72019-07-30 11:29:31 -07002182
2183 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
Vishnu Nair8406fd72019-07-30 11:29:31 -07002184
chaviwd62d3062019-09-04 14:48:02 -07002185 auto buffer = getBuffer();
Vishnu Nair8406fd72019-07-30 11:29:31 -07002186 if (buffer != nullptr) {
2187 LayerProtoHelper::writeToProto(buffer,
2188 [&]() { return layerInfo->mutable_active_buffer(); });
chaviw4244e032019-09-04 11:27:49 -07002189 LayerProtoHelper::writeToProto(ui::Transform(getBufferTransform()),
Vishnu Nair8406fd72019-07-30 11:29:31 -07002190 layerInfo->mutable_buffer_transform());
2191 }
2192 layerInfo->set_invalidate(contentDirty);
2193 layerInfo->set_is_protected(isProtected());
chaviw4244e032019-09-04 11:27:49 -07002194 layerInfo->set_dataspace(dataspaceDetails(static_cast<android_dataspace>(getDataSpace())));
Vishnu Nair8406fd72019-07-30 11:29:31 -07002195 layerInfo->set_queued_frames(getQueuedFrameCount());
2196 layerInfo->set_refresh_pending(isBufferLatched());
2197 layerInfo->set_curr_frame(mCurrentFrameNumber);
2198 layerInfo->set_effective_scaling_mode(getEffectiveScalingMode());
2199
2200 layerInfo->set_corner_radius(getRoundedCornerState().radius);
Ana Krulece766cc82020-04-27 13:49:13 -07002201 layerInfo->set_background_blur_radius(getBackgroundBlurRadius());
Vishnu Nair8406fd72019-07-30 11:29:31 -07002202 LayerProtoHelper::writeToProto(transform, layerInfo->mutable_transform());
2203 LayerProtoHelper::writePositionToProto(transform.tx(), transform.ty(),
2204 [&]() { return layerInfo->mutable_position(); });
2205 LayerProtoHelper::writeToProto(mBounds, [&]() { return layerInfo->mutable_bounds(); });
Vishnu Nair60db8c02020-04-02 11:55:16 -07002206 if (traceFlags & SurfaceTracing::TRACE_COMPOSITION) {
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002207 LayerProtoHelper::writeToProto(getVisibleRegion(display),
Vishnu Nair60db8c02020-04-02 11:55:16 -07002208 [&]() { return layerInfo->mutable_visible_region(); });
2209 }
Vishnu Nair8406fd72019-07-30 11:29:31 -07002210 LayerProtoHelper::writeToProto(surfaceDamageRegion,
2211 [&]() { return layerInfo->mutable_damage_region(); });
chaviwddeae262020-01-06 10:31:23 -08002212
2213 if (hasColorTransform()) {
2214 LayerProtoHelper::writeToProto(getColorTransform(),
2215 layerInfo->mutable_color_transform());
2216 }
Vishnu Nair8406fd72019-07-30 11:29:31 -07002217 }
2218
Vishnu Nair60db8c02020-04-02 11:55:16 -07002219 LayerProtoHelper::writeToProto(mSourceBounds,
2220 [&]() { return layerInfo->mutable_source_bounds(); });
2221 LayerProtoHelper::writeToProto(mScreenBounds,
2222 [&]() { return layerInfo->mutable_screen_bounds(); });
2223 LayerProtoHelper::writeToProto(getRoundedCornerState().cropRect,
2224 [&]() { return layerInfo->mutable_corner_radius_crop(); });
2225 layerInfo->set_shadow_radius(mEffectiveShadowRadius);
Vishnu Nair8406fd72019-07-30 11:29:31 -07002226}
2227
2228void Layer::writeToProtoCommonState(LayerProto* layerInfo, LayerVector::StateSet stateSet,
chaviw4c34a092020-07-08 11:30:06 -07002229 uint32_t traceFlags) {
chaviw1d044282017-09-27 12:19:28 -07002230 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
2231 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002232 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw1d044282017-09-27 12:19:28 -07002233
chaviw766c9c52021-02-10 17:36:47 -08002234 ui::Transform requestedTransform = state.transform;
chaviw1d044282017-09-27 12:19:28 -07002235
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002236 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
2237 layerInfo->set_id(sequence);
2238 layerInfo->set_name(getName().c_str());
chaviw8a01fa42019-08-19 12:39:31 -07002239 layerInfo->set_type(getType());
chaviw1d044282017-09-27 12:19:28 -07002240
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002241 for (const auto& child : children) {
2242 layerInfo->add_children(child->sequence);
chaviw1d044282017-09-27 12:19:28 -07002243 }
chaviw1d044282017-09-27 12:19:28 -07002244
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002245 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
2246 sp<Layer> strongRelative = weakRelative.promote();
2247 if (strongRelative != nullptr) {
2248 layerInfo->add_relatives(strongRelative->sequence);
2249 }
chaviwadc40c22018-07-10 16:57:27 -07002250 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002251
2252 LayerProtoHelper::writeToProto(state.activeTransparentRegion_legacy,
2253 [&]() { return layerInfo->mutable_transparent_region(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002254
2255 layerInfo->set_layer_stack(getLayerStack());
2256 layerInfo->set_z(state.z);
2257
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002258 LayerProtoHelper::writePositionToProto(requestedTransform.tx(), requestedTransform.ty(),
2259 [&]() {
2260 return layerInfo->mutable_requested_position();
2261 });
2262
chaviw766c9c52021-02-10 17:36:47 -08002263 LayerProtoHelper::writeSizeToProto(state.width, state.height,
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002264 [&]() { return layerInfo->mutable_size(); });
2265
chaviw766c9c52021-02-10 17:36:47 -08002266 LayerProtoHelper::writeToProto(state.crop, [&]() { return layerInfo->mutable_crop(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002267
2268 layerInfo->set_is_opaque(isOpaque(state));
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002269
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002270
2271 layerInfo->set_pixel_format(decodePixelFormat(getPixelFormat()));
2272 LayerProtoHelper::writeToProto(getColor(), [&]() { return layerInfo->mutable_color(); });
2273 LayerProtoHelper::writeToProto(state.color,
2274 [&]() { return layerInfo->mutable_requested_color(); });
2275 layerInfo->set_flags(state.flags);
2276
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002277 LayerProtoHelper::writeToProto(requestedTransform,
2278 layerInfo->mutable_requested_transform());
2279
2280 auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
2281 if (parent != nullptr) {
2282 layerInfo->set_parent(parent->sequence);
2283 } else {
2284 layerInfo->set_parent(-1);
2285 }
2286
2287 auto zOrderRelativeOf = state.zOrderRelativeOf.promote();
2288 if (zOrderRelativeOf != nullptr) {
2289 layerInfo->set_z_order_relative_of(zOrderRelativeOf->sequence);
2290 } else {
2291 layerInfo->set_z_order_relative_of(-1);
2292 }
chaviw08f3cb22020-01-13 13:17:21 -08002293
2294 layerInfo->set_is_relative_of(state.isRelativeOf);
chaviw250bcbb2020-08-05 11:17:54 -07002295
2296 layerInfo->set_owner_uid(mOwnerUid);
chaviwadc40c22018-07-10 16:57:27 -07002297 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08002298
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002299 if (traceFlags & SurfaceTracing::TRACE_INPUT) {
chaviw4c34a092020-07-08 11:30:06 -07002300 InputWindowInfo info;
2301 if (useDrawing) {
[1;3C2b9fc252021-02-04 16:16:50 -08002302 info = fillInputInfo({nullptr});
chaviw4c34a092020-07-08 11:30:06 -07002303 } else {
2304 info = state.inputInfo;
2305 }
2306
2307 LayerProtoHelper::writeToProto(info, state.touchableRegionCrop,
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002308 [&]() { return layerInfo->mutable_input_window_info(); });
Evan Rosky1f6d6d52018-12-06 10:47:26 -08002309 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002310
2311 if (traceFlags & SurfaceTracing::TRACE_EXTRA) {
2312 auto protoMap = layerInfo->mutable_metadata();
2313 for (const auto& entry : state.metadata.mMap) {
2314 (*protoMap)[entry.first] = std::string(entry.second.cbegin(), entry.second.cend());
2315 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002316 }
chaviw1d044282017-09-27 12:19:28 -07002317}
2318
Robert Carr2e102c92018-10-23 12:11:15 -07002319bool Layer::isRemovedFromCurrentState() const {
2320 return mRemovedFromCurrentState;
2321}
2322
chaviw39d01472021-04-08 14:26:24 -05002323ui::Transform Layer::getInputTransform() const {
2324 return getTransform();
2325}
2326
2327Rect Layer::getInputBounds() const {
2328 return getCroppedBufferSize(getDrawingState());
2329}
2330
[1;3C2b9fc252021-02-04 16:16:50 -08002331void Layer::fillInputFrameInfo(InputWindowInfo& info, const ui::Transform& toPhysicalDisplay) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002332 // Transform layer size to screen space and inset it by surface insets.
Tiger Huang85b8c5e2019-01-17 18:34:54 +08002333 // If this is a portal window, set the touchableRegion to the layerBounds.
2334 Rect layerBounds = info.portalToDisplayId == ADISPLAY_ID_NONE
chaviw39d01472021-04-08 14:26:24 -05002335 ? getInputBounds()
Tiger Huang85b8c5e2019-01-17 18:34:54 +08002336 : info.touchableRegion.getBounds();
Arthur Hungd20b2702019-01-14 18:16:16 +08002337 if (!layerBounds.isValid()) {
chaviw39d01472021-04-08 14:26:24 -05002338 layerBounds = getInputBounds();
Arthur Hungd20b2702019-01-14 18:16:16 +08002339 }
chaviw1ff3d1e2020-07-01 15:53:47 -07002340
chaviw7e72caf2020-12-02 16:50:43 -08002341 if (!layerBounds.isValid()) {
2342 // If the layer bounds is empty, set the frame to empty and clear the transform
2343 info.frameLeft = 0;
2344 info.frameTop = 0;
2345 info.frameRight = 0;
2346 info.frameBottom = 0;
2347 info.transform.reset();
2348 return;
2349 }
2350
chaviw39d01472021-04-08 14:26:24 -05002351 ui::Transform layerToDisplay = getInputTransform();
[1;3C2b9fc252021-02-04 16:16:50 -08002352 // Transform that takes window coordinates to unrotated display coordinates
2353 ui::Transform t = toPhysicalDisplay * layerToDisplay;
chaviw7e72caf2020-12-02 16:50:43 -08002354 int32_t xSurfaceInset = info.surfaceInset;
2355 int32_t ySurfaceInset = info.surfaceInset;
[1;3C2b9fc252021-02-04 16:16:50 -08002356 // Bring screenBounds into unrotated space
2357 Rect screenBounds = toPhysicalDisplay.transform(Rect{mScreenBounds});
chaviw7e72caf2020-12-02 16:50:43 -08002358
chaviw1ff3d1e2020-07-01 15:53:47 -07002359 const float xScale = t.getScaleX();
2360 const float yScale = t.getScaleY();
2361 if (xScale != 1.0f || yScale != 1.0f) {
chaviw1ff3d1e2020-07-01 15:53:47 -07002362 xSurfaceInset = std::round(xSurfaceInset * xScale);
2363 ySurfaceInset = std::round(ySurfaceInset * yScale);
2364 }
2365
Peiyong Lin74861ad2020-10-14 11:55:33 -07002366 // Transform the layer bounds from layer coordinate space to display coordinate space.
chaviw44a6d2b2020-09-08 17:14:16 -07002367 Rect transformedLayerBounds = t.transform(layerBounds);
Ady Abraham282f1d72019-07-24 18:05:56 -07002368
2369 // clamp inset to layer bounds
chaviw44a6d2b2020-09-08 17:14:16 -07002370 xSurfaceInset = (xSurfaceInset >= 0)
2371 ? std::min(xSurfaceInset, transformedLayerBounds.getWidth() / 2)
2372 : 0;
2373 ySurfaceInset = (ySurfaceInset >= 0)
2374 ? std::min(ySurfaceInset, transformedLayerBounds.getHeight() / 2)
2375 : 0;
Ady Abraham282f1d72019-07-24 18:05:56 -07002376
Robert Carra7242302020-09-01 18:26:29 -07002377 // inset while protecting from overflow TODO(b/161235021): What is going wrong
2378 // in the overflow scenario?
2379 {
2380 int32_t tmp;
chaviw44a6d2b2020-09-08 17:14:16 -07002381 if (!__builtin_add_overflow(transformedLayerBounds.left, xSurfaceInset, &tmp))
2382 transformedLayerBounds.left = tmp;
2383 if (!__builtin_sub_overflow(transformedLayerBounds.right, xSurfaceInset, &tmp))
2384 transformedLayerBounds.right = tmp;
2385 if (!__builtin_add_overflow(transformedLayerBounds.top, ySurfaceInset, &tmp))
2386 transformedLayerBounds.top = tmp;
2387 if (!__builtin_sub_overflow(transformedLayerBounds.bottom, ySurfaceInset, &tmp))
2388 transformedLayerBounds.bottom = tmp;
Robert Carra7242302020-09-01 18:26:29 -07002389 }
Vishnu Nair8033a492018-12-05 07:27:23 -08002390
chaviw44a6d2b2020-09-08 17:14:16 -07002391 // Compute the correct transform to send to input. This will allow it to transform the
2392 // input coordinates from display space into window space. Therefore, it needs to use the
2393 // final layer frame to create the inverse transform. Since surface insets are added later,
2394 // along with the overflow, the best way to ensure we get the correct transform is to use
2395 // the final frame calculated.
2396 // 1. Take the original transform set on the window and get the inverse transform. This is
2397 // used to get the final bounds in display space (ignorning the transform). Apply the
Peiyong Lin74861ad2020-10-14 11:55:33 -07002398 // inverse transform on the layerBounds to get the untransformed frame (in layer space)
chaviw44a6d2b2020-09-08 17:14:16 -07002399 // 2. Take the top and left of the untransformed frame to get the real position on screen.
2400 // Apply the layer transform on top/left so it includes any scale or rotation. These will
2401 // be the new translation values for the transform.
2402 // 3. Update the translation of the original transform to the new translation values.
2403 // 4. Send the inverse transform to input so the coordinates can be transformed back into
2404 // window space.
2405 ui::Transform inverseTransform = t.inverse();
2406 Rect nonTransformedBounds = inverseTransform.transform(transformedLayerBounds);
2407 vec2 translation = t.transform(nonTransformedBounds.left, nonTransformedBounds.top);
chaviw1ff3d1e2020-07-01 15:53:47 -07002408 ui::Transform inputTransform(t);
chaviw44a6d2b2020-09-08 17:14:16 -07002409 inputTransform.set(translation.x, translation.y);
chaviw1ff3d1e2020-07-01 15:53:47 -07002410 info.transform = inputTransform.inverse();
2411
chaviw39cfa2e2020-11-04 14:19:02 -08002412 // We need to send the layer bounds cropped to the screenbounds since the layer can be cropped.
2413 // The frame should be the area the user sees on screen since it's used for occlusion
2414 // detection.
chaviw39cfa2e2020-11-04 14:19:02 -08002415 transformedLayerBounds.intersect(screenBounds, &transformedLayerBounds);
2416 info.frameLeft = transformedLayerBounds.left;
2417 info.frameTop = transformedLayerBounds.top;
2418 info.frameRight = transformedLayerBounds.right;
2419 info.frameBottom = transformedLayerBounds.bottom;
2420
Vishnu Nair8033a492018-12-05 07:27:23 -08002421 // Position the touchable region relative to frame screen location and restrict it to frame
2422 // bounds.
chaviw44a6d2b2020-09-08 17:14:16 -07002423 info.touchableRegion = inputTransform.transform(info.touchableRegion);
chaviw7e72caf2020-12-02 16:50:43 -08002424}
2425
[1;3C2b9fc252021-02-04 16:16:50 -08002426InputWindowInfo Layer::fillInputInfo(const sp<DisplayDevice>& display) {
chaviw7e72caf2020-12-02 16:50:43 -08002427 if (!hasInputInfo()) {
2428 mDrawingState.inputInfo.name = getName();
2429 mDrawingState.inputInfo.ownerUid = mOwnerUid;
2430 mDrawingState.inputInfo.ownerPid = mOwnerPid;
2431 mDrawingState.inputInfo.inputFeatures = InputWindowInfo::Feature::NO_INPUT_CHANNEL;
2432 mDrawingState.inputInfo.flags = InputWindowInfo::Flag::NOT_TOUCH_MODAL;
2433 mDrawingState.inputInfo.displayId = getLayerStack();
2434 }
2435
2436 InputWindowInfo info = mDrawingState.inputInfo;
2437 info.id = sequence;
2438
2439 if (info.displayId == ADISPLAY_ID_NONE) {
2440 info.displayId = getLayerStack();
2441 }
2442
[1;3C2b9fc252021-02-04 16:16:50 -08002443 // Transform that goes from "logical(rotated)" display to physical/unrotated display.
2444 // This is for when inputflinger operates in physical display-space.
2445 ui::Transform toPhysicalDisplay;
2446 if (display) {
2447 toPhysicalDisplay = display->getTransform();
2448 }
2449 fillInputFrameInfo(info, toPhysicalDisplay);
chaviw7e72caf2020-12-02 16:50:43 -08002450
Robert Carr5dc426e2020-06-10 14:29:14 -07002451 // For compatibility reasons we let layers which can receive input
2452 // receive input before they have actually submitted a buffer. Because
2453 // of this we use canReceiveInput instead of isVisible to check the
2454 // policy-visibility, ignoring the buffer state. However for layers with
2455 // hasInputInfo()==false we can use the real visibility state.
2456 // We are just using these layers for occlusion detection in
2457 // InputDispatcher, and obviously if they aren't visible they can't occlude
2458 // anything.
2459 info.visible = hasInputInfo() ? canReceiveInput() : isVisible();
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002460 info.alpha = getAlpha();
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002461
2462 auto cropLayer = mDrawingState.touchableRegionCrop.promote();
2463 if (info.replaceTouchableRegionWithCrop) {
2464 if (cropLayer == nullptr) {
[1;3C2b9fc252021-02-04 16:16:50 -08002465 info.touchableRegion = Region(toPhysicalDisplay.transform(Rect{mScreenBounds}));
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002466 } else {
[1;3C2b9fc252021-02-04 16:16:50 -08002467 info.touchableRegion =
2468 Region(toPhysicalDisplay.transform(Rect{cropLayer->mScreenBounds}));
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002469 }
2470 } else if (cropLayer != nullptr) {
[1;3C2b9fc252021-02-04 16:16:50 -08002471 info.touchableRegion = info.touchableRegion.intersect(
2472 toPhysicalDisplay.transform(Rect{cropLayer->mScreenBounds}));
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002473 }
2474
chaviwaf87b3e2019-10-01 16:59:28 -07002475 // If the layer is a clone, we need to crop the input region to cloned root to prevent
2476 // touches from going outside the cloned area.
2477 if (isClone()) {
2478 sp<Layer> clonedRoot = getClonedRoot();
2479 if (clonedRoot != nullptr) {
[1;3C2b9fc252021-02-04 16:16:50 -08002480 Rect rect = toPhysicalDisplay.transform(Rect{clonedRoot->mScreenBounds});
chaviwaf87b3e2019-10-01 16:59:28 -07002481 info.touchableRegion = info.touchableRegion.intersect(rect);
2482 }
2483 }
2484
Robert Carr720e5062018-07-30 17:45:14 -07002485 return info;
2486}
2487
chaviwaf87b3e2019-10-01 16:59:28 -07002488sp<Layer> Layer::getClonedRoot() {
2489 if (mClonedChild != nullptr) {
2490 return this;
2491 }
2492 if (mDrawingParent == nullptr || mDrawingParent.promote() == nullptr) {
2493 return nullptr;
2494 }
2495 return mDrawingParent.promote()->getClonedRoot();
2496}
2497
Robert Carredd13602020-04-13 17:24:34 -07002498bool Layer::hasInputInfo() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002499 return mDrawingState.inputInfo.token != nullptr;
Robert Carr720e5062018-07-30 17:45:14 -07002500}
2501
chaviw3e727cd2019-01-31 13:41:05 -08002502bool Layer::canReceiveInput() const {
Vishnu Nair82353e92019-09-12 12:38:47 -07002503 return !isHiddenByPolicy();
chaviw3e727cd2019-01-31 13:41:05 -08002504}
2505
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002506compositionengine::OutputLayer* Layer::findOutputLayerForDisplay(
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002507 const DisplayDevice* display) const {
2508 if (!display) return nullptr;
Lloyd Piquede196652020-01-22 17:29:58 -08002509 return display->getCompositionDisplay()->getOutputLayerForLayer(getCompositionEngineLayerFE());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002510}
2511
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002512Region Layer::getVisibleRegion(const DisplayDevice* display) const {
2513 const auto outputLayer = findOutputLayerForDisplay(display);
2514 return outputLayer ? outputLayer->getState().visibleRegion : Region();
Lloyd Piquea2468662019-03-07 21:31:06 -08002515}
2516
chaviwb4c6e582019-08-16 14:35:07 -07002517void Layer::setInitialValuesForClone(const sp<Layer>& clonedFrom) {
2518 // copy drawing state from cloned layer
2519 mDrawingState = clonedFrom->mDrawingState;
2520 mClonedFrom = clonedFrom;
chaviwb4c6e582019-08-16 14:35:07 -07002521}
chaviw74b03172019-08-19 11:09:03 -07002522
2523void Layer::updateMirrorInfo() {
2524 if (mClonedChild == nullptr || !mClonedChild->isClonedFromAlive()) {
2525 // If mClonedChild is null, there is nothing to mirror. If isClonedFromAlive returns false,
2526 // it means that there is a clone, but the layer it was cloned from has been destroyed. In
2527 // that case, we want to delete the reference to the clone since we want it to get
2528 // destroyed. The root, this layer, will still be around since the client can continue
2529 // to hold a reference, but no cloned layers will be displayed.
2530 mClonedChild = nullptr;
2531 return;
2532 }
2533
2534 std::map<sp<Layer>, sp<Layer>> clonedLayersMap;
2535 // If the real layer exists and is in current state, add the clone as a child of the root.
2536 // There's no need to remove from drawingState when the layer is offscreen since currentState is
2537 // copied to drawingState for the root layer. So the clonedChild is always removed from
2538 // drawingState and then needs to be added back each traversal.
2539 if (!mClonedChild->getClonedFrom()->isRemovedFromCurrentState()) {
2540 addChildToDrawing(mClonedChild);
2541 }
2542
2543 mClonedChild->updateClonedDrawingState(clonedLayersMap);
2544 mClonedChild->updateClonedChildren(this, clonedLayersMap);
2545 mClonedChild->updateClonedRelatives(clonedLayersMap);
2546}
2547
2548void Layer::updateClonedDrawingState(std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2549 // If the layer the clone was cloned from is alive, copy the content of the drawingState
2550 // to the clone. If the real layer is no longer alive, continue traversing the children
2551 // since we may be able to pull out other children that are still alive.
2552 if (isClonedFromAlive()) {
2553 sp<Layer> clonedFrom = getClonedFrom();
2554 mDrawingState = clonedFrom->mDrawingState;
chaviw74b03172019-08-19 11:09:03 -07002555 clonedLayersMap.emplace(clonedFrom, this);
2556 }
2557
2558 // The clone layer may have children in drawingState since they may have been created and
2559 // added from a previous request to updateMirorInfo. This is to ensure we don't recreate clones
2560 // that already exist, since we can just re-use them.
2561 // The drawingChildren will not get overwritten by the currentChildren since the clones are
2562 // not updated in the regular traversal. They are skipped since the root will lose the
2563 // reference to them when it copies its currentChildren to drawing.
2564 for (sp<Layer>& child : mDrawingChildren) {
2565 child->updateClonedDrawingState(clonedLayersMap);
2566 }
2567}
2568
2569void Layer::updateClonedChildren(const sp<Layer>& mirrorRoot,
2570 std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2571 mDrawingChildren.clear();
2572
2573 if (!isClonedFromAlive()) {
2574 return;
2575 }
2576
2577 sp<Layer> clonedFrom = getClonedFrom();
2578 for (sp<Layer>& child : clonedFrom->mDrawingChildren) {
2579 if (child == mirrorRoot) {
2580 // This is to avoid cyclical mirroring.
2581 continue;
2582 }
2583 sp<Layer> clonedChild = clonedLayersMap[child];
2584 if (clonedChild == nullptr) {
2585 clonedChild = child->createClone();
2586 clonedLayersMap[child] = clonedChild;
2587 }
2588 addChildToDrawing(clonedChild);
2589 clonedChild->updateClonedChildren(mirrorRoot, clonedLayersMap);
2590 }
2591}
2592
chaviwaf87b3e2019-10-01 16:59:28 -07002593void Layer::updateClonedInputInfo(const std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2594 auto cropLayer = mDrawingState.touchableRegionCrop.promote();
2595 if (cropLayer != nullptr) {
2596 if (clonedLayersMap.count(cropLayer) == 0) {
2597 // Real layer had a crop layer but it's not in the cloned hierarchy. Just set to
2598 // self as crop layer to avoid going outside bounds.
2599 mDrawingState.touchableRegionCrop = this;
2600 } else {
2601 const sp<Layer>& clonedCropLayer = clonedLayersMap.at(cropLayer);
2602 mDrawingState.touchableRegionCrop = clonedCropLayer;
2603 }
2604 }
2605 // Cloned layers shouldn't handle watch outside since their z order is not determined by
2606 // WM or the client.
Michael Wright44753b12020-07-08 13:48:11 +01002607 mDrawingState.inputInfo.flags &= ~InputWindowInfo::Flag::WATCH_OUTSIDE_TOUCH;
chaviwaf87b3e2019-10-01 16:59:28 -07002608}
2609
2610void Layer::updateClonedRelatives(const std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
chaviw74b03172019-08-19 11:09:03 -07002611 mDrawingState.zOrderRelativeOf = nullptr;
2612 mDrawingState.zOrderRelatives.clear();
2613
2614 if (!isClonedFromAlive()) {
2615 return;
2616 }
2617
chaviwaf87b3e2019-10-01 16:59:28 -07002618 const sp<Layer>& clonedFrom = getClonedFrom();
chaviw74b03172019-08-19 11:09:03 -07002619 for (wp<Layer>& relativeWeak : clonedFrom->mDrawingState.zOrderRelatives) {
chaviwaf87b3e2019-10-01 16:59:28 -07002620 const sp<Layer>& relative = relativeWeak.promote();
2621 if (clonedLayersMap.count(relative) > 0) {
2622 auto& clonedRelative = clonedLayersMap.at(relative);
chaviw74b03172019-08-19 11:09:03 -07002623 mDrawingState.zOrderRelatives.add(clonedRelative);
2624 }
2625 }
2626
2627 // Check if the relativeLayer for the real layer is part of the cloned hierarchy.
2628 // It's possible that the layer it's relative to is outside the requested cloned hierarchy.
2629 // In that case, we treat the layer as if the relativeOf has been removed. This way, it will
2630 // still traverse the children, but the layer with the missing relativeOf will not be shown
2631 // on screen.
chaviwaf87b3e2019-10-01 16:59:28 -07002632 const sp<Layer>& relativeOf = clonedFrom->mDrawingState.zOrderRelativeOf.promote();
2633 if (clonedLayersMap.count(relativeOf) > 0) {
2634 const sp<Layer>& clonedRelativeOf = clonedLayersMap.at(relativeOf);
chaviw74b03172019-08-19 11:09:03 -07002635 mDrawingState.zOrderRelativeOf = clonedRelativeOf;
2636 }
2637
chaviwaf87b3e2019-10-01 16:59:28 -07002638 updateClonedInputInfo(clonedLayersMap);
2639
chaviw74b03172019-08-19 11:09:03 -07002640 for (sp<Layer>& child : mDrawingChildren) {
2641 child->updateClonedRelatives(clonedLayersMap);
2642 }
2643}
2644
2645void Layer::addChildToDrawing(const sp<Layer>& layer) {
2646 mDrawingChildren.add(layer);
2647 layer->mDrawingParent = this;
2648}
2649
Steven Thomas62a4cf82020-01-31 12:04:03 -08002650Layer::FrameRateCompatibility Layer::FrameRate::convertCompatibility(int8_t compatibility) {
2651 switch (compatibility) {
2652 case ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_DEFAULT:
2653 return FrameRateCompatibility::Default;
2654 case ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_FIXED_SOURCE:
2655 return FrameRateCompatibility::ExactOrMultiple;
Ady Abrahamdd5bfa92021-01-07 17:56:08 -08002656 case ANATIVEWINDOW_FRAME_RATE_EXACT:
2657 return FrameRateCompatibility::Exact;
Steven Thomas62a4cf82020-01-31 12:04:03 -08002658 default:
2659 LOG_ALWAYS_FATAL("Invalid frame rate compatibility value %d", compatibility);
2660 return FrameRateCompatibility::Default;
2661 }
2662}
2663
Marin Shalamanovc5986772021-03-16 16:09:49 +01002664scheduler::Seamlessness Layer::FrameRate::convertChangeFrameRateStrategy(int8_t strategy) {
2665 switch (strategy) {
2666 case ANATIVEWINDOW_CHANGE_FRAME_RATE_ONLY_IF_SEAMLESS:
2667 return Seamlessness::OnlySeamless;
2668 case ANATIVEWINDOW_CHANGE_FRAME_RATE_ALWAYS:
2669 return Seamlessness::SeamedAndSeamless;
2670 default:
2671 LOG_ALWAYS_FATAL("Invalid change frame sate strategy value %d", strategy);
2672 return Seamlessness::Default;
2673 }
2674}
2675
chaviwc5676c62020-09-18 15:01:04 -07002676bool Layer::getPrimaryDisplayOnly() const {
2677 const State& s(mDrawingState);
2678 if (s.flags & layer_state_t::eLayerSkipScreenshot) {
2679 return true;
2680 }
2681
2682 sp<Layer> parent = mDrawingParent.promote();
2683 return parent == nullptr ? false : parent->getPrimaryDisplayOnly();
2684}
2685
Mathias Agopian13127d82013-03-05 17:47:11 -08002686// ---------------------------------------------------------------------------
2687
Marin Shalamanov46084422020-10-13 12:33:42 +02002688std::ostream& operator<<(std::ostream& stream, const Layer::FrameRate& rate) {
2689 return stream << "{rate=" << rate.rate
2690 << " type=" << Layer::frameRateCompatibilityString(rate.type)
Marin Shalamanov53fc11d2020-11-20 14:00:13 +01002691 << " seamlessness=" << toString(rate.seamlessness) << "}";
Marin Shalamanov46084422020-10-13 12:33:42 +02002692}
2693
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002694}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002695
2696#if defined(__gl_h_)
2697#error "don't include gl/gl.h in this file"
2698#endif
2699
2700#if defined(__gl2_h_)
2701#error "don't include gl2/gl2.h in this file"
2702#endif
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -08002703
2704// TODO(b/129481165): remove the #pragma below and fix conversion issues
2705#pragma clang diagnostic pop // ignored "-Wconversion"