blob: bf9b13b91a6457d96fbe7a9b59e0e45d4feb3ae1 [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>
Patrick Williamsbb25f802022-08-30 23:02:34 +000032#include <compositionengine/CompositionEngine.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080033#include <compositionengine/Display.h>
Lloyd Piquea83776c2019-01-29 18:42:32 -080034#include <compositionengine/LayerFECompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080035#include <compositionengine/OutputLayer.h>
36#include <compositionengine/impl/OutputLayerCompositionState.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070037#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070038#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070039#include <cutils/properties.h>
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -070040#include <ftl/enum.h>
Dominik Laskowski298b08e2022-02-15 13:45:02 -080041#include <ftl/fake_guard.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080042#include <gui/BufferItem.h>
43#include <gui/LayerDebugInfo.h>
44#include <gui/Surface.h>
Patrick Williamsbb25f802022-08-30 23:02:34 +000045#include <gui/TraceUtils.h>
Alec Mourie60041e2019-06-14 18:59:51 -070046#include <math.h>
chaviw250bcbb2020-08-05 11:17:54 -070047#include <private/android_filesystem_config.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080048#include <renderengine/RenderEngine.h>
Alec Mourie60041e2019-06-14 18:59:51 -070049#include <stdint.h>
50#include <stdlib.h>
51#include <sys/types.h>
Alec Mouridda07d92022-04-25 22:39:25 +000052#include <system/graphics-base-v1.0.h>
Alec Mouricdf6cbc2021-11-01 17:21:15 -070053#include <ui/DataspaceUtils.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080054#include <ui/DebugUtils.h>
Vishnu Nairfed7c122023-03-18 01:54:43 +000055#include <ui/FloatRect.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080056#include <ui/GraphicBuffer.h>
57#include <ui/PixelFormat.h>
Vishnu Nairfed7c122023-03-18 01:54:43 +000058#include <ui/Rect.h>
59#include <ui/Transform.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060#include <utils/Errors.h>
61#include <utils/Log.h>
Jesse Hall399184a2014-03-03 15:42:54 -080062#include <utils/NativeHandle.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080064#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065
Alec Mourie60041e2019-06-14 18:59:51 -070066#include <algorithm>
67#include <mutex>
Vishnu Nair71fcf912022-10-18 09:14:20 -070068#include <optional>
Alec Mourie60041e2019-06-14 18:59:51 -070069#include <sstream>
70
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070071#include "DisplayDevice.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080072#include "DisplayHardware/HWComposer.h"
Ady Abraham22c7b5c2020-09-22 19:33:40 -070073#include "FrameTimeline.h"
Mikael Pessa90092f42019-08-26 17:22:04 -070074#include "FrameTracer/FrameTracer.h"
Vishnu Naircb8be502022-10-12 19:03:23 +000075#include "FrontEnd/LayerCreationArgs.h"
Vishnu Nair07e2a482022-10-18 19:18:16 +000076#include "FrontEnd/LayerHandle.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080077#include "LayerProtoHelper.h"
Josh Gao194ff392022-09-08 16:19:29 -070078#include "MutexUtils.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080079#include "SurfaceFlinger.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -080080#include "TimeStats/TimeStats.h"
Robert Carr3e2a2992021-06-11 13:42:55 -070081#include "TunnelModeEnabledReporter.h"
Mathias Agopian1b031492012-06-20 17:51:20 -070082
David Sodman41fdfc92017-11-06 16:09:56 -080083#define DEBUG_RESIZE 0
Patrick Williamsbb25f802022-08-30 23:02:34 +000084#define EARLY_RELEASE_ENABLED false
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080085
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080086namespace android {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +010087namespace {
88constexpr int kDumpTableRowLength = 159;
Patrick Williamsbb25f802022-08-30 23:02:34 +000089
Prabir Pradhanda0f62c2022-07-22 19:53:04 +000090const ui::Transform kIdentityTransform;
Patrick Williamsbb25f802022-08-30 23:02:34 +000091
Patrick Williamsbb25f802022-08-30 23:02:34 +000092bool assignTransform(ui::Transform* dst, ui::Transform& from) {
93 if (*dst == from) {
94 return false;
95 }
96 *dst = from;
97 return true;
98}
99
100TimeStats::SetFrameRateVote frameRateToSetFrameRateVotePayload(Layer::FrameRate frameRate) {
101 using FrameRateCompatibility = TimeStats::SetFrameRateVote::FrameRateCompatibility;
102 using Seamlessness = TimeStats::SetFrameRateVote::Seamlessness;
103 const auto frameRateCompatibility = [frameRate] {
104 switch (frameRate.type) {
105 case Layer::FrameRateCompatibility::Default:
106 return FrameRateCompatibility::Default;
107 case Layer::FrameRateCompatibility::ExactOrMultiple:
108 return FrameRateCompatibility::ExactOrMultiple;
109 default:
110 return FrameRateCompatibility::Undefined;
111 }
112 }();
113
114 const auto seamlessness = [frameRate] {
115 switch (frameRate.seamlessness) {
116 case scheduler::Seamlessness::OnlySeamless:
117 return Seamlessness::ShouldBeSeamless;
118 case scheduler::Seamlessness::SeamedAndSeamless:
119 return Seamlessness::NotRequired;
120 default:
121 return Seamlessness::Undefined;
122 }
123 }();
124
125 return TimeStats::SetFrameRateVote{.frameRate = frameRate.rate.getValue(),
126 .frameRateCompatibility = frameRateCompatibility,
127 .seamlessness = seamlessness};
128}
129
Marin Shalamanov1876e2e2020-12-04 13:23:59 +0100130} // namespace
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800131
Dominik Laskowski2f01d772022-03-23 16:01:29 -0700132using namespace ftl::flag_operators;
133
Yiwei Zhang5434a782018-12-05 18:06:32 -0800134using base::StringAppendF;
Vishnu Nair8fc721b2022-12-22 20:06:32 +0000135using frontend::LayerSnapshot;
136using frontend::RoundedCornerState;
Huihong Luod3d8f8e2022-03-08 14:48:46 -0800137using gui::GameMode;
138using gui::LayerMetadata;
chaviw3277faf2021-05-19 16:45:23 -0500139using gui::WindowInfo;
Yiwei Zhang5434a782018-12-05 18:06:32 -0800140
Dominik Laskowski2f01d772022-03-23 16:01:29 -0700141using PresentState = frametimeline::SurfaceFrame::PresentState;
142
Lloyd Pique42ab75e2018-09-12 20:46:03 -0700143Layer::Layer(const LayerCreationArgs& args)
Vishnu Naircb8be502022-10-12 19:03:23 +0000144 : sequence(args.sequence),
Ady Abrahamd11bade2022-08-01 16:18:03 -0700145 mFlinger(sp<SurfaceFlinger>::fromExisting(args.flinger)),
Arthur Hung23e07502021-10-15 11:58:19 +0000146 mName(base::StringPrintf("%s#%d", args.name.c_str(), sequence)),
Ady Abraham8f1ee7f2019-04-05 10:32:50 -0700147 mClientRef(args.client),
Huihong Luod3d8f8e2022-03-08 14:48:46 -0800148 mWindowType(static_cast<WindowInfo::Type>(
149 args.metadata.getInt32(gui::METADATA_WINDOW_TYPE, 0))),
Tianhao Yao67dd7122022-02-22 17:48:33 +0000150 mLayerCreationFlags(args.flags),
Patrick Williamsbb25f802022-08-30 23:02:34 +0000151 mBorderEnabled(false),
152 mTextureName(args.textureName),
Vishnu Nair3af0ec02023-02-10 04:13:48 +0000153 mLegacyLayerFE(args.flinger->getFactory().createLayerFE(mName)) {
Patrick Williamsbb25f802022-08-30 23:02:34 +0000154 ALOGV("Creating Layer %s", getDebugName());
155
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700156 uint32_t layerFlags = 0;
Lloyd Pique42ab75e2018-09-12 20:46:03 -0700157 if (args.flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden;
158 if (args.flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque;
159 if (args.flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure;
chaviwc5676c62020-09-18 15:01:04 -0700160 if (args.flags & ISurfaceComposerClient::eSkipScreenshot)
161 layerFlags |= layer_state_t::eLayerSkipScreenshot;
Robert Carr6a160312021-05-17 12:08:20 -0700162 mDrawingState.flags = layerFlags;
Robert Carr6a160312021-05-17 12:08:20 -0700163 mDrawingState.crop.makeInvalid();
Robert Carr6a160312021-05-17 12:08:20 -0700164 mDrawingState.z = 0;
165 mDrawingState.color.a = 1.0f;
Dominik Laskowski29fa1462021-04-27 15:51:50 -0700166 mDrawingState.layerStack = ui::DEFAULT_LAYER_STACK;
Robert Carr6a160312021-05-17 12:08:20 -0700167 mDrawingState.sequence = 0;
Robert Carr6a160312021-05-17 12:08:20 -0700168 mDrawingState.transform.set(0, 0);
169 mDrawingState.frameNumber = 0;
Vishnu Nair63221212023-04-06 15:17:37 -0700170 mDrawingState.barrierFrameNumber = 0;
171 mDrawingState.producerId = 0;
172 mDrawingState.barrierProducerId = 0;
Robert Carr6a160312021-05-17 12:08:20 -0700173 mDrawingState.bufferTransform = 0;
174 mDrawingState.transformToDisplayInverse = false;
175 mDrawingState.crop.makeInvalid();
176 mDrawingState.acquireFence = sp<Fence>::make(-1);
177 mDrawingState.acquireFenceTime = std::make_shared<FenceTime>(mDrawingState.acquireFence);
Alec Mouri74c7ae12023-03-26 02:57:47 +0000178 mDrawingState.dataspace = ui::Dataspace::V0_SRGB;
Robert Carr6a160312021-05-17 12:08:20 -0700179 mDrawingState.hdrMetadata.validTypes = 0;
180 mDrawingState.surfaceDamageRegion = Region::INVALID_REGION;
181 mDrawingState.cornerRadius = 0.0f;
182 mDrawingState.backgroundBlurRadius = 0;
183 mDrawingState.api = -1;
184 mDrawingState.hasColorTransform = false;
185 mDrawingState.colorSpaceAgnostic = false;
186 mDrawingState.frameRateSelectionPriority = PRIORITY_UNSET;
187 mDrawingState.metadata = args.metadata;
188 mDrawingState.shadowRadius = 0.f;
189 mDrawingState.fixedTransformHint = ui::Transform::ROT_INVALID;
190 mDrawingState.frameTimelineInfo = {};
191 mDrawingState.postTime = -1;
192 mDrawingState.destinationFrame.makeInvalid();
Robin Leeedb375d2021-09-10 12:03:42 +0000193 mDrawingState.isTrustedOverlay = false;
Vishnu Nair9cf4a4d2021-09-17 12:16:08 -0700194 mDrawingState.dropInputMode = gui::DropInputMode::NONE;
Sally Qi81d95e62022-03-21 19:41:33 -0700195 mDrawingState.dimmingEnabled = true;
Andy Labrada096227e2022-06-15 16:58:11 +0000196 mDrawingState.defaultFrameRateCompatibility = FrameRateCompatibility::Default;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700197
Vishnu Nairc43a23c2020-05-29 14:32:27 -0700198 if (args.flags & ISurfaceComposerClient::eNoColorFill) {
199 // Set an invalid color so there is no color fill.
Robert Carr6a160312021-05-17 12:08:20 -0700200 mDrawingState.color.r = -1.0_hf;
201 mDrawingState.color.g = -1.0_hf;
202 mDrawingState.color.b = -1.0_hf;
Vishnu Nairc43a23c2020-05-29 14:32:27 -0700203 }
Dominik Laskowski4376bd82022-07-07 11:50:20 -0700204
Leon Scroggins III1af0fb62023-03-02 14:21:44 -0500205 mFrameTracker.setDisplayRefreshPeriod(
206 args.flinger->mScheduler->getPacesetterVsyncPeriod().ns());
Robert Carr2e102c92018-10-23 12:11:15 -0700207
Vishnu Naircb8be502022-10-12 19:03:23 +0000208 mOwnerUid = args.ownerUid;
209 mOwnerPid = args.ownerPid;
Patrick Williamsbb25f802022-08-30 23:02:34 +0000210
211 mPremultipliedAlpha = !(args.flags & ISurfaceComposerClient::eNonPremultiplied);
212 mPotentialCursor = args.flags & ISurfaceComposerClient::eCursorWindow;
213 mProtectedByApp = args.flags & ISurfaceComposerClient::eProtectedByApp;
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000214
215 mSnapshot->sequence = sequence;
216 mSnapshot->name = getDebugName();
217 mSnapshot->textureName = mTextureName;
218 mSnapshot->premultipliedAlpha = mPremultipliedAlpha;
Vishnu Nair8fc721b2022-12-22 20:06:32 +0000219 mSnapshot->parentTransform = {};
Dominik Laskowski75848362019-11-11 17:57:20 -0800220}
221
222void Layer::onFirstRef() {
223 mFlinger->onLayerFirstRef(this);
Dan Stoza436ccf32018-06-21 12:10:12 -0700224}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700225
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700226Layer::~Layer() {
Patrick Williams70093fd2022-12-12 16:51:52 +0000227 LOG_ALWAYS_FATAL_IF(std::this_thread::get_id() != mFlinger->mMainThreadId,
228 "Layer destructor called off the main thread.");
229
Patrick Williamsbb25f802022-08-30 23:02:34 +0000230 // The original layer and the clone layer share the same texture and buffer. Therefore, only
231 // one of the layers, in this case the original layer, needs to handle the deletion. The
232 // original layer and the clone should be removed at the same time so there shouldn't be any
233 // issue with the clone layer trying to use the texture.
234 if (mBufferInfo.mBuffer != nullptr) {
235 callReleaseBufferCallback(mDrawingState.releaseBufferListener,
236 mBufferInfo.mBuffer->getBuffer(), mBufferInfo.mFrameNumber,
liulijuneb489f62022-10-17 22:02:14 +0800237 mBufferInfo.mFence);
Patrick Williamsbb25f802022-08-30 23:02:34 +0000238 }
239 if (!isClone()) {
240 // The original layer and the clone layer share the same texture. Therefore, only one of
241 // the layers, in this case the original layer, needs to handle the deletion. The original
242 // layer and the clone should be removed at the same time so there shouldn't be any issue
243 // with the clone layer trying to use the deleted texture.
244 mFlinger->deleteTextureAsync(mTextureName);
245 }
246 const int32_t layerId = getSequence();
247 mFlinger->mTimeStats->onDestroy(layerId);
248 mFlinger->mFrameTracer->onDestroy(layerId);
249
Jorim Jaggi10c985e2018-10-23 11:17:45 +0000250 mFrameTracker.logAndResetStats(mName);
chaviw74d90ad2019-04-26 14:45:26 -0700251 mFlinger->onLayerDestroyed(this);
Robert Carr3e2a2992021-06-11 13:42:55 -0700252
253 if (mDrawingState.sidebandStream != nullptr) {
254 mFlinger->mTunnelModeEnabledReporter->decrementTunnelModeCount();
255 }
Robert Carr6a0382d2021-07-01 15:57:17 -0700256 if (mHadClonedChild) {
Vishnu Nair6e701af2023-05-04 17:27:48 +0000257 mFlinger->mNumClones--;
Robert Carr6a0382d2021-07-01 15:57:17 -0700258 }
Chavi Weingarten076acac2023-01-19 17:20:43 +0000259 if (hasTrustedPresentationListener()) {
260 mFlinger->mNumTrustedPresentationListeners--;
Vishnu Nair781d7252023-01-30 18:16:01 +0000261 updateTrustedPresentationState(nullptr, nullptr, -1 /* time_in_ms */, true /* leaveState*/);
Chavi Weingarten076acac2023-01-19 17:20:43 +0000262 }
Mathias Agopian96f08192010-06-02 23:28:45 -0700263}
264
Mathias Agopian13127d82013-03-05 17:47:11 -0800265// ---------------------------------------------------------------------------
266// callbacks
267// ---------------------------------------------------------------------------
268
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700269void Layer::removeRelativeZ(const std::vector<Layer*>& layersInTree) {
Robert Carr6a160312021-05-17 12:08:20 -0700270 if (mDrawingState.zOrderRelativeOf == nullptr) {
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700271 return;
272 }
Robert Carr2e102c92018-10-23 12:11:15 -0700273
Robert Carr6a160312021-05-17 12:08:20 -0700274 sp<Layer> strongRelative = mDrawingState.zOrderRelativeOf.promote();
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700275 if (strongRelative == nullptr) {
276 setZOrderRelativeOf(nullptr);
277 return;
278 }
279
280 if (!std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
Ady Abrahamd11bade2022-08-01 16:18:03 -0700281 strongRelative->removeZOrderRelative(wp<Layer>::fromExisting(this));
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700282 mFlinger->setTransactionFlags(eTraversalNeeded);
chaviw606e5cf2019-03-01 10:12:10 -0800283 setZOrderRelativeOf(nullptr);
Robert Carr5edb1ad2017-04-25 10:54:24 -0700284 }
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700285}
286
287void Layer::removeFromCurrentState() {
Robert Carr6a160312021-05-17 12:08:20 -0700288 if (!mRemovedFromDrawingState) {
289 mRemovedFromDrawingState = true;
Ady Abrahambe09aad2021-05-03 18:59:38 -0700290 mFlinger->mScheduler->deregisterLayer(this);
291 }
Vishnu Nair781d7252023-01-30 18:16:01 +0000292 updateTrustedPresentationState(nullptr, nullptr, -1 /* time_in_ms */, true /* leaveState*/);
Rob Carr4bba3702018-10-08 21:53:30 +0000293
Ady Abrahamd11bade2022-08-01 16:18:03 -0700294 mFlinger->markLayerPendingRemovalLocked(sp<Layer>::fromExisting(this));
Chia-I Wuc6657022017-08-15 11:18:17 -0700295}
Chia-I Wu38512252017-05-17 14:36:16 -0700296
chaviw68d4dab2020-06-08 15:07:32 -0700297sp<Layer> Layer::getRootLayer() {
Rob Carrc6d2d2b2021-10-25 16:51:49 +0000298 sp<Layer> parent = getParent();
chaviw68d4dab2020-06-08 15:07:32 -0700299 if (parent == nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -0700300 return sp<Layer>::fromExisting(this);
chaviw68d4dab2020-06-08 15:07:32 -0700301 }
302 return parent->getRootLayer();
303}
304
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700305void Layer::onRemovedFromCurrentState() {
chaviw68d4dab2020-06-08 15:07:32 -0700306 // Use the root layer since we want to maintain the hierarchy for the entire subtree.
307 auto layersInTree = getRootLayer()->getLayersInTree(LayerVector::StateSet::Current);
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700308 std::sort(layersInTree.begin(), layersInTree.end());
chaviw68d4dab2020-06-08 15:07:32 -0700309
Josh Gao194ff392022-09-08 16:19:29 -0700310 REQUIRE_MUTEX(mFlinger->mStateLock);
311 traverse(LayerVector::StateSet::Current,
312 [&](Layer* layer) REQUIRES(layer->mFlinger->mStateLock) {
313 layer->removeFromCurrentState();
314 layer->removeRelativeZ(layersInTree);
315 });
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700316}
317
chaviw61626f22018-11-15 16:26:27 -0800318void Layer::addToCurrentState() {
Robert Carr6a160312021-05-17 12:08:20 -0700319 if (mRemovedFromDrawingState) {
320 mRemovedFromDrawingState = false;
Ady Abrahambe09aad2021-05-03 18:59:38 -0700321 mFlinger->mScheduler->registerLayer(this);
Robert Carr867be372021-06-29 17:36:02 -0700322 mFlinger->removeFromOffscreenLayers(this);
Ady Abrahambe09aad2021-05-03 18:59:38 -0700323 }
chaviw61626f22018-11-15 16:26:27 -0800324
325 for (const auto& child : mCurrentChildren) {
326 child->addToCurrentState();
327 }
328}
329
Mathias Agopian13127d82013-03-05 17:47:11 -0800330// ---------------------------------------------------------------------------
331// set-up
332// ---------------------------------------------------------------------------
333
chaviw13fdc492017-06-27 12:40:18 -0700334bool Layer::getPremultipledAlpha() const {
335 return mPremultipliedAlpha;
336}
337
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700338sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800339 Mutex::Autolock _l(mLock);
Robert Carrc0df3122019-04-11 13:18:21 -0700340 if (mGetHandleCalled) {
341 ALOGE("Get handle called twice" );
342 return nullptr;
343 }
344 mGetHandleCalled = true;
Vishnu Nair787aa782023-03-17 13:46:46 -0700345 mHandleAlive = true;
Vishnu Nair07e2a482022-10-18 19:18:16 +0000346 return sp<LayerHandle>::make(mFlinger, sp<Layer>::fromExisting(this));
Mathias Agopian13127d82013-03-05 17:47:11 -0800347}
348
349// ---------------------------------------------------------------------------
350// h/w composer set-up
351// ---------------------------------------------------------------------------
352
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700353static Rect reduce(const Rect& win, const Region& exclude) {
354 if (CC_LIKELY(exclude.isEmpty())) {
355 return win;
356 }
357 if (exclude.isRect()) {
358 return win.reduce(exclude.getBounds());
359 }
360 return Region(win).subtract(exclude).getBounds();
361}
362
Dan Stoza80d61162017-12-20 15:57:52 -0800363static FloatRect reduce(const FloatRect& win, const Region& exclude) {
364 if (CC_LIKELY(exclude.isEmpty())) {
365 return win;
366 }
367 // Convert through Rect (by rounding) for lack of FloatRegion
368 return Region(Rect{win}).subtract(exclude).getBounds().toFloatRect();
369}
370
Vishnu Nair4351ad52019-02-11 14:13:02 -0800371Rect Layer::getScreenBounds(bool reduceTransparentRegion) const {
Vishnu Nairf0c28512019-02-08 12:40:28 -0800372 if (!reduceTransparentRegion) {
373 return Rect{mScreenBounds};
374 }
375
376 FloatRect bounds = getBounds();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800377 ui::Transform t = getTransform();
Vishnu Nair60356342018-11-13 13:00:45 -0800378 // Transform to screen space.
379 bounds = t.transform(bounds);
380 return Rect{bounds};
Robert Carr1f0a16a2016-10-24 16:27:39 -0700381}
382
Vishnu Nair4351ad52019-02-11 14:13:02 -0800383FloatRect Layer::getBounds() const {
Alec Mourib416efd2018-09-06 21:01:59 +0000384 const State& s(getDrawingState());
Vishnu Nair4351ad52019-02-11 14:13:02 -0800385 return getBounds(getActiveTransparentRegion(s));
Michael Lentine6c925ed2014-09-26 17:55:01 -0700386}
387
Vishnu Nairf0c28512019-02-08 12:40:28 -0800388FloatRect Layer::getBounds(const Region& activeTransparentRegion) const {
389 // Subtract the transparent region and snap to the bounds.
390 return reduce(mBounds, activeTransparentRegion);
391}
392
Chavi Weingarten076acac2023-01-19 17:20:43 +0000393// No early returns.
Vishnu Nair781d7252023-01-30 18:16:01 +0000394void Layer::updateTrustedPresentationState(const DisplayDevice* display,
395 const frontend::LayerSnapshot* snapshot,
396 int64_t time_in_ms, bool leaveState) {
Chavi Weingarten076acac2023-01-19 17:20:43 +0000397 if (!hasTrustedPresentationListener()) {
398 return;
399 }
400 const bool lastState = mLastComputedTrustedPresentationState;
401 mLastComputedTrustedPresentationState = false;
402
403 if (!leaveState) {
404 const auto outputLayer = findOutputLayerForDisplay(display);
Chavi Weingarten545da0e2023-02-09 14:55:57 +0000405 if (outputLayer != nullptr) {
406 if (outputLayer->getState().coveredRegionExcludingDisplayOverlays) {
407 Region coveredRegion =
408 *outputLayer->getState().coveredRegionExcludingDisplayOverlays;
409 mLastComputedTrustedPresentationState =
410 computeTrustedPresentationState(snapshot->geomLayerBounds,
411 snapshot->sourceBounds(), coveredRegion,
412 snapshot->transformedBounds,
413 snapshot->alpha,
414 snapshot->geomLayerTransform,
415 mTrustedPresentationThresholds);
416 } else {
417 ALOGE("CoveredRegionExcludingDisplayOverlays was not set for %s. Don't compute "
418 "TrustedPresentationState",
419 getDebugName());
420 }
Chavi Weingarten076acac2023-01-19 17:20:43 +0000421 }
422 }
423 const bool newState = mLastComputedTrustedPresentationState;
424 if (lastState && !newState) {
425 // We were in the trusted presentation state, but now we left it,
426 // emit the callback if needed
427 if (mLastReportedTrustedPresentationState) {
428 mLastReportedTrustedPresentationState = false;
429 mTrustedPresentationListener.invoke(false);
430 }
431 // Reset the timer
432 mEnteredTrustedPresentationStateTime = -1;
433 } else if (!lastState && newState) {
434 // We were not in the trusted presentation state, but we entered it, begin the timer
435 // and make sure this gets called at least once more!
436 mEnteredTrustedPresentationStateTime = time_in_ms;
437 mFlinger->forceFutureUpdate(mTrustedPresentationThresholds.stabilityRequirementMs * 1.5);
438 }
439
440 // Has the timer elapsed, but we are still in the state? Emit a callback if needed
441 if (!mLastReportedTrustedPresentationState && newState &&
442 (time_in_ms - mEnteredTrustedPresentationStateTime >
443 mTrustedPresentationThresholds.stabilityRequirementMs)) {
444 mLastReportedTrustedPresentationState = true;
445 mTrustedPresentationListener.invoke(true);
446 }
447}
448
449/**
450 * See SurfaceComposerClient.h: setTrustedPresentationCallback for discussion
451 * of how the parameters and thresholds are interpreted. The general spirit is
452 * to produce an upper bound on the amount of the buffer which was presented.
453 */
454bool Layer::computeTrustedPresentationState(const FloatRect& bounds, const FloatRect& sourceBounds,
455 const Region& coveredRegion,
456 const FloatRect& screenBounds, float alpha,
457 const ui::Transform& effectiveTransform,
458 const TrustedPresentationThresholds& thresholds) {
459 if (alpha < thresholds.minAlpha) {
460 return false;
461 }
462 if (sourceBounds.getWidth() == 0 || sourceBounds.getHeight() == 0) {
463 return false;
464 }
465 if (screenBounds.getWidth() == 0 || screenBounds.getHeight() == 0) {
466 return false;
467 }
468
469 const float sx = effectiveTransform.dsdx();
470 const float sy = effectiveTransform.dsdy();
471 float fractionRendered = std::min(sx * sy, 1.0f);
472
473 float boundsOverSourceW = bounds.getWidth() / (float)sourceBounds.getWidth();
474 float boundsOverSourceH = bounds.getHeight() / (float)sourceBounds.getHeight();
475 fractionRendered *= boundsOverSourceW * boundsOverSourceH;
476
Chavi Weingarten545da0e2023-02-09 14:55:57 +0000477 Region tJunctionFreeRegion = Region::createTJunctionFreeRegion(coveredRegion);
478 // Compute the size of all the rects since they may be disconnected.
479 float coveredSize = 0;
480 for (auto rect = tJunctionFreeRegion.begin(); rect < tJunctionFreeRegion.end(); rect++) {
481 float size = rect->width() * rect->height();
482 coveredSize += size;
483 }
484
485 fractionRendered *= (1 - (coveredSize / (screenBounds.getWidth() * screenBounds.getHeight())));
Chavi Weingarten076acac2023-01-19 17:20:43 +0000486
487 if (fractionRendered < thresholds.minFractionRendered) {
488 return false;
489 }
490
491 return true;
492}
493
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700494void Layer::computeBounds(FloatRect parentBounds, ui::Transform parentTransform,
495 float parentShadowRadius) {
Vishnu Nair4351ad52019-02-11 14:13:02 -0800496 const State& s(getDrawingState());
497
498 // Calculate effective layer transform
499 mEffectiveTransform = parentTransform * getActiveTransform(s);
500
Garfield Tan2c1782c2022-02-16 15:25:05 -0800501 if (CC_UNLIKELY(!isTransformValid())) {
502 ALOGW("Stop computing bounds for %s because it has invalid transformation.",
503 getDebugName());
504 return;
505 }
506
Vishnu Nair4351ad52019-02-11 14:13:02 -0800507 // Transform parent bounds to layer space
508 parentBounds = getActiveTransform(s).inverse().transform(parentBounds);
509
Vishnu Nairc652ff82019-03-15 12:48:54 -0700510 // Calculate source bounds
Vishnu Nair4351ad52019-02-11 14:13:02 -0800511 mSourceBounds = computeSourceBounds(parentBounds);
512
513 // Calculate bounds by croping diplay frame with layer crop and parent bounds
514 FloatRect bounds = mSourceBounds;
515 const Rect layerCrop = getCrop(s);
516 if (!layerCrop.isEmpty()) {
517 bounds = mSourceBounds.intersect(layerCrop.toFloatRect());
518 }
519 bounds = bounds.intersect(parentBounds);
520
521 mBounds = bounds;
522 mScreenBounds = mEffectiveTransform.transform(mBounds);
Vishnu Nairc652ff82019-03-15 12:48:54 -0700523
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700524 // Use the layer's own shadow radius if set. Otherwise get the radius from
525 // parent.
526 if (s.shadowRadius > 0.f) {
527 mEffectiveShadowRadius = s.shadowRadius;
528 } else {
529 mEffectiveShadowRadius = parentShadowRadius;
530 }
531
532 // Shadow radius is passed down to only one layer so if the layer can draw shadows,
533 // don't pass it to its children.
534 const float childShadowRadius = canDrawShadows() ? 0.f : mEffectiveShadowRadius;
535
Vishnu Nair4351ad52019-02-11 14:13:02 -0800536 for (const sp<Layer>& child : mDrawingChildren) {
Vishnu Nair6bdec7d2021-05-10 15:01:13 -0700537 child->computeBounds(mBounds, mEffectiveTransform, childShadowRadius);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800538 }
Vishnu Nairba354102022-08-01 00:14:18 +0000539
540 if (mPotentialCursor) {
541 prepareCursorCompositionState();
542 }
Vishnu Nair4351ad52019-02-11 14:13:02 -0800543}
544
Vishnu Nair60356342018-11-13 13:00:45 -0800545Rect Layer::getCroppedBufferSize(const State& s) const {
546 Rect size = getBufferSize(s);
547 Rect crop = getCrop(s);
548 if (!crop.isEmpty() && size.isValid()) {
549 size.intersect(crop, &size);
550 } else if (!crop.isEmpty()) {
551 size = crop;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700552 }
Vishnu Nair60356342018-11-13 13:00:45 -0800553 return size;
Mathias Agopian13127d82013-03-05 17:47:11 -0800554}
555
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700556void Layer::setupRoundedCornersCropCoordinates(Rect win,
557 const FloatRect& roundedCornersCrop) const {
558 // Translate win by the rounded corners rect coordinates, to have all values in
559 // layer coordinate space.
560 win.left -= roundedCornersCrop.left;
561 win.right -= roundedCornersCrop.left;
562 win.top -= roundedCornersCrop.top;
563 win.bottom -= roundedCornersCrop.top;
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700564}
565
Lloyd Piquede196652020-01-22 17:29:58 -0800566void Layer::prepareBasicGeometryCompositionState() {
Lloyd Piquec6687342019-03-07 21:34:57 -0800567 const auto& drawingState{getDrawingState()};
Lloyd Piquec6687342019-03-07 21:34:57 -0800568 const auto alpha = static_cast<float>(getAlpha());
569 const bool opaque = isOpaque(drawingState);
Vishnu Nair50c0afe2022-07-11 15:04:07 -0700570 const bool usesRoundedCorners = hasRoundedCorners();
Lloyd Piquec6687342019-03-07 21:34:57 -0800571
572 auto blendMode = Hwc2::IComposerClient::BlendMode::NONE;
573 if (!opaque || alpha != 1.0f) {
574 blendMode = mPremultipliedAlpha ? Hwc2::IComposerClient::BlendMode::PREMULTIPLIED
575 : Hwc2::IComposerClient::BlendMode::COVERAGE;
576 }
577
Alec Mourif4af03e2023-02-11 00:25:24 +0000578 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000579 auto* snapshot = editLayerSnapshot();
580 snapshot->outputFilter = getOutputFilter();
581 snapshot->isVisible = isVisible();
582 snapshot->isOpaque = opaque && !usesRoundedCorners && alpha == 1.f;
583 snapshot->shadowRadius = mEffectiveShadowRadius;
Lloyd Piquec6687342019-03-07 21:34:57 -0800584
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000585 snapshot->contentDirty = contentDirty;
Lloyd Piquec6687342019-03-07 21:34:57 -0800586 contentDirty = false;
587
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000588 snapshot->geomLayerBounds = mBounds;
589 snapshot->geomLayerTransform = getTransform();
590 snapshot->geomInverseLayerTransform = snapshot->geomLayerTransform.inverse();
591 snapshot->transparentRegionHint = getActiveTransparentRegion(drawingState);
Vishnu Naircfb2d252023-01-19 04:44:02 +0000592 snapshot->localTransform = getActiveTransform(drawingState);
593 snapshot->localTransformInverse = snapshot->localTransform.inverse();
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000594 snapshot->blendMode = static_cast<Hwc2::IComposerClient::BlendMode>(blendMode);
595 snapshot->alpha = alpha;
596 snapshot->backgroundBlurRadius = drawingState.backgroundBlurRadius;
597 snapshot->blurRegions = drawingState.blurRegions;
598 snapshot->stretchEffect = getStretchEffect();
Lloyd Piquec6687342019-03-07 21:34:57 -0800599}
600
Lloyd Piquede196652020-01-22 17:29:58 -0800601void Layer::prepareGeometryCompositionState() {
Lloyd Piquea83776c2019-01-29 18:42:32 -0800602 const auto& drawingState{getDrawingState()};
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000603 auto* snapshot = editLayerSnapshot();
David Sodman15094112018-10-11 09:39:37 -0700604
Alec Mourif4af03e2023-02-11 00:25:24 +0000605 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000606 snapshot->geomBufferSize = getBufferSize(drawingState);
607 snapshot->geomContentCrop = getBufferCrop();
608 snapshot->geomCrop = getCrop(drawingState);
609 snapshot->geomBufferTransform = getBufferTransform();
610 snapshot->geomBufferUsesDisplayInverseTransform = getTransformToDisplayInverse();
611 snapshot->geomUsesSourceCrop = usesSourceCrop();
612 snapshot->isSecure = isSecure();
Lloyd Piquede196652020-01-22 17:29:58 -0800613
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000614 snapshot->metadata.clear();
Lloyd Pique8d9f8362020-02-11 19:13:09 -0800615 const auto& supportedMetadata = mFlinger->getHwComposer().getSupportedLayerGenericMetadata();
616 for (const auto& [key, mandatory] : supportedMetadata) {
617 const auto& genericLayerMetadataCompatibilityMap =
618 mFlinger->getGenericLayerMetadataKeyMap();
619 auto compatIter = genericLayerMetadataCompatibilityMap.find(key);
620 if (compatIter == std::end(genericLayerMetadataCompatibilityMap)) {
621 continue;
622 }
623 const uint32_t id = compatIter->second;
624
625 auto it = drawingState.metadata.mMap.find(id);
626 if (it == std::end(drawingState.metadata.mMap)) {
627 continue;
628 }
629
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000630 snapshot->metadata.emplace(key,
631 compositionengine::GenericLayerMetadataEntry{mandatory,
632 it->second});
Lloyd Pique8d9f8362020-02-11 19:13:09 -0800633 }
Lloyd Piquea83776c2019-01-29 18:42:32 -0800634}
David Sodmanba340492018-08-05 21:51:33 -0700635
Lloyd Piquede196652020-01-22 17:29:58 -0800636void Layer::preparePerFrameCompositionState() {
Lloyd Pique688abd42019-02-15 15:42:24 -0800637 const auto& drawingState{getDrawingState()};
Alec Mourif4af03e2023-02-11 00:25:24 +0000638 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000639 auto* snapshot = editLayerSnapshot();
Lloyd Piquef5275482019-01-29 18:42:42 -0800640
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000641 snapshot->forceClientComposition = false;
Lloyd Piquede196652020-01-22 17:29:58 -0800642
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000643 snapshot->isColorspaceAgnostic = isColorSpaceAgnostic();
644 snapshot->dataspace = getDataSpace();
645 snapshot->colorTransform = getColorTransform();
646 snapshot->colorTransformIsIdentity = !hasColorTransform();
647 snapshot->surfaceDamage = surfaceDamageRegion;
648 snapshot->hasProtectedContent = isProtected();
649 snapshot->dimmingEnabled = isDimmingEnabled();
Sally Qi963049b2023-03-23 14:06:21 -0700650 snapshot->currentHdrSdrRatio = getCurrentHdrSdrRatio();
651 snapshot->desiredHdrSdrRatio = getDesiredHdrSdrRatio();
Alec Mourif4af03e2023-02-11 00:25:24 +0000652 snapshot->cachingHint = getCachingHint();
Lloyd Pique688abd42019-02-15 15:42:24 -0800653
Vishnu Nair50c0afe2022-07-11 15:04:07 -0700654 const bool usesRoundedCorners = hasRoundedCorners();
Vishnu Nairc97b8db2019-10-29 18:19:35 -0700655
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000656 snapshot->isOpaque = isOpaque(drawingState) && !usesRoundedCorners && getAlpha() == 1.0_hf;
Lloyd Piquef5275482019-01-29 18:42:42 -0800657
658 // Force client composition for special cases known only to the front-end.
Leon Scroggins IIId305ef22021-04-06 09:53:26 -0400659 // Rounded corners no longer force client composition, since we may use a
660 // hole punch so that the layer will appear to have rounded corners.
661 if (isHdrY410() || drawShadows() || drawingState.blurRegions.size() > 0 ||
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000662 snapshot->stretchEffect.hasEffect()) {
663 snapshot->forceClientComposition = true;
Lloyd Piquef5275482019-01-29 18:42:42 -0800664 }
Vishnu Nairb801a982021-11-02 15:12:08 -0700665 // If there are no visible region changes, we still need to update blur parameters.
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000666 snapshot->blurRegions = drawingState.blurRegions;
667 snapshot->backgroundBlurRadius = drawingState.backgroundBlurRadius;
Nathaniel Nifong1303d912021-10-06 09:41:24 -0400668
669 // Layer framerate is used in caching decisions.
670 // Retrieve it from the scheduler which maintains an instance of LayerHistory, and store it in
671 // LayerFECompositionState where it would be visible to Flattener.
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000672 snapshot->fps = mFlinger->getLayerFramerate(systemTime(), getSequence());
Patrick Williamsbb25f802022-08-30 23:02:34 +0000673
674 if (hasBufferOrSidebandStream()) {
675 preparePerFrameBufferCompositionState();
676 } else {
677 preparePerFrameEffectsCompositionState();
678 }
679}
680
681void Layer::preparePerFrameBufferCompositionState() {
Alec Mourif4af03e2023-02-11 00:25:24 +0000682 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000683 auto* snapshot = editLayerSnapshot();
Alec Mourif4af03e2023-02-11 00:25:24 +0000684 // Sideband layers
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000685 if (snapshot->sidebandStream.get() && !snapshot->sidebandStreamHasFrame) {
686 snapshot->compositionType =
Patrick Williamsbb25f802022-08-30 23:02:34 +0000687 aidl::android::hardware::graphics::composer3::Composition::SIDEBAND;
688 return;
689 } else if ((mDrawingState.flags & layer_state_t::eLayerIsDisplayDecoration) != 0) {
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000690 snapshot->compositionType =
Patrick Williamsbb25f802022-08-30 23:02:34 +0000691 aidl::android::hardware::graphics::composer3::Composition::DISPLAY_DECORATION;
ramindanib2158ee2023-02-13 20:29:59 -0800692 } else if ((mDrawingState.flags & layer_state_t::eLayerIsRefreshRateIndicator) != 0) {
693 snapshot->compositionType =
694 aidl::android::hardware::graphics::composer3::Composition::REFRESH_RATE_INDICATOR;
Patrick Williamsbb25f802022-08-30 23:02:34 +0000695 } else {
696 // Normal buffer layers
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000697 snapshot->hdrMetadata = mBufferInfo.mHdrMetadata;
698 snapshot->compositionType = mPotentialCursor
Patrick Williamsbb25f802022-08-30 23:02:34 +0000699 ? aidl::android::hardware::graphics::composer3::Composition::CURSOR
700 : aidl::android::hardware::graphics::composer3::Composition::DEVICE;
701 }
702
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000703 snapshot->buffer = getBuffer();
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000704 snapshot->acquireFence = mBufferInfo.mFence;
705 snapshot->frameNumber = mBufferInfo.mFrameNumber;
706 snapshot->sidebandStreamHasFrame = false;
Patrick Williamsbb25f802022-08-30 23:02:34 +0000707}
708
709void Layer::preparePerFrameEffectsCompositionState() {
Alec Mourif4af03e2023-02-11 00:25:24 +0000710 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000711 auto* snapshot = editLayerSnapshot();
712 snapshot->color = getColor();
713 snapshot->compositionType =
Patrick Williamsbb25f802022-08-30 23:02:34 +0000714 aidl::android::hardware::graphics::composer3::Composition::SOLID_COLOR;
Lloyd Piquef5275482019-01-29 18:42:42 -0800715}
716
Lloyd Piquede196652020-01-22 17:29:58 -0800717void Layer::prepareCursorCompositionState() {
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800718 const State& drawingState{getDrawingState()};
Alec Mourif4af03e2023-02-11 00:25:24 +0000719 // Please keep in sync with LayerSnapshotBuilder
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000720 auto* snapshot = editLayerSnapshot();
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800721
722 // Apply the layer's transform, followed by the display's global transform
723 // Here we're guaranteed that the layer's transform preserves rects
724 Rect win = getCroppedBufferSize(drawingState);
725 // Subtract the transparent region and snap to the bounds
726 Rect bounds = reduce(win, getActiveTransparentRegion(drawingState));
727 Rect frame(getTransform().transform(bounds));
728
Vishnu Nairbedb44b2022-08-02 21:47:40 +0000729 snapshot->cursorFrame = frame;
Lloyd Piquede196652020-01-22 17:29:58 -0800730}
731
Lloyd Piquea83776c2019-01-29 18:42:32 -0800732const char* Layer::getDebugName() const {
Dominik Laskowski87a07e42019-10-10 20:38:02 -0700733 return mName.c_str();
David Sodman4b7c4bc2017-11-17 12:13:59 -0800734}
735
Mathias Agopian13127d82013-03-05 17:47:11 -0800736// ---------------------------------------------------------------------------
737// drawing...
738// ---------------------------------------------------------------------------
739
Leon Scroggins III2e1aa182021-12-01 17:33:12 -0500740aidl::android::hardware::graphics::composer3::Composition Layer::getCompositionType(
741 const DisplayDevice& display) const {
Dominik Laskowskib7251f42020-04-20 17:42:59 -0700742 const auto outputLayer = findOutputLayerForDisplay(&display);
Alec Mouri6b9e9912020-01-21 10:50:24 -0800743 if (outputLayer == nullptr) {
Leon Scroggins III2e1aa182021-12-01 17:33:12 -0500744 return aidl::android::hardware::graphics::composer3::Composition::INVALID;
Alec Mouri6b9e9912020-01-21 10:50:24 -0800745 }
746 if (outputLayer->getState().hwc) {
747 return (*outputLayer->getState().hwc).hwcCompositionType;
748 } else {
Leon Scroggins III2e1aa182021-12-01 17:33:12 -0500749 return aidl::android::hardware::graphics::composer3::Composition::CLIENT;
Alec Mouri6b9e9912020-01-21 10:50:24 -0800750 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800751}
752
Mathias Agopian13127d82013-03-05 17:47:11 -0800753// ----------------------------------------------------------------------------
754// local state
755// ----------------------------------------------------------------------------
756
David Sodman41fdfc92017-11-06 16:09:56 -0800757bool Layer::isSecure() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800758 const State& s(mDrawingState);
Garfield Tande619fa2020-10-02 17:13:53 -0700759 if (s.flags & layer_state_t::eLayerSecure) {
760 return true;
761 }
762
Rob Carrc6d2d2b2021-10-25 16:51:49 +0000763 const auto p = mDrawingParent.promote();
Garfield Tande619fa2020-10-02 17:13:53 -0700764 return (p != nullptr) ? p->isSecure() : false;
Dan Stoza23116082015-06-18 14:58:39 -0700765}
766
Pascal Muetschardf54181b2022-12-13 14:53:25 +0100767void Layer::transferAvailableJankData(const std::deque<sp<CallbackHandle>>& handles,
768 std::vector<JankData>& jankData) {
769 if (mPendingJankClassifications.empty() ||
770 !mPendingJankClassifications.front()->getJankType()) {
771 return;
772 }
773
774 bool includeJankData = false;
775 for (const auto& handle : handles) {
776 for (const auto& cb : handle->callbackIds) {
777 if (cb.includeJankData) {
778 includeJankData = true;
779 break;
780 }
781 }
782
783 if (includeJankData) {
784 jankData.reserve(mPendingJankClassifications.size());
785 break;
786 }
787 }
788
789 while (!mPendingJankClassifications.empty() &&
790 mPendingJankClassifications.front()->getJankType()) {
791 if (includeJankData) {
792 std::shared_ptr<frametimeline::SurfaceFrame> surfaceFrame =
793 mPendingJankClassifications.front();
794 jankData.emplace_back(
795 JankData(surfaceFrame->getToken(), surfaceFrame->getJankType().value()));
796 }
797 mPendingJankClassifications.pop_front();
798 }
799}
800
Mathias Agopian13127d82013-03-05 17:47:11 -0800801// ----------------------------------------------------------------------------
802// transaction
803// ----------------------------------------------------------------------------
Ady Abraham83729882018-12-07 12:26:48 -0800804
Vishnu Naira156f482023-02-22 00:23:38 +0000805uint32_t Layer::doTransaction(uint32_t flags) {
Marissa Wall61c58622018-07-18 10:12:20 -0700806 ATRACE_CALL();
807
Robert Carr0758e5d2021-03-11 22:15:04 -0800808 // TODO: This is unfortunate.
Robert Carr6a160312021-05-17 12:08:20 -0700809 mDrawingStateModified = mDrawingState.modified;
810 mDrawingState.modified = false;
Marissa Wall61c58622018-07-18 10:12:20 -0700811
Alec Mourib416efd2018-09-06 21:01:59 +0000812 const State& s(getDrawingState());
Marissa Wall61c58622018-07-18 10:12:20 -0700813
Robert Carr6a160312021-05-17 12:08:20 -0700814 if (updateGeometry()) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800815 // invalidate and recompute the visible regions if needed
816 flags |= Layer::eVisibleRegion;
817 }
818
Robert Carr6a160312021-05-17 12:08:20 -0700819 if (s.sequence != mLastCommittedTxSequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800820 // invalidate and recompute the visible regions if needed
Arthur Hung9ed43392022-05-27 06:31:57 +0000821 mLastCommittedTxSequence = s.sequence;
Mathias Agopian13127d82013-03-05 17:47:11 -0800822 flags |= eVisibleRegion;
823 this->contentDirty = true;
824
825 // we may use linear filtering, if the matrix scales us
Robert Carr6a160312021-05-17 12:08:20 -0700826 mNeedsFiltering = getActiveTransform(s).needsBilinearFiltering();
Mathias Agopian13127d82013-03-05 17:47:11 -0800827 }
828
Arthur Hung9ed43392022-05-27 06:31:57 +0000829 if (!mPotentialCursor && (flags & Layer::eVisibleRegion)) {
830 mFlinger->mUpdateInputInfo = true;
831 }
832
Vishnu Naira156f482023-02-22 00:23:38 +0000833 commitTransaction(mDrawingState);
Robert Carra1257842020-01-31 13:48:28 -0800834
Mathias Agopian13127d82013-03-05 17:47:11 -0800835 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800836}
837
Vishnu Naira156f482023-02-22 00:23:38 +0000838void Layer::commitTransaction(State&) {
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +0000839 // Set the present state for all bufferlessSurfaceFramesTX to Presented. The
840 // bufferSurfaceFrameTX will be presented in latchBuffer.
841 for (auto& [token, surfaceFrame] : mDrawingState.bufferlessSurfaceFramesTX) {
842 if (surfaceFrame->getPresentState() != PresentState::Presented) {
843 // With applyPendingStates, we could end up having presented surfaceframes from previous
844 // states
Vishnu Nair7fe69ed2023-02-13 10:13:26 -0800845 surfaceFrame->setPresentState(PresentState::Presented, mLastLatchTime);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +0000846 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
847 }
848 }
Robert Carr6a160312021-05-17 12:08:20 -0700849 mDrawingState.bufferlessSurfaceFramesTX.clear();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700850}
851
Dominik Laskowski9e168db2021-05-27 16:05:12 -0700852uint32_t Layer::clearTransactionFlags(uint32_t mask) {
853 const auto flags = mTransactionFlags & mask;
854 mTransactionFlags &= ~mask;
855 return flags;
Mathias Agopian13127d82013-03-05 17:47:11 -0800856}
857
Dominik Laskowski9e168db2021-05-27 16:05:12 -0700858void Layer::setTransactionFlags(uint32_t mask) {
859 mTransactionFlags |= mask;
Mathias Agopian13127d82013-03-05 17:47:11 -0800860}
861
Robert Carr1f0a16a2016-10-24 16:27:39 -0700862bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
863 ssize_t idx = mCurrentChildren.indexOf(childLayer);
864 if (idx < 0) {
865 return false;
866 }
867 if (childLayer->setLayer(z)) {
868 mCurrentChildren.removeAt(idx);
869 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800870 return true;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700871 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800872 return false;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700873}
874
Robert Carr503c7042017-09-27 15:06:08 -0700875bool Layer::setChildRelativeLayer(const sp<Layer>& childLayer,
876 const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
877 ssize_t idx = mCurrentChildren.indexOf(childLayer);
878 if (idx < 0) {
879 return false;
880 }
881 if (childLayer->setRelativeLayer(relativeToHandle, relativeZ)) {
882 mCurrentChildren.removeAt(idx);
883 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800884 return true;
Robert Carr503c7042017-09-27 15:06:08 -0700885 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800886 return false;
Robert Carr503c7042017-09-27 15:06:08 -0700887}
888
Robert Carrae060832016-11-28 10:51:00 -0800889bool Layer::setLayer(int32_t z) {
Robert Carr6a160312021-05-17 12:08:20 -0700890 if (mDrawingState.z == z && !usingRelativeZ(LayerVector::StateSet::Current)) return false;
891 mDrawingState.sequence++;
892 mDrawingState.z = z;
893 mDrawingState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700894
Robert Carra70e91c2021-06-11 13:59:52 -0700895 mFlinger->mSomeChildrenChanged = true;
896
Robert Carrdb66e622017-04-10 16:55:57 -0700897 // Discard all relative layering.
Robert Carr6a160312021-05-17 12:08:20 -0700898 if (mDrawingState.zOrderRelativeOf != nullptr) {
899 sp<Layer> strongRelative = mDrawingState.zOrderRelativeOf.promote();
Robert Carrdb66e622017-04-10 16:55:57 -0700900 if (strongRelative != nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -0700901 strongRelative->removeZOrderRelative(wp<Layer>::fromExisting(this));
Robert Carrdb66e622017-04-10 16:55:57 -0700902 }
chaviw606e5cf2019-03-01 10:12:10 -0800903 setZOrderRelativeOf(nullptr);
Robert Carrdb66e622017-04-10 16:55:57 -0700904 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800905 setTransactionFlags(eTransactionNeeded);
906 return true;
907}
Robert Carr1f0a16a2016-10-24 16:27:39 -0700908
Robert Carrdb66e622017-04-10 16:55:57 -0700909void Layer::removeZOrderRelative(const wp<Layer>& relative) {
Robert Carr6a160312021-05-17 12:08:20 -0700910 mDrawingState.zOrderRelatives.remove(relative);
911 mDrawingState.sequence++;
912 mDrawingState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700913 setTransactionFlags(eTransactionNeeded);
914}
915
916void Layer::addZOrderRelative(const wp<Layer>& relative) {
Robert Carr6a160312021-05-17 12:08:20 -0700917 mDrawingState.zOrderRelatives.add(relative);
918 mDrawingState.modified = true;
919 mDrawingState.sequence++;
Robert Carrdb66e622017-04-10 16:55:57 -0700920 setTransactionFlags(eTransactionNeeded);
921}
922
chaviw606e5cf2019-03-01 10:12:10 -0800923void Layer::setZOrderRelativeOf(const wp<Layer>& relativeOf) {
Robert Carr6a160312021-05-17 12:08:20 -0700924 mDrawingState.zOrderRelativeOf = relativeOf;
925 mDrawingState.sequence++;
926 mDrawingState.modified = true;
927 mDrawingState.isRelativeOf = relativeOf != nullptr;
chaviwbdb8b802019-10-14 09:17:12 -0700928
chaviw606e5cf2019-03-01 10:12:10 -0800929 setTransactionFlags(eTransactionNeeded);
930}
931
Robert Carr503d2bd2017-12-04 15:49:47 -0800932bool Layer::setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
Vishnu Nair07e2a482022-10-18 19:18:16 +0000933 sp<Layer> relative = LayerHandle::getLayer(relativeToHandle);
Robert Carrdb66e622017-04-10 16:55:57 -0700934 if (relative == nullptr) {
935 return false;
936 }
937
Robert Carr6a160312021-05-17 12:08:20 -0700938 if (mDrawingState.z == relativeZ && usingRelativeZ(LayerVector::StateSet::Current) &&
939 mDrawingState.zOrderRelativeOf == relative) {
Robert Carr503d2bd2017-12-04 15:49:47 -0800940 return false;
941 }
942
Robert Carr88b85e12022-03-21 15:47:35 -0700943 if (CC_UNLIKELY(relative->usingRelativeZ(LayerVector::StateSet::Drawing)) &&
944 (relative->mDrawingState.zOrderRelativeOf == this)) {
945 ALOGE("Detected relative layer loop between %s and %s",
946 mName.c_str(), relative->mName.c_str());
947 ALOGE("Ignoring new call to set relative layer");
948 return false;
949 }
950
Robert Carra70e91c2021-06-11 13:59:52 -0700951 mFlinger->mSomeChildrenChanged = true;
952
Robert Carr6a160312021-05-17 12:08:20 -0700953 mDrawingState.sequence++;
954 mDrawingState.modified = true;
955 mDrawingState.z = relativeZ;
Robert Carrdb66e622017-04-10 16:55:57 -0700956
Robert Carr6a160312021-05-17 12:08:20 -0700957 auto oldZOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
chaviw9ab4bd12017-11-03 13:11:00 -0700958 if (oldZOrderRelativeOf != nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -0700959 oldZOrderRelativeOf->removeZOrderRelative(wp<Layer>::fromExisting(this));
chaviw9ab4bd12017-11-03 13:11:00 -0700960 }
chaviw606e5cf2019-03-01 10:12:10 -0800961 setZOrderRelativeOf(relative);
Ady Abrahamd11bade2022-08-01 16:18:03 -0700962 relative->addZOrderRelative(wp<Layer>::fromExisting(this));
Robert Carrdb66e622017-04-10 16:55:57 -0700963
964 setTransactionFlags(eTransactionNeeded);
965
966 return true;
967}
968
Winson Chunga30f7c92021-06-29 15:42:56 -0700969bool Layer::setTrustedOverlay(bool isTrustedOverlay) {
970 if (mDrawingState.isTrustedOverlay == isTrustedOverlay) return false;
971 mDrawingState.isTrustedOverlay = isTrustedOverlay;
972 mDrawingState.modified = true;
Arthur Hung9ed43392022-05-27 06:31:57 +0000973 mFlinger->mUpdateInputInfo = true;
Winson Chunga30f7c92021-06-29 15:42:56 -0700974 setTransactionFlags(eTransactionNeeded);
975 return true;
976}
977
978bool Layer::isTrustedOverlay() const {
979 if (getDrawingState().isTrustedOverlay) {
980 return true;
981 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +0000982 const auto& p = mDrawingParent.promote();
Winson Chunga30f7c92021-06-29 15:42:56 -0700983 return (p != nullptr) && p->isTrustedOverlay();
984}
985
Dan Stoza9e56aa02015-11-02 13:00:03 -0800986bool Layer::setAlpha(float alpha) {
Robert Carr6a160312021-05-17 12:08:20 -0700987 if (mDrawingState.color.a == alpha) return false;
988 mDrawingState.sequence++;
989 mDrawingState.color.a = alpha;
990 mDrawingState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800991 setTransactionFlags(eTransactionNeeded);
992 return true;
993}
chaviw13fdc492017-06-27 12:40:18 -0700994
Valerie Haudd0b7572019-01-29 14:59:27 -0800995bool Layer::setBackgroundColor(const half3& color, float alpha, ui::Dataspace dataspace) {
Robert Carr6a160312021-05-17 12:08:20 -0700996 if (!mDrawingState.bgColorLayer && alpha == 0) {
chaviw13fdc492017-06-27 12:40:18 -0700997 return false;
Valerie Hauaa194562019-02-05 16:21:38 -0800998 }
Robert Carr6a160312021-05-17 12:08:20 -0700999 mDrawingState.sequence++;
1000 mDrawingState.modified = true;
Valerie Hauaa194562019-02-05 16:21:38 -08001001 setTransactionFlags(eTransactionNeeded);
1002
Robert Carr6a160312021-05-17 12:08:20 -07001003 if (!mDrawingState.bgColorLayer && alpha != 0) {
Valerie Haudd0b7572019-01-29 14:59:27 -08001004 // create background color layer if one does not yet exist
Vishnu Nairfa247b12020-02-11 08:58:26 -08001005 uint32_t flags = ISurfaceComposerClient::eFXSurfaceEffect;
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001006 std::string name = mName + "BackgroundColorLayer";
Robert Carr6a160312021-05-17 12:08:20 -07001007 mDrawingState.bgColorLayer = mFlinger->getFactory().createEffectLayer(
Vishnu Nair7fb9e5a2021-11-08 12:44:05 -08001008 LayerCreationArgs(mFlinger.get(), nullptr, std::move(name), flags,
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001009 LayerMetadata()));
chaviw13fdc492017-06-27 12:40:18 -07001010
Valerie Haudd0b7572019-01-29 14:59:27 -08001011 // add to child list
Robert Carr6a160312021-05-17 12:08:20 -07001012 addChild(mDrawingState.bgColorLayer);
Valerie Haudd0b7572019-01-29 14:59:27 -08001013 mFlinger->mLayersAdded = true;
1014 // set up SF to handle added color layer
1015 if (isRemovedFromCurrentState()) {
Josh Gao194ff392022-09-08 16:19:29 -07001016 MUTEX_ALIAS(mFlinger->mStateLock, mDrawingState.bgColorLayer->mFlinger->mStateLock);
Robert Carr6a160312021-05-17 12:08:20 -07001017 mDrawingState.bgColorLayer->onRemovedFromCurrentState();
Valerie Haudd0b7572019-01-29 14:59:27 -08001018 }
1019 mFlinger->setTransactionFlags(eTransactionNeeded);
Robert Carr6a160312021-05-17 12:08:20 -07001020 } else if (mDrawingState.bgColorLayer && alpha == 0) {
Josh Gao194ff392022-09-08 16:19:29 -07001021 MUTEX_ALIAS(mFlinger->mStateLock, mDrawingState.bgColorLayer->mFlinger->mStateLock);
Robert Carr6a160312021-05-17 12:08:20 -07001022 mDrawingState.bgColorLayer->reparent(nullptr);
1023 mDrawingState.bgColorLayer = nullptr;
Valerie Haudd0b7572019-01-29 14:59:27 -08001024 return true;
1025 }
1026
Robert Carr6a160312021-05-17 12:08:20 -07001027 mDrawingState.bgColorLayer->setColor(color);
1028 mDrawingState.bgColorLayer->setLayer(std::numeric_limits<int32_t>::min());
1029 mDrawingState.bgColorLayer->setAlpha(alpha);
1030 mDrawingState.bgColorLayer->setDataspace(dataspace);
Valerie Haudd0b7572019-01-29 14:59:27 -08001031
chaviw13fdc492017-06-27 12:40:18 -07001032 return true;
1033}
1034
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001035bool Layer::setCornerRadius(float cornerRadius) {
Robert Carr6a160312021-05-17 12:08:20 -07001036 if (mDrawingState.cornerRadius == cornerRadius) return false;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001037
Robert Carr6a160312021-05-17 12:08:20 -07001038 mDrawingState.sequence++;
1039 mDrawingState.cornerRadius = cornerRadius;
1040 mDrawingState.modified = true;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001041 setTransactionFlags(eTransactionNeeded);
1042 return true;
1043}
1044
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08001045bool Layer::setBackgroundBlurRadius(int backgroundBlurRadius) {
Robert Carr6a160312021-05-17 12:08:20 -07001046 if (mDrawingState.backgroundBlurRadius == backgroundBlurRadius) return false;
Vishnu Nairb801a982021-11-02 15:12:08 -07001047 // If we start or stop drawing blur then the layer's visibility state may change so increment
1048 // the magic sequence number.
1049 if (mDrawingState.backgroundBlurRadius == 0 || backgroundBlurRadius == 0) {
1050 mDrawingState.sequence++;
1051 }
Robert Carr6a160312021-05-17 12:08:20 -07001052 mDrawingState.backgroundBlurRadius = backgroundBlurRadius;
1053 mDrawingState.modified = true;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08001054 setTransactionFlags(eTransactionNeeded);
1055 return true;
1056}
Marissa Wall61c58622018-07-18 10:12:20 -07001057
Mathias Agopian13127d82013-03-05 17:47:11 -08001058bool Layer::setTransparentRegionHint(const Region& transparent) {
Vishnu Nairea04b6f2022-08-19 21:28:17 +00001059 mDrawingState.sequence++;
1060 mDrawingState.transparentRegionHint = transparent;
Robert Carr6a160312021-05-17 12:08:20 -07001061 mDrawingState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001062 setTransactionFlags(eTransactionNeeded);
1063 return true;
1064}
Ana Krulecc84d09b2019-11-02 23:10:29 +01001065
Lucas Dupinc3800b82020-10-02 16:24:48 -07001066bool Layer::setBlurRegions(const std::vector<BlurRegion>& blurRegions) {
Vishnu Nairb801a982021-11-02 15:12:08 -07001067 // If we start or stop drawing blur then the layer's visibility state may change so increment
1068 // the magic sequence number.
1069 if (mDrawingState.blurRegions.size() == 0 || blurRegions.size() == 0) {
1070 mDrawingState.sequence++;
1071 }
Robert Carr6a160312021-05-17 12:08:20 -07001072 mDrawingState.blurRegions = blurRegions;
1073 mDrawingState.modified = true;
Lucas Dupinc3800b82020-10-02 16:24:48 -07001074 setTransactionFlags(eTransactionNeeded);
1075 return true;
1076}
1077
Vishnu Nairf6eddb62021-01-27 22:02:11 -08001078bool Layer::setFlags(uint32_t flags, uint32_t mask) {
Robert Carr6a160312021-05-17 12:08:20 -07001079 const uint32_t newFlags = (mDrawingState.flags & ~mask) | (flags & mask);
1080 if (mDrawingState.flags == newFlags) return false;
1081 mDrawingState.sequence++;
1082 mDrawingState.flags = newFlags;
1083 mDrawingState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001084 setTransactionFlags(eTransactionNeeded);
1085 return true;
1086}
Robert Carr99e27f02016-06-16 15:18:02 -07001087
chaviw25714502021-02-11 10:01:08 -08001088bool Layer::setCrop(const Rect& crop) {
Vishnu Nairea04b6f2022-08-19 21:28:17 +00001089 if (mDrawingState.crop == crop) return false;
Robert Carr6a160312021-05-17 12:08:20 -07001090 mDrawingState.sequence++;
Robert Carr6a160312021-05-17 12:08:20 -07001091 mDrawingState.crop = crop;
Robert Carr7bf247e2017-05-18 14:02:49 -07001092
Robert Carr6a160312021-05-17 12:08:20 -07001093 mDrawingState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001094 setTransactionFlags(eTransactionNeeded);
1095 return true;
1096}
Robert Carr8d5227b2017-03-16 15:41:03 -07001097
Evan Roskyef876c92019-01-25 17:46:06 -08001098bool Layer::setMetadata(const LayerMetadata& data) {
Robert Carr6a160312021-05-17 12:08:20 -07001099 if (!mDrawingState.metadata.merge(data, true /* eraseEmpty */)) return false;
1100 mDrawingState.modified = true;
David Sodman41fdfc92017-11-06 16:09:56 -08001101 setTransactionFlags(eTransactionNeeded);
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001102 return true;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001103}
1104
Dominik Laskowski29fa1462021-04-27 15:51:50 -07001105bool Layer::setLayerStack(ui::LayerStack layerStack) {
Robert Carr6a160312021-05-17 12:08:20 -07001106 if (mDrawingState.layerStack == layerStack) return false;
1107 mDrawingState.sequence++;
1108 mDrawingState.layerStack = layerStack;
1109 mDrawingState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001110 setTransactionFlags(eTransactionNeeded);
1111 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001112}
1113
Peiyong Linc502cb72019-03-01 15:00:23 -08001114bool Layer::setColorSpaceAgnostic(const bool agnostic) {
Robert Carr6a160312021-05-17 12:08:20 -07001115 if (mDrawingState.colorSpaceAgnostic == agnostic) {
Peiyong Linc502cb72019-03-01 15:00:23 -08001116 return false;
1117 }
Robert Carr6a160312021-05-17 12:08:20 -07001118 mDrawingState.sequence++;
1119 mDrawingState.colorSpaceAgnostic = agnostic;
1120 mDrawingState.modified = true;
Peiyong Linc502cb72019-03-01 15:00:23 -08001121 setTransactionFlags(eTransactionNeeded);
1122 return true;
1123}
1124
Sally Qi81d95e62022-03-21 19:41:33 -07001125bool Layer::setDimmingEnabled(const bool dimmingEnabled) {
1126 if (mDrawingState.dimmingEnabled == dimmingEnabled) return false;
1127
1128 mDrawingState.sequence++;
1129 mDrawingState.dimmingEnabled = dimmingEnabled;
1130 mDrawingState.modified = true;
1131 setTransactionFlags(eTransactionNeeded);
1132 return true;
1133}
1134
Ana Krulecc84d09b2019-11-02 23:10:29 +01001135bool Layer::setFrameRateSelectionPriority(int32_t priority) {
Robert Carr6a160312021-05-17 12:08:20 -07001136 if (mDrawingState.frameRateSelectionPriority == priority) return false;
1137 mDrawingState.frameRateSelectionPriority = priority;
1138 mDrawingState.sequence++;
1139 mDrawingState.modified = true;
Ana Krulecc84d09b2019-11-02 23:10:29 +01001140 setTransactionFlags(eTransactionNeeded);
1141 return true;
1142}
1143
1144int32_t Layer::getFrameRateSelectionPriority() const {
1145 // Check if layer has priority set.
1146 if (mDrawingState.frameRateSelectionPriority != PRIORITY_UNSET) {
1147 return mDrawingState.frameRateSelectionPriority;
1148 }
1149 // If not, search whether its parents have it set.
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001150 sp<Layer> parent = getParent();
Ana Krulecc84d09b2019-11-02 23:10:29 +01001151 if (parent != nullptr) {
1152 return parent->getFrameRateSelectionPriority();
1153 }
1154
1155 return Layer::PRIORITY_UNSET;
1156}
1157
Andy Labrada096227e2022-06-15 16:58:11 +00001158bool Layer::setDefaultFrameRateCompatibility(FrameRateCompatibility compatibility) {
1159 if (mDrawingState.defaultFrameRateCompatibility == compatibility) return false;
1160 mDrawingState.defaultFrameRateCompatibility = compatibility;
1161 mDrawingState.modified = true;
1162 mFlinger->mScheduler->setDefaultFrameRateCompatibility(this);
1163 setTransactionFlags(eTransactionNeeded);
1164 return true;
1165}
1166
1167scheduler::LayerInfo::FrameRateCompatibility Layer::getDefaultFrameRateCompatibility() const {
1168 return mDrawingState.defaultFrameRateCompatibility;
1169}
1170
Ady Abrahamaae5ed52020-06-26 09:32:43 -07001171bool Layer::isLayerFocusedBasedOnPriority(int32_t priority) {
1172 return priority == PRIORITY_FOCUSED_WITH_MODE || priority == PRIORITY_FOCUSED_WITHOUT_MODE;
1173};
1174
Vishnu Nair73908d12022-10-24 21:46:42 -07001175ui::LayerStack Layer::getLayerStack(LayerVector::StateSet state) const {
1176 bool useDrawing = state == LayerVector::StateSet::Drawing;
1177 const auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
1178 if (parent) {
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001179 return parent->getLayerStack();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001180 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001181 return getDrawingState().layerStack;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001182}
1183
Vishnu Nairc97b8db2019-10-29 18:19:35 -07001184bool Layer::setShadowRadius(float shadowRadius) {
Robert Carr6a160312021-05-17 12:08:20 -07001185 if (mDrawingState.shadowRadius == shadowRadius) {
Vishnu Nairc97b8db2019-10-29 18:19:35 -07001186 return false;
1187 }
1188
Robert Carr6a160312021-05-17 12:08:20 -07001189 mDrawingState.sequence++;
1190 mDrawingState.shadowRadius = shadowRadius;
1191 mDrawingState.modified = true;
Vishnu Nairc97b8db2019-10-29 18:19:35 -07001192 setTransactionFlags(eTransactionNeeded);
1193 return true;
1194}
1195
Vishnu Nair6213bd92020-05-08 17:42:25 -07001196bool Layer::setFixedTransformHint(ui::Transform::RotationFlags fixedTransformHint) {
Robert Carr6a160312021-05-17 12:08:20 -07001197 if (mDrawingState.fixedTransformHint == fixedTransformHint) {
Vishnu Nair6213bd92020-05-08 17:42:25 -07001198 return false;
1199 }
1200
Robert Carr6a160312021-05-17 12:08:20 -07001201 mDrawingState.sequence++;
1202 mDrawingState.fixedTransformHint = fixedTransformHint;
1203 mDrawingState.modified = true;
Vishnu Nair6213bd92020-05-08 17:42:25 -07001204 setTransactionFlags(eTransactionNeeded);
1205 return true;
1206}
1207
John Reckcdb4ed72021-02-04 13:39:33 -05001208bool Layer::setStretchEffect(const StretchEffect& effect) {
1209 StretchEffect temp = effect;
1210 temp.sanitize();
Robert Carr6a160312021-05-17 12:08:20 -07001211 if (mDrawingState.stretchEffect == temp) {
John Reckcdb4ed72021-02-04 13:39:33 -05001212 return false;
1213 }
Robert Carr6a160312021-05-17 12:08:20 -07001214 mDrawingState.sequence++;
1215 mDrawingState.stretchEffect = temp;
1216 mDrawingState.modified = true;
John Reckcdb4ed72021-02-04 13:39:33 -05001217 setTransactionFlags(eTransactionNeeded);
1218 return true;
1219}
1220
John Reckc00c6692021-02-16 11:37:33 -05001221StretchEffect Layer::getStretchEffect() const {
1222 if (mDrawingState.stretchEffect.hasEffect()) {
1223 return mDrawingState.stretchEffect;
1224 }
1225
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001226 sp<Layer> parent = getParent();
John Reckc00c6692021-02-16 11:37:33 -05001227 if (parent != nullptr) {
1228 auto effect = parent->getStretchEffect();
1229 if (effect.hasEffect()) {
1230 // TODO(b/179047472): Map it? Or do we make the effect be in global space?
1231 return effect;
1232 }
1233 }
1234 return StretchEffect{};
1235}
1236
Tianhao Yao10cea3c2022-03-30 01:37:22 +00001237bool Layer::enableBorder(bool shouldEnable, float width, const half4& color) {
1238 if (mBorderEnabled == shouldEnable && mBorderWidth == width && mBorderColor == color) {
Tianhao Yao67dd7122022-02-22 17:48:33 +00001239 return false;
1240 }
1241 mBorderEnabled = shouldEnable;
Tianhao Yao10cea3c2022-03-30 01:37:22 +00001242 mBorderWidth = width;
1243 mBorderColor = color;
Tianhao Yao67dd7122022-02-22 17:48:33 +00001244 return true;
1245}
1246
1247bool Layer::isBorderEnabled() {
1248 return mBorderEnabled;
1249}
1250
Tianhao Yao10cea3c2022-03-30 01:37:22 +00001251float Layer::getBorderWidth() {
1252 return mBorderWidth;
1253}
1254
1255const half4& Layer::getBorderColor() {
1256 return mBorderColor;
1257}
1258
Ady Abrahama850c182021-08-04 13:04:37 -07001259bool Layer::propagateFrameRateForLayerTree(FrameRate parentFrameRate, bool* transactionNeeded) {
1260 // The frame rate for layer tree is this layer's frame rate if present, or the parent frame rate
1261 const auto frameRate = [&] {
1262 if (mDrawingState.frameRate.rate.isValid() ||
1263 mDrawingState.frameRate.type == FrameRateCompatibility::NoVote) {
1264 return mDrawingState.frameRate;
1265 }
1266
1267 return parentFrameRate;
1268 }();
1269
Vishnu Nairef68d6d2023-02-28 06:18:27 +00001270 *transactionNeeded |= setFrameRateForLayerTreeLegacy(frameRate);
Ady Abrahama850c182021-08-04 13:04:37 -07001271
1272 // The frame rate is propagated to the children
1273 bool childrenHaveFrameRate = false;
1274 for (const sp<Layer>& child : mCurrentChildren) {
1275 childrenHaveFrameRate |=
1276 child->propagateFrameRateForLayerTree(frameRate, transactionNeeded);
1277 }
1278
1279 // If we don't have a valid frame rate, but the children do, we set this
1280 // layer as NoVote to allow the children to control the refresh rate
1281 if (!frameRate.rate.isValid() && frameRate.type != FrameRateCompatibility::NoVote &&
1282 childrenHaveFrameRate) {
1283 *transactionNeeded |=
Vishnu Nairef68d6d2023-02-28 06:18:27 +00001284 setFrameRateForLayerTreeLegacy(FrameRate(Fps(), FrameRateCompatibility::NoVote));
Ady Abrahama850c182021-08-04 13:04:37 -07001285 }
1286
1287 // We return whether this layer ot its children has a vote. We ignore ExactOrMultiple votes for
1288 // the same reason we are allowing touch boost for those layers. See
Ady Abraham68636062022-11-16 17:07:25 -08001289 // RefreshRateSelector::rankFrameRates for details.
Ady Abrahama850c182021-08-04 13:04:37 -07001290 const auto layerVotedWithDefaultCompatibility =
1291 frameRate.rate.isValid() && frameRate.type == FrameRateCompatibility::Default;
1292 const auto layerVotedWithNoVote = frameRate.type == FrameRateCompatibility::NoVote;
1293 const auto layerVotedWithExactCompatibility =
1294 frameRate.rate.isValid() && frameRate.type == FrameRateCompatibility::Exact;
1295 return layerVotedWithDefaultCompatibility || layerVotedWithNoVote ||
1296 layerVotedWithExactCompatibility || childrenHaveFrameRate;
1297}
1298
Ady Abraham60e42ea2020-03-09 19:17:31 -07001299void Layer::updateTreeHasFrameRateVote() {
Ady Abrahama850c182021-08-04 13:04:37 -07001300 const auto root = [&]() -> sp<Layer> {
Ady Abrahamd11bade2022-08-01 16:18:03 -07001301 sp<Layer> layer = sp<Layer>::fromExisting(this);
Ady Abrahama850c182021-08-04 13:04:37 -07001302 while (auto parent = layer->getParent()) {
1303 layer = parent;
Ady Abraham60e42ea2020-03-09 19:17:31 -07001304 }
Ady Abrahama850c182021-08-04 13:04:37 -07001305 return layer;
1306 }();
Ady Abraham60e42ea2020-03-09 19:17:31 -07001307
Ady Abraham60e42ea2020-03-09 19:17:31 -07001308 bool transactionNeeded = false;
Ady Abrahama850c182021-08-04 13:04:37 -07001309 root->propagateFrameRateForLayerTree({}, &transactionNeeded);
Robert Carr6a160312021-05-17 12:08:20 -07001310
Ady Abrahama850c182021-08-04 13:04:37 -07001311 // TODO(b/195668952): we probably don't need eTraversalNeeded here
Ady Abraham60e42ea2020-03-09 19:17:31 -07001312 if (transactionNeeded) {
1313 mFlinger->setTransactionFlags(eTraversalNeeded);
1314 }
1315}
1316
Ady Abraham71c437d2020-01-31 15:56:57 -08001317bool Layer::setFrameRate(FrameRate frameRate) {
Robert Carr6a160312021-05-17 12:08:20 -07001318 if (mDrawingState.frameRate == frameRate) {
Steven Thomas3172e202020-01-06 19:25:30 -08001319 return false;
1320 }
1321
Robert Carr6a160312021-05-17 12:08:20 -07001322 mDrawingState.sequence++;
1323 mDrawingState.frameRate = frameRate;
1324 mDrawingState.modified = true;
Ady Abraham60e42ea2020-03-09 19:17:31 -07001325
1326 updateTreeHasFrameRateVote();
1327
Steven Thomas3172e202020-01-06 19:25:30 -08001328 setTransactionFlags(eTransactionNeeded);
1329 return true;
1330}
1331
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001332void Layer::setFrameTimelineVsyncForBufferTransaction(const FrameTimelineInfo& info,
1333 nsecs_t postTime) {
Robert Carr6a160312021-05-17 12:08:20 -07001334 mDrawingState.postTime = postTime;
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001335
1336 // Check if one of the bufferlessSurfaceFramesTX contains the same vsyncId. This can happen if
1337 // there are two transactions with the same token, the first one without a buffer and the
1338 // second one with a buffer. We promote the bufferlessSurfaceFrame to a bufferSurfaceFrameTX
1339 // in that case.
Robert Carr6a160312021-05-17 12:08:20 -07001340 auto it = mDrawingState.bufferlessSurfaceFramesTX.find(info.vsyncId);
1341 if (it != mDrawingState.bufferlessSurfaceFramesTX.end()) {
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001342 // Promote the bufferlessSurfaceFrame to a bufferSurfaceFrameTX
Robert Carr6a160312021-05-17 12:08:20 -07001343 mDrawingState.bufferSurfaceFrameTX = it->second;
1344 mDrawingState.bufferlessSurfaceFramesTX.erase(it);
1345 mDrawingState.bufferSurfaceFrameTX->promoteToBuffer();
1346 mDrawingState.bufferSurfaceFrameTX->setActualQueueTime(postTime);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001347 } else {
Robert Carr6a160312021-05-17 12:08:20 -07001348 mDrawingState.bufferSurfaceFrameTX =
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001349 createSurfaceFrameForBuffer(info, postTime, mTransactionName);
1350 }
1351}
1352
1353void Layer::setFrameTimelineVsyncForBufferlessTransaction(const FrameTimelineInfo& info,
1354 nsecs_t postTime) {
Robert Carr6a160312021-05-17 12:08:20 -07001355 mDrawingState.frameTimelineInfo = info;
1356 mDrawingState.postTime = postTime;
1357 mDrawingState.modified = true;
Ady Abraham22c7b5c2020-09-22 19:33:40 -07001358 setTransactionFlags(eTransactionNeeded);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001359
Robert Carr6a160312021-05-17 12:08:20 -07001360 if (const auto& bufferSurfaceFrameTX = mDrawingState.bufferSurfaceFrameTX;
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001361 bufferSurfaceFrameTX != nullptr) {
1362 if (bufferSurfaceFrameTX->getToken() == info.vsyncId) {
1363 // BufferSurfaceFrame takes precedence over BufferlessSurfaceFrame. If the same token is
1364 // being used for BufferSurfaceFrame, don't create a new one.
1365 return;
1366 }
1367 }
1368 // For Transactions without a buffer, we create only one SurfaceFrame per vsyncId. If multiple
1369 // transactions use the same vsyncId, we just treat them as one SurfaceFrame (unless they are
1370 // targeting different vsyncs).
Robert Carr6a160312021-05-17 12:08:20 -07001371 auto it = mDrawingState.bufferlessSurfaceFramesTX.find(info.vsyncId);
1372 if (it == mDrawingState.bufferlessSurfaceFramesTX.end()) {
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001373 auto surfaceFrame = createSurfaceFrameForTransaction(info, postTime);
Robert Carr6a160312021-05-17 12:08:20 -07001374 mDrawingState.bufferlessSurfaceFramesTX[info.vsyncId] = surfaceFrame;
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001375 } else {
1376 if (it->second->getPresentState() == PresentState::Presented) {
1377 // If the SurfaceFrame was already presented, its safe to overwrite it since it must
1378 // have been from previous vsync.
1379 it->second = createSurfaceFrameForTransaction(info, postTime);
1380 }
1381 }
1382}
1383
1384void Layer::addSurfaceFrameDroppedForBuffer(
1385 std::shared_ptr<frametimeline::SurfaceFrame>& surfaceFrame) {
Adithya Srinivasan061c14c2021-02-11 01:19:47 +00001386 surfaceFrame->setDropTime(systemTime());
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001387 surfaceFrame->setPresentState(PresentState::Dropped);
1388 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
1389}
1390
1391void Layer::addSurfaceFramePresentedForBuffer(
1392 std::shared_ptr<frametimeline::SurfaceFrame>& surfaceFrame, nsecs_t acquireFenceTime,
1393 nsecs_t currentLatchTime) {
1394 surfaceFrame->setAcquireFenceTime(acquireFenceTime);
1395 surfaceFrame->setPresentState(PresentState::Presented, mLastLatchTime);
1396 mFlinger->mFrameTimeline->addSurfaceFrame(surfaceFrame);
Vishnu Naira156f482023-02-22 00:23:38 +00001397 updateLastLatchTime(currentLatchTime);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001398}
1399
1400std::shared_ptr<frametimeline::SurfaceFrame> Layer::createSurfaceFrameForTransaction(
1401 const FrameTimelineInfo& info, nsecs_t postTime) {
1402 auto surfaceFrame =
Alec Mouriadebf5c2021-01-05 12:57:36 -08001403 mFlinger->mFrameTimeline->createSurfaceFrameForToken(info, mOwnerPid, mOwnerUid,
1404 getSequence(), mName,
Adithya Srinivasan785addd2021-03-09 00:38:00 +00001405 mTransactionName,
Adithya Srinivasan58069dc2021-06-04 20:37:02 +00001406 /*isBuffer*/ false, getGameMode());
Rachel Leeed511ef2021-10-11 15:09:51 -07001407 surfaceFrame->setActualStartTime(info.startTimeNanos);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001408 // For Transactions, the post time is considered to be both queue and acquire fence time.
1409 surfaceFrame->setActualQueueTime(postTime);
1410 surfaceFrame->setAcquireFenceTime(postTime);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001411 const auto fps = mFlinger->mScheduler->getFrameRateOverride(getOwnerUid());
1412 if (fps) {
Alec Mouri819f6302021-02-12 15:37:21 -08001413 surfaceFrame->setRenderRate(*fps);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001414 }
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001415 onSurfaceFrameCreated(surfaceFrame);
1416 return surfaceFrame;
1417}
1418
1419std::shared_ptr<frametimeline::SurfaceFrame> Layer::createSurfaceFrameForBuffer(
1420 const FrameTimelineInfo& info, nsecs_t queueTime, std::string debugName) {
1421 auto surfaceFrame =
Alec Mouriadebf5c2021-01-05 12:57:36 -08001422 mFlinger->mFrameTimeline->createSurfaceFrameForToken(info, mOwnerPid, mOwnerUid,
Adithya Srinivasan785addd2021-03-09 00:38:00 +00001423 getSequence(), mName, debugName,
Adithya Srinivasan58069dc2021-06-04 20:37:02 +00001424 /*isBuffer*/ true, getGameMode());
Rachel Leeed511ef2021-10-11 15:09:51 -07001425 surfaceFrame->setActualStartTime(info.startTimeNanos);
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001426 // For buffers, acquire fence time will set during latch.
1427 surfaceFrame->setActualQueueTime(queueTime);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001428 const auto fps = mFlinger->mScheduler->getFrameRateOverride(getOwnerUid());
1429 if (fps) {
Alec Mouri819f6302021-02-12 15:37:21 -08001430 surfaceFrame->setRenderRate(*fps);
Alec Mouri7d436ec2021-01-27 20:40:50 -08001431 }
Adithya Srinivasanb9a7dab2021-01-14 23:49:46 +00001432 onSurfaceFrameCreated(surfaceFrame);
1433 return surfaceFrame;
Ady Abraham74e17562020-08-24 18:18:19 -07001434}
1435
Vishnu Nairef68d6d2023-02-28 06:18:27 +00001436bool Layer::setFrameRateForLayerTreeLegacy(FrameRate frameRate) {
Ady Abrahama850c182021-08-04 13:04:37 -07001437 if (mDrawingState.frameRateForLayerTree == frameRate) {
1438 return false;
Ady Abraham60e42ea2020-03-09 19:17:31 -07001439 }
1440
Ady Abrahama850c182021-08-04 13:04:37 -07001441 mDrawingState.frameRateForLayerTree = frameRate;
Ady Abrahamf467f892020-07-31 16:01:53 -07001442
Ady Abrahama850c182021-08-04 13:04:37 -07001443 // TODO(b/195668952): we probably don't need to dirty visible regions here
1444 // or even store frameRateForLayerTree in mDrawingState
1445 mDrawingState.sequence++;
1446 mDrawingState.modified = true;
1447 setTransactionFlags(eTransactionNeeded);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001448
Vishnu Nairef68d6d2023-02-28 06:18:27 +00001449 mFlinger->mScheduler
1450 ->recordLayerHistory(sequence, getLayerProps(), systemTime(),
1451 scheduler::LayerHistory::LayerUpdateType::SetFrameRate);
1452 return true;
1453}
Ady Abrahama850c182021-08-04 13:04:37 -07001454
Vishnu Nairef68d6d2023-02-28 06:18:27 +00001455bool Layer::setFrameRateForLayerTree(FrameRate frameRate, const scheduler::LayerProps& layerProps) {
1456 if (mDrawingState.frameRateForLayerTree == frameRate) {
1457 return false;
1458 }
1459
1460 mDrawingState.frameRateForLayerTree = frameRate;
1461 mFlinger->mScheduler
1462 ->recordLayerHistory(sequence, layerProps, systemTime(),
1463 scheduler::LayerHistory::LayerUpdateType::SetFrameRate);
Ady Abrahama850c182021-08-04 13:04:37 -07001464 return true;
Steven Thomas3172e202020-01-06 19:25:30 -08001465}
1466
Ady Abraham59fd8ff2021-04-15 20:13:30 -07001467Layer::FrameRate Layer::getFrameRateForLayerTree() const {
1468 return getDrawingState().frameRateForLayerTree;
1469}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001470
Robert Carr1f0a16a2016-10-24 16:27:39 -07001471bool Layer::isHiddenByPolicy() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001472 const State& s(mDrawingState);
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001473 const auto& parent = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001474 if (parent != nullptr && parent->isHiddenByPolicy()) {
1475 return true;
1476 }
Robert Carr1c5481e2019-07-01 14:42:27 -07001477 if (usingRelativeZ(LayerVector::StateSet::Drawing)) {
1478 auto zOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
1479 if (zOrderRelativeOf != nullptr) {
1480 if (zOrderRelativeOf->isHiddenByPolicy()) {
1481 return true;
1482 }
1483 }
1484 }
Garfield Tan2c1782c2022-02-16 15:25:05 -08001485 if (CC_UNLIKELY(!isTransformValid())) {
1486 ALOGW("Hide layer %s because it has invalid transformation.", getDebugName());
1487 return true;
1488 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001489 return s.flags & layer_state_t::eLayerHidden;
1490}
1491
David Sodman41fdfc92017-11-06 16:09:56 -08001492uint32_t Layer::getEffectiveUsage(uint32_t usage) const {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001493 // TODO: should we do something special if mSecure is set?
1494 if (mProtectedByApp) {
1495 // need a hardware-protected path to external video sink
1496 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07001497 }
Riley Andrews03414a12014-07-01 14:22:59 -07001498 if (mPotentialCursor) {
1499 usage |= GraphicBuffer::USAGE_CURSOR;
1500 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07001501 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001502 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001503}
1504
Vishnu Nair71fcf912022-10-18 09:14:20 -07001505void Layer::skipReportingTransformHint() {
1506 mSkipReportingTransformHint = true;
1507}
1508
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001509void Layer::updateTransformHint(ui::Transform::RotationFlags transformHint) {
1510 if (mFlinger->mDebugDisableTransformHint || transformHint & ui::Transform::ROT_INVALID) {
1511 transformHint = ui::Transform::ROT_0;
Mathias Agopiana4583642011-08-23 18:03:18 -07001512 }
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001513
Vishnu Nairb76d99a2023-03-19 18:22:31 -07001514 setTransformHintLegacy(transformHint);
Mathias Agopiana4583642011-08-23 18:03:18 -07001515}
1516
Mathias Agopian13127d82013-03-05 17:47:11 -08001517// ----------------------------------------------------------------------------
1518// debugging
1519// ----------------------------------------------------------------------------
1520
Marissa Wall61c58622018-07-18 10:12:20 -07001521// TODO(marissaw): add new layer state info to layer debugging
Huihong Luo05539a12022-02-23 10:29:40 -08001522gui::LayerDebugInfo Layer::getLayerDebugInfo(const DisplayDevice* display) const {
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001523 using namespace std::string_literals;
1524
Huihong Luo05539a12022-02-23 10:29:40 -08001525 gui::LayerDebugInfo info;
Alec Mourib416efd2018-09-06 21:01:59 +00001526 const State& ds = getDrawingState();
Kalle Raitaa099a242017-01-11 11:17:29 -08001527 info.mName = getName();
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001528 sp<Layer> parent = mDrawingParent.promote();
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001529 info.mParentName = parent ? parent->getName() : "none"s;
chaviw8a01fa42019-08-19 12:39:31 -07001530 info.mType = getType();
Lloyd Piquea2468662019-03-07 21:31:06 -08001531
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001532 info.mVisibleRegion = getVisibleRegion(display);
Kalle Raitaa099a242017-01-11 11:17:29 -08001533 info.mSurfaceDamageRegion = surfaceDamageRegion;
Dominik Laskowski29fa1462021-04-27 15:51:50 -07001534 info.mLayerStack = getLayerStack().id;
chaviw4e765532021-04-30 12:11:39 -05001535 info.mX = ds.transform.tx();
1536 info.mY = ds.transform.ty();
Kalle Raitaa099a242017-01-11 11:17:29 -08001537 info.mZ = ds.z;
chaviw25714502021-02-11 10:01:08 -08001538 info.mCrop = ds.crop;
chaviw13fdc492017-06-27 12:40:18 -07001539 info.mColor = ds.color;
Kalle Raitaa099a242017-01-11 11:17:29 -08001540 info.mFlags = ds.flags;
1541 info.mPixelFormat = getPixelFormat();
chaviw4244e032019-09-04 11:27:49 -07001542 info.mDataSpace = static_cast<android_dataspace>(getDataSpace());
chaviw4e765532021-04-30 12:11:39 -05001543 info.mMatrix[0][0] = ds.transform[0][0];
1544 info.mMatrix[0][1] = ds.transform[0][1];
1545 info.mMatrix[1][0] = ds.transform[1][0];
1546 info.mMatrix[1][1] = ds.transform[1][1];
Kalle Raitaa099a242017-01-11 11:17:29 -08001547 {
chaviwd62d3062019-09-04 14:48:02 -07001548 sp<const GraphicBuffer> buffer = getBuffer();
David Sodman5b4cffc2017-11-23 13:20:29 -08001549 if (buffer != 0) {
1550 info.mActiveBufferWidth = buffer->getWidth();
1551 info.mActiveBufferHeight = buffer->getHeight();
1552 info.mActiveBufferStride = buffer->getStride();
1553 info.mActiveBufferFormat = buffer->format;
Kalle Raitaa099a242017-01-11 11:17:29 -08001554 } else {
1555 info.mActiveBufferWidth = 0;
1556 info.mActiveBufferHeight = 0;
1557 info.mActiveBufferStride = 0;
1558 info.mActiveBufferFormat = 0;
1559 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001560 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001561 info.mNumQueuedFrames = getQueuedFrameCount();
Kalle Raitaa099a242017-01-11 11:17:29 -08001562 info.mIsOpaque = isOpaque(ds);
1563 info.mContentDirty = contentDirty;
John Reckc00c6692021-02-16 11:37:33 -05001564 info.mStretchEffect = getStretchEffect();
Kalle Raitaa099a242017-01-11 11:17:29 -08001565 return info;
Mathias Agopian13127d82013-03-05 17:47:11 -08001566}
Chia-I Wu83ce7c12017-10-19 15:18:55 -07001567
Yiwei Zhang5434a782018-12-05 18:06:32 -08001568void Layer::miniDumpHeader(std::string& result) {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001569 result.append(kDumpTableRowLength, '-');
1570 result.append("\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001571 result.append(" Layer name\n");
1572 result.append(" Z | ");
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001573 result.append(" Window Type | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001574 result.append(" Comp Type | ");
Yichi Chen6ca35192018-05-29 12:20:43 +08001575 result.append(" Transform | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001576 result.append(" Disp Frame (LTRB) | ");
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001577 result.append(" Source Crop (LTRB) | ");
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001578 result.append(" Frame Rate (Explicit) (Seamlessness) [Focused]\n");
1579 result.append(kDumpTableRowLength, '-');
1580 result.append("\n");
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001581}
1582
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001583void Layer::miniDump(std::string& result, const DisplayDevice& display) const {
1584 const auto outputLayer = findOutputLayerForDisplay(&display);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001585 if (!outputLayer) {
Dan Stozae22aec72016-08-01 13:20:59 -07001586 return;
1587 }
1588
Yiwei Zhang5434a782018-12-05 18:06:32 -08001589 std::string name;
Dan Stozae22aec72016-08-01 13:20:59 -07001590 if (mName.length() > 77) {
1591 std::string shortened;
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001592 shortened.append(mName, 0, 36);
Dan Stozae22aec72016-08-01 13:20:59 -07001593 shortened.append("[...]");
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001594 shortened.append(mName, mName.length() - 36);
1595 name = std::move(shortened);
Dan Stozae22aec72016-08-01 13:20:59 -07001596 } else {
Dominik Laskowski87a07e42019-10-10 20:38:02 -07001597 name = mName;
Dan Stozae22aec72016-08-01 13:20:59 -07001598 }
1599
Yiwei Zhang5434a782018-12-05 18:06:32 -08001600 StringAppendF(&result, " %s\n", name.c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07001601
Alec Mourib416efd2018-09-06 21:01:59 +00001602 const State& layerState(getDrawingState());
Lloyd Piquede196652020-01-22 17:29:58 -08001603 const auto& outputLayerState = outputLayer->getState();
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001604
Chia-I Wu1e043612018-03-01 09:45:09 -08001605 if (layerState.zOrderRelativeOf != nullptr || mDrawingParent != nullptr) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001606 StringAppendF(&result, " rel %6d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001607 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001608 StringAppendF(&result, " %10d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001609 }
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001610 StringAppendF(&result, " %10d | ", mWindowType);
Dominik Laskowskib7251f42020-04-20 17:42:59 -07001611 StringAppendF(&result, "%10s | ", toString(getCompositionType(display)).c_str());
Lloyd Piquede196652020-01-22 17:29:58 -08001612 StringAppendF(&result, "%10s | ", toString(outputLayerState.bufferTransform).c_str());
1613 const Rect& frame = outputLayerState.displayFrame;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001614 StringAppendF(&result, "%4d %4d %4d %4d | ", frame.left, frame.top, frame.right, frame.bottom);
Lloyd Piquede196652020-01-22 17:29:58 -08001615 const FloatRect& crop = outputLayerState.sourceCrop;
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001616 StringAppendF(&result, "%6.1f %6.1f %6.1f %6.1f | ", crop.left, crop.top, crop.right,
Yiwei Zhang5434a782018-12-05 18:06:32 -08001617 crop.bottom);
Ady Abrahamf467f892020-07-31 16:01:53 -07001618 const auto frameRate = getFrameRateForLayerTree();
1619 if (frameRate.rate.isValid() || frameRate.type != FrameRateCompatibility::Default) {
1620 StringAppendF(&result, "%s %15s %17s", to_string(frameRate.rate).c_str(),
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -07001621 ftl::enum_string(frameRate.type).c_str(),
1622 ftl::enum_string(frameRate.seamlessness).c_str());
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001623 } else {
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001624 result.append(41, ' ');
Ady Abrahambe23e6a2020-05-04 14:51:16 -07001625 }
Dan Stozae22aec72016-08-01 13:20:59 -07001626
Ady Abrahamaae5ed52020-06-26 09:32:43 -07001627 const auto focused = isLayerFocusedBasedOnPriority(getFrameRateSelectionPriority());
1628 StringAppendF(&result, " [%s]\n", focused ? "*" : " ");
1629
Marin Shalamanov1876e2e2020-12-04 13:23:59 +01001630 result.append(kDumpTableRowLength, '-');
1631 result.append("\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001632}
Dan Stozae22aec72016-08-01 13:20:59 -07001633
Yiwei Zhang5434a782018-12-05 18:06:32 -08001634void Layer::dumpFrameStats(std::string& result) const {
Svetoslavd85084b2014-03-20 10:28:31 -07001635 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08001636}
1637
Svetoslavd85084b2014-03-20 10:28:31 -07001638void Layer::clearFrameStats() {
1639 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08001640}
1641
Jamie Gennis6547ff42013-07-16 20:12:42 -07001642void Layer::logFrameStats() {
1643 mFrameTracker.logAndResetStats(mName);
1644}
1645
Svetoslavd85084b2014-03-20 10:28:31 -07001646void Layer::getFrameStats(FrameStats* outStats) const {
1647 mFrameTracker.getStats(outStats);
1648}
1649
Vishnu Nair76554eb2022-12-09 03:38:36 +00001650void Layer::dumpOffscreenDebugInfo(std::string& result) const {
1651 std::string hasBuffer = hasBufferOrSidebandStream() ? " (contains buffer)" : "";
1652 StringAppendF(&result, "Layer %s%s pid:%d uid:%d\n", getName().c_str(), hasBuffer.c_str(),
Vishnu Naircb8be502022-10-12 19:03:23 +00001653 mOwnerPid, mOwnerUid);
Vishnu Nair0f085c62019-08-30 08:49:12 -07001654}
1655
Brian Anderson5ea5e592016-12-01 16:54:33 -08001656void Layer::onDisconnect() {
Yiwei Zhang1a88c402019-11-18 10:43:58 -08001657 const int32_t layerId = getSequence();
1658 mFlinger->mTimeStats->onDestroy(layerId);
1659 mFlinger->mFrameTracer->onDestroy(layerId);
Brian Anderson5ea5e592016-12-01 16:54:33 -08001660}
1661
Vishnu Nair787aa782023-03-17 13:46:46 -07001662size_t Layer::getDescendantCount() const {
Chia-I Wu98f1c102017-05-30 14:54:08 -07001663 size_t count = 0;
Vishnu Nair787aa782023-03-17 13:46:46 -07001664 for (const sp<Layer>& child : mDrawingChildren) {
Chia-I Wu98f1c102017-05-30 14:54:08 -07001665 count += 1 + child->getChildrenCount();
1666 }
1667 return count;
1668}
1669
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -07001670void Layer::setGameModeForTree(GameMode gameMode) {
1671 const auto& currentState = getDrawingState();
Huihong Luod3d8f8e2022-03-08 14:48:46 -08001672 if (currentState.metadata.has(gui::METADATA_GAME_MODE)) {
1673 gameMode =
1674 static_cast<GameMode>(currentState.metadata.getInt32(gui::METADATA_GAME_MODE, 0));
Adithya Srinivasanac977e62021-05-21 22:50:56 +00001675 }
1676 setGameMode(gameMode);
1677 for (const sp<Layer>& child : mCurrentChildren) {
1678 child->setGameModeForTree(gameMode);
1679 }
1680}
1681
Robert Carr1f0a16a2016-10-24 16:27:39 -07001682void Layer::addChild(const sp<Layer>& layer) {
Robert Carre450fb52021-06-11 13:21:09 -07001683 mFlinger->mSomeChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001684 setTransactionFlags(eTransactionNeeded);
Robert Carr1323c952019-01-28 18:13:27 -08001685
Robert Carr1f0a16a2016-10-24 16:27:39 -07001686 mCurrentChildren.add(layer);
Ady Abrahamd11bade2022-08-01 16:18:03 -07001687 layer->setParent(sp<Layer>::fromExisting(this));
Adithya Srinivasanac977e62021-05-21 22:50:56 +00001688 layer->setGameModeForTree(mGameMode);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001689 updateTreeHasFrameRateVote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001690}
1691
1692ssize_t Layer::removeChild(const sp<Layer>& layer) {
Robert Carre450fb52021-06-11 13:21:09 -07001693 mFlinger->mSomeChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001694 setTransactionFlags(eTransactionNeeded);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001695
Robert Carr1323c952019-01-28 18:13:27 -08001696 layer->setParent(nullptr);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001697 const auto removeResult = mCurrentChildren.remove(layer);
1698
1699 updateTreeHasFrameRateVote();
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -07001700 layer->setGameModeForTree(GameMode::Unsupported);
Ady Abraham60e42ea2020-03-09 19:17:31 -07001701 layer->updateTreeHasFrameRateVote();
1702
1703 return removeResult;
1704}
1705
Robert Carr15eae092018-03-23 13:43:53 -07001706void Layer::setChildrenDrawingParent(const sp<Layer>& newParent) {
Robert Carr578038f2018-03-09 12:25:24 -08001707 for (const sp<Layer>& child : mDrawingChildren) {
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001708 child->mDrawingParent = newParent;
xinying1f4200e62022-04-26 14:41:30 +08001709 const float parentShadowRadius =
1710 newParent->canDrawShadows() ? 0.f : newParent->mEffectiveShadowRadius;
Vishnu Nair6bdec7d2021-05-10 15:01:13 -07001711 child->computeBounds(newParent->mBounds, newParent->mEffectiveTransform,
xinying1f4200e62022-04-26 14:41:30 +08001712 parentShadowRadius);
Robert Carr578038f2018-03-09 12:25:24 -08001713 }
1714}
1715
chaviwf1961f72017-09-18 16:41:07 -07001716bool Layer::reparent(const sp<IBinder>& newParentHandle) {
Robert Carr54cf5b12019-01-25 14:02:28 -08001717 sp<Layer> newParent;
1718 if (newParentHandle != nullptr) {
Vishnu Nair07e2a482022-10-18 19:18:16 +00001719 newParent = LayerHandle::getLayer(newParentHandle);
Robert Carr54cf5b12019-01-25 14:02:28 -08001720 if (newParent == nullptr) {
1721 ALOGE("Unable to promote Layer handle");
1722 return false;
1723 }
1724 if (newParent == this) {
1725 ALOGE("Invalid attempt to reparent Layer (%s) to itself", getName().c_str());
1726 return false;
1727 }
1728 }
1729
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001730 sp<Layer> parent = getParent();
chaviwf1961f72017-09-18 16:41:07 -07001731 if (parent != nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -07001732 parent->removeChild(sp<Layer>::fromExisting(this));
chaviw06178942017-07-27 10:25:59 -07001733 }
1734
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001735 if (newParentHandle != nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -07001736 newParent->addChild(sp<Layer>::fromExisting(this));
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001737 if (!newParent->isRemovedFromCurrentState()) {
1738 addToCurrentState();
1739 } else {
1740 onRemovedFromCurrentState();
1741 }
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001742 } else {
1743 onRemovedFromCurrentState();
chaviw61626f22018-11-15 16:26:27 -08001744 }
1745
chaviw06178942017-07-27 10:25:59 -07001746 return true;
1747}
1748
Peiyong Lind3788632018-09-18 16:01:31 -07001749bool Layer::setColorTransform(const mat4& matrix) {
Peiyong Lin747321c2018-10-01 10:03:11 -07001750 static const mat4 identityMatrix = mat4();
1751
Robert Carr6a160312021-05-17 12:08:20 -07001752 if (mDrawingState.colorTransform == matrix) {
Peiyong Lind3788632018-09-18 16:01:31 -07001753 return false;
1754 }
Robert Carr6a160312021-05-17 12:08:20 -07001755 ++mDrawingState.sequence;
1756 mDrawingState.colorTransform = matrix;
1757 mDrawingState.hasColorTransform = matrix != identityMatrix;
1758 mDrawingState.modified = true;
Peiyong Lind3788632018-09-18 16:01:31 -07001759 setTransactionFlags(eTransactionNeeded);
1760 return true;
1761}
1762
chaviwf66724d2018-11-28 16:35:21 -08001763mat4 Layer::getColorTransform() const {
1764 mat4 colorTransform = mat4(getDrawingState().colorTransform);
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001765 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
chaviwf66724d2018-11-28 16:35:21 -08001766 colorTransform = parent->getColorTransform() * colorTransform;
1767 }
1768 return colorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001769}
1770
1771bool Layer::hasColorTransform() const {
chaviwf66724d2018-11-28 16:35:21 -08001772 bool hasColorTransform = getDrawingState().hasColorTransform;
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001773 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
chaviwf66724d2018-11-28 16:35:21 -08001774 hasColorTransform = hasColorTransform || parent->hasColorTransform();
1775 }
1776 return hasColorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001777}
1778
Chia-I Wu11481472018-05-04 10:43:19 -07001779bool Layer::isLegacyDataSpace() const {
1780 // return true when no higher bits are set
chaviw4244e032019-09-04 11:27:49 -07001781 return !(getDataSpace() &
1782 (ui::Dataspace::STANDARD_MASK | ui::Dataspace::TRANSFER_MASK |
1783 ui::Dataspace::RANGE_MASK));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08001784}
1785
Robert Carr1f0a16a2016-10-24 16:27:39 -07001786void Layer::setParent(const sp<Layer>& layer) {
Rob Carrc6d2d2b2021-10-25 16:51:49 +00001787 mCurrentParent = layer;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001788}
1789
Robert Carr6a160312021-05-17 12:08:20 -07001790int32_t Layer::getZ(LayerVector::StateSet) const {
1791 return mDrawingState.z;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001792}
1793
Robert Carr1c5481e2019-07-01 14:42:27 -07001794bool Layer::usingRelativeZ(LayerVector::StateSet stateSet) const {
Robert Carr29abff82017-12-04 13:51:20 -08001795 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
Robert Carr6a160312021-05-17 12:08:20 -07001796 const State& state = useDrawing ? mDrawingState : mDrawingState;
chaviwe5ac40f2019-09-24 16:36:55 -07001797 return state.isRelativeOf;
Robert Carr29abff82017-12-04 13:51:20 -08001798}
1799
David Sodman41fdfc92017-11-06 16:09:56 -08001800__attribute__((no_sanitize("unsigned-integer-overflow"))) LayerVector Layer::makeTraversalList(
Robert Carr29abff82017-12-04 13:51:20 -08001801 LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers) {
Dan Stoza412903f2017-04-27 13:42:17 -07001802 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1803 "makeTraversalList received invalid stateSet");
1804 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1805 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Robert Carr6a160312021-05-17 12:08:20 -07001806 const State& state = useDrawing ? mDrawingState : mDrawingState;
Dan Stoza412903f2017-04-27 13:42:17 -07001807
Robert Carr29abff82017-12-04 13:51:20 -08001808 if (state.zOrderRelatives.size() == 0) {
1809 *outSkipRelativeZUsers = true;
1810 return children;
1811 }
1812
chaviwfd462612018-05-31 16:11:27 -07001813 LayerVector traverse(stateSet);
Dan Stoza412903f2017-04-27 13:42:17 -07001814 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
Robert Carrdb66e622017-04-10 16:55:57 -07001815 sp<Layer> strongRelative = weakRelative.promote();
1816 if (strongRelative != nullptr) {
1817 traverse.add(strongRelative);
Robert Carrdb66e622017-04-10 16:55:57 -07001818 }
1819 }
1820
Dan Stoza412903f2017-04-27 13:42:17 -07001821 for (const sp<Layer>& child : children) {
chaviwe5ac40f2019-09-24 16:36:55 -07001822 if (child->usingRelativeZ(stateSet)) {
Robert Carr503c7042017-09-27 15:06:08 -07001823 continue;
1824 }
Robert Carrdb66e622017-04-10 16:55:57 -07001825 traverse.add(child);
1826 }
1827
1828 return traverse;
1829}
1830
Robert Carr1f0a16a2016-10-24 16:27:39 -07001831/**
Robert Carrdb66e622017-04-10 16:55:57 -07001832 * Negatively signed relatives are before 'this' in Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001833 */
Dan Stoza412903f2017-04-27 13:42:17 -07001834void Layer::traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001835 // In the case we have other layers who are using a relative Z to us, makeTraversalList will
1836 // produce a new list for traversing, including our relatives, and not including our children
1837 // who are relatives of another surface. In the case that there are no relative Z,
1838 // makeTraversalList returns our children directly to avoid significant overhead.
1839 // However in this case we need to take the responsibility for filtering children which
1840 // are relatives of another surface here.
1841 bool skipRelativeZUsers = false;
1842 const LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001843
Robert Carr1f0a16a2016-10-24 16:27:39 -07001844 size_t i = 0;
Robert Carrdb66e622017-04-10 16:55:57 -07001845 for (; i < list.size(); i++) {
1846 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001847 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1848 continue;
1849 }
1850
chaviw301b1d82019-11-06 13:15:09 -08001851 if (relative->getZ(stateSet) >= 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001852 break;
Robert Carrdb66e622017-04-10 16:55:57 -07001853 }
Dan Stoza412903f2017-04-27 13:42:17 -07001854 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001855 }
Robert Carr29abff82017-12-04 13:51:20 -08001856
Dan Stoza412903f2017-04-27 13:42:17 -07001857 visitor(this);
Robert Carrdb66e622017-04-10 16:55:57 -07001858 for (; i < list.size(); i++) {
1859 const auto& relative = list[i];
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001860
Robert Carr29abff82017-12-04 13:51:20 -08001861 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1862 continue;
1863 }
Dan Stoza412903f2017-04-27 13:42:17 -07001864 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001865 }
1866}
1867
1868/**
Robert Carrdb66e622017-04-10 16:55:57 -07001869 * Positively signed relatives are before 'this' in reverse Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001870 */
Dan Stoza412903f2017-04-27 13:42:17 -07001871void Layer::traverseInReverseZOrder(LayerVector::StateSet stateSet,
1872 const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001873 // See traverseInZOrder for documentation.
1874 bool skipRelativeZUsers = false;
1875 LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001876
Robert Carr1f0a16a2016-10-24 16:27:39 -07001877 int32_t i = 0;
Joel Galensonbf324992017-11-06 11:04:12 -08001878 for (i = int32_t(list.size()) - 1; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001879 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001880
1881 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1882 continue;
1883 }
1884
chaviw301b1d82019-11-06 13:15:09 -08001885 if (relative->getZ(stateSet) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001886 break;
1887 }
Dan Stoza412903f2017-04-27 13:42:17 -07001888 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001889 }
Dan Stoza412903f2017-04-27 13:42:17 -07001890 visitor(this);
David Sodman41fdfc92017-11-06 16:09:56 -08001891 for (; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001892 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001893
1894 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1895 continue;
1896 }
1897
Dan Stoza412903f2017-04-27 13:42:17 -07001898 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001899 }
1900}
1901
Edgar Arriaga844fa672020-01-16 14:21:42 -08001902void Layer::traverse(LayerVector::StateSet state, const LayerVector::Visitor& visitor) {
1903 visitor(this);
1904 const LayerVector& children =
Robert Carr6a160312021-05-17 12:08:20 -07001905 state == LayerVector::StateSet::Drawing ? mDrawingChildren : mCurrentChildren;
Edgar Arriaga844fa672020-01-16 14:21:42 -08001906 for (const sp<Layer>& child : children) {
1907 child->traverse(state, visitor);
1908 }
1909}
1910
Vishnu Nair787aa782023-03-17 13:46:46 -07001911void Layer::traverseChildren(const LayerVector::Visitor& visitor) {
1912 for (const sp<Layer>& child : mDrawingChildren) {
1913 visitor(child.get());
1914 }
1915}
1916
chaviw4b129c22018-04-09 16:19:43 -07001917LayerVector Layer::makeChildrenTraversalList(LayerVector::StateSet stateSet,
1918 const std::vector<Layer*>& layersInTree) {
1919 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1920 "makeTraversalList received invalid stateSet");
chaviwa76b2712017-09-20 12:02:26 -07001921 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1922 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Robert Carr6a160312021-05-17 12:08:20 -07001923 const State& state = useDrawing ? mDrawingState : mDrawingState;
chaviw4b129c22018-04-09 16:19:43 -07001924
chaviwfd462612018-05-31 16:11:27 -07001925 LayerVector traverse(stateSet);
chaviw4b129c22018-04-09 16:19:43 -07001926 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1927 sp<Layer> strongRelative = weakRelative.promote();
1928 // Only add relative layers that are also descendents of the top most parent of the tree.
1929 // If a relative layer is not a descendent, then it should be ignored.
1930 if (std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
1931 traverse.add(strongRelative);
1932 }
1933 }
1934
1935 for (const sp<Layer>& child : children) {
Robert Carr6a160312021-05-17 12:08:20 -07001936 const State& childState = useDrawing ? child->mDrawingState : child->mDrawingState;
chaviw4b129c22018-04-09 16:19:43 -07001937 // If a layer has a relativeOf layer, only ignore if the layer it's relative to is a
1938 // descendent of the top most parent of the tree. If it's not a descendent, then just add
1939 // the child here since it won't be added later as a relative.
1940 if (std::binary_search(layersInTree.begin(), layersInTree.end(),
1941 childState.zOrderRelativeOf.promote().get())) {
1942 continue;
1943 }
1944 traverse.add(child);
1945 }
1946
1947 return traverse;
1948}
1949
1950void Layer::traverseChildrenInZOrderInner(const std::vector<Layer*>& layersInTree,
1951 LayerVector::StateSet stateSet,
1952 const LayerVector::Visitor& visitor) {
1953 const LayerVector list = makeChildrenTraversalList(stateSet, layersInTree);
chaviwa76b2712017-09-20 12:02:26 -07001954
1955 size_t i = 0;
chaviw4b129c22018-04-09 16:19:43 -07001956 for (; i < list.size(); i++) {
1957 const auto& relative = list[i];
chaviw301b1d82019-11-06 13:15:09 -08001958 if (relative->getZ(stateSet) >= 0) {
chaviwa76b2712017-09-20 12:02:26 -07001959 break;
1960 }
chaviw4b129c22018-04-09 16:19:43 -07001961 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001962 }
chaviw4b129c22018-04-09 16:19:43 -07001963
chaviwa76b2712017-09-20 12:02:26 -07001964 visitor(this);
chaviw4b129c22018-04-09 16:19:43 -07001965 for (; i < list.size(); i++) {
1966 const auto& relative = list[i];
1967 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001968 }
1969}
1970
chaviw4b129c22018-04-09 16:19:43 -07001971std::vector<Layer*> Layer::getLayersInTree(LayerVector::StateSet stateSet) {
1972 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1973 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
1974
1975 std::vector<Layer*> layersInTree = {this};
1976 for (size_t i = 0; i < children.size(); i++) {
1977 const auto& child = children[i];
1978 std::vector<Layer*> childLayers = child->getLayersInTree(stateSet);
1979 layersInTree.insert(layersInTree.end(), childLayers.cbegin(), childLayers.cend());
1980 }
1981
1982 return layersInTree;
1983}
1984
1985void Layer::traverseChildrenInZOrder(LayerVector::StateSet stateSet,
1986 const LayerVector::Visitor& visitor) {
1987 std::vector<Layer*> layersInTree = getLayersInTree(stateSet);
1988 std::sort(layersInTree.begin(), layersInTree.end());
1989 traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
1990}
1991
Peiyong Linefefaac2018-08-17 12:27:51 -07001992ui::Transform Layer::getTransform() const {
Vishnu Nairf0c28512019-02-08 12:40:28 -08001993 return mEffectiveTransform;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001994}
1995
Garfield Tan2c1782c2022-02-16 15:25:05 -08001996bool Layer::isTransformValid() const {
1997 float transformDet = getTransform().det();
1998 return transformDet != 0 && !isinf(transformDet) && !isnan(transformDet);
1999}
2000
chaviw13fdc492017-06-27 12:40:18 -07002001half Layer::getAlpha() const {
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002002 const auto& p = mDrawingParent.promote();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002003
chaviw13fdc492017-06-27 12:40:18 -07002004 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
2005 return parentAlpha * getDrawingState().color.a;
Robert Carr6452f122017-03-21 10:41:29 -07002006}
Robert Carr6452f122017-03-21 10:41:29 -07002007
Vishnu Nair6213bd92020-05-08 17:42:25 -07002008ui::Transform::RotationFlags Layer::getFixedTransformHint() const {
Robert Carr6a160312021-05-17 12:08:20 -07002009 ui::Transform::RotationFlags fixedTransformHint = mDrawingState.fixedTransformHint;
Vishnu Nair6213bd92020-05-08 17:42:25 -07002010 if (fixedTransformHint != ui::Transform::ROT_INVALID) {
2011 return fixedTransformHint;
2012 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002013 const auto& p = mCurrentParent.promote();
Vishnu Nair6213bd92020-05-08 17:42:25 -07002014 if (!p) return fixedTransformHint;
2015 return p->getFixedTransformHint();
2016}
2017
chaviw13fdc492017-06-27 12:40:18 -07002018half4 Layer::getColor() const {
2019 const half4 color(getDrawingState().color);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002020 return half4(color.r, color.g, color.b, getAlpha());
Robert Carr6452f122017-03-21 10:41:29 -07002021}
Robert Carr6452f122017-03-21 10:41:29 -07002022
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08002023int32_t Layer::getBackgroundBlurRadius() const {
Vishnu Nair29810f72022-07-01 16:38:41 +00002024 if (getDrawingState().backgroundBlurRadius == 0) {
2025 return 0;
2026 }
Galia Peychevada7de0e2020-12-03 17:24:35 +01002027
Vishnu Nair29810f72022-07-01 16:38:41 +00002028 const auto& p = mDrawingParent.promote();
Galia Peychevada7de0e2020-12-03 17:24:35 +01002029 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
2030 return parentAlpha * getDrawingState().backgroundBlurRadius;
Lucas Dupin19c8f0e2019-11-25 17:55:44 -08002031}
2032
Galia Peychevae0acf382021-04-12 21:22:34 +02002033const std::vector<BlurRegion> Layer::getBlurRegions() const {
2034 auto regionsCopy(getDrawingState().blurRegions);
Galia Peycheva3c286542021-06-17 15:21:28 +02002035 float layerAlpha = getAlpha();
Galia Peychevae0acf382021-04-12 21:22:34 +02002036 for (auto& region : regionsCopy) {
2037 region.alpha = region.alpha * layerAlpha;
2038 }
2039 return regionsCopy;
Lucas Dupinc3800b82020-10-02 16:24:48 -07002040}
2041
Vishnu Naire14c6b32022-08-06 04:20:15 +00002042RoundedCornerState Layer::getRoundedCornerState() const {
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002043 // Get parent settings
2044 RoundedCornerState parentSettings;
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002045 const auto& parent = mDrawingParent.promote();
2046 if (parent != nullptr) {
2047 parentSettings = parent->getRoundedCornerState();
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002048 if (parentSettings.hasRoundedCorners()) {
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002049 ui::Transform t = getActiveTransform(getDrawingState());
2050 t = t.inverse();
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002051 parentSettings.cropRect = t.transform(parentSettings.cropRect);
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002052 parentSettings.radius.x *= t.getScaleX();
2053 parentSettings.radius.y *= t.getScaleY();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002054 }
2055 }
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002056
2057 // Get layer settings
2058 Rect layerCropRect = getCroppedBufferSize(getDrawingState());
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002059 const vec2 radius(getDrawingState().cornerRadius, getDrawingState().cornerRadius);
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002060 RoundedCornerState layerSettings(layerCropRect.toFloatRect(), radius);
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002061 const bool layerSettingsValid = layerSettings.hasRoundedCorners() && layerCropRect.isValid();
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002062
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002063 if (layerSettingsValid && parentSettings.hasRoundedCorners()) {
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002064 // If the parent and the layer have rounded corner settings, use the parent settings if the
2065 // parent crop is entirely inside the layer crop.
2066 // This has limitations and cause rendering artifacts. See b/200300845 for correct fix.
2067 if (parentSettings.cropRect.left > layerCropRect.left &&
2068 parentSettings.cropRect.top > layerCropRect.top &&
2069 parentSettings.cropRect.right < layerCropRect.right &&
2070 parentSettings.cropRect.bottom < layerCropRect.bottom) {
2071 return parentSettings;
2072 } else {
2073 return layerSettings;
2074 }
Vishnu Nairb1845592021-10-07 12:17:57 -07002075 } else if (layerSettingsValid) {
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002076 return layerSettings;
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002077 } else if (parentSettings.hasRoundedCorners()) {
Vishnu Nair9dbf8e82021-09-16 16:24:47 -07002078 return parentSettings;
2079 }
2080 return {};
Lucas Dupin1b6531c2018-07-05 17:18:21 -07002081}
2082
Robert Carr88b85e12022-03-21 15:47:35 -07002083bool Layer::findInHierarchy(const sp<Layer>& l) {
2084 if (l == this) {
2085 return true;
2086 }
2087 for (auto& child : mDrawingChildren) {
2088 if (child->findInHierarchy(l)) {
2089 return true;
2090 }
2091 }
2092 return false;
2093}
2094
Robert Carr1f0a16a2016-10-24 16:27:39 -07002095void Layer::commitChildList() {
2096 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
2097 const auto& child = mCurrentChildren[i];
2098 child->commitChildList();
2099 }
2100 mDrawingChildren = mCurrentChildren;
Chia-I Wue41dbe62017-06-13 14:10:56 -07002101 mDrawingParent = mCurrentParent;
Robert Carr88b85e12022-03-21 15:47:35 -07002102 if (CC_UNLIKELY(usingRelativeZ(LayerVector::StateSet::Drawing))) {
2103 auto zOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
2104 if (zOrderRelativeOf == nullptr) return;
2105 if (findInHierarchy(zOrderRelativeOf)) {
2106 ALOGE("Detected Z ordering loop between %s and %s", mName.c_str(),
2107 zOrderRelativeOf->mName.c_str());
2108 ALOGE("Severing rel Z loop, potentially dangerous");
2109 mDrawingState.isRelativeOf = false;
Ady Abrahamd11bade2022-08-01 16:18:03 -07002110 zOrderRelativeOf->removeZOrderRelative(wp<Layer>::fromExisting(this));
Robert Carr88b85e12022-03-21 15:47:35 -07002111 }
2112 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002113}
2114
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002115
chaviw3277faf2021-05-19 16:45:23 -05002116void Layer::setInputInfo(const WindowInfo& info) {
Robert Carr6a160312021-05-17 12:08:20 -07002117 mDrawingState.inputInfo = info;
Vishnu Nair07e2a482022-10-18 19:18:16 +00002118 mDrawingState.touchableRegionCrop =
2119 LayerHandle::getLayer(info.touchableRegionCropHandle.promote());
Robert Carr6a160312021-05-17 12:08:20 -07002120 mDrawingState.modified = true;
Arthur Hung9ed43392022-05-27 06:31:57 +00002121 mFlinger->mUpdateInputInfo = true;
Robert Carr720e5062018-07-30 17:45:14 -07002122 setTransactionFlags(eTransactionNeeded);
2123}
2124
Vishnu Naird8f5e9f2022-02-03 10:23:28 -08002125LayerProto* Layer::writeToProto(LayersProto& layersProto, uint32_t traceFlags) {
chaviw08f3cb22020-01-13 13:17:21 -08002126 LayerProto* layerProto = layersProto.add_layers();
Vishnu Naird8f5e9f2022-02-03 10:23:28 -08002127 writeToProtoDrawingState(layerProto);
chaviw08f3cb22020-01-13 13:17:21 -08002128 writeToProtoCommonState(layerProto, LayerVector::StateSet::Drawing, traceFlags);
2129
Vishnu Nair00b90132021-11-05 14:03:40 -07002130 if (traceFlags & LayerTracing::TRACE_COMPOSITION) {
Vishnu Nair2f65e972023-04-04 16:36:28 +00002131 ui::LayerStack layerStack =
2132 (mSnapshot) ? mSnapshot->outputFilter.layerStack : ui::INVALID_LAYER_STACK;
2133 writeCompositionStateToProto(layerProto, layerStack);
Alec Mouri6b9e9912020-01-21 10:50:24 -08002134 }
2135
chaviw08f3cb22020-01-13 13:17:21 -08002136 for (const sp<Layer>& layer : mDrawingChildren) {
Vishnu Naird8f5e9f2022-02-03 10:23:28 -08002137 layer->writeToProto(layersProto, traceFlags);
chaviw08f3cb22020-01-13 13:17:21 -08002138 }
chaviw6d89e2d2020-01-14 14:42:01 -08002139
2140 return layerProto;
chaviw08f3cb22020-01-13 13:17:21 -08002141}
2142
Vishnu Nair2f65e972023-04-04 16:36:28 +00002143void Layer::writeCompositionStateToProto(LayerProto* layerProto, ui::LayerStack layerStack) {
Vishnu Nairea6ff812023-02-27 17:41:39 +00002144 ftl::FakeGuard guard(mFlinger->mStateLock); // Called from the main thread.
Vishnu Nair2f65e972023-04-04 16:36:28 +00002145 ftl::FakeGuard mainThreadGuard(kMainThreadContext);
Vishnu Nairea6ff812023-02-27 17:41:39 +00002146
2147 // Only populate for the primary display.
Vishnu Nair2f65e972023-04-04 16:36:28 +00002148 if (const auto display = mFlinger->getDisplayFromLayerStack(layerStack)) {
Vishnu Nairea6ff812023-02-27 17:41:39 +00002149 const auto compositionType = getCompositionType(*display);
2150 layerProto->set_hwc_composition_type(static_cast<HwcCompositionType>(compositionType));
Vishnu Nair2f65e972023-04-04 16:36:28 +00002151 LayerProtoHelper::writeToProto(getVisibleRegion(display),
Vishnu Nairea6ff812023-02-27 17:41:39 +00002152 [&]() { return layerProto->mutable_visible_region(); });
2153 }
2154}
2155
Vishnu Naird8f5e9f2022-02-03 10:23:28 -08002156void Layer::writeToProtoDrawingState(LayerProto* layerInfo) {
Vishnu Nair6b7c5c92020-09-29 17:27:05 -07002157 const ui::Transform transform = getTransform();
Vishnu Naird37343b2022-01-12 16:18:56 -08002158 auto buffer = getExternalTexture();
Vishnu Nair00b90132021-11-05 14:03:40 -07002159 if (buffer != nullptr) {
Vishnu Naird37343b2022-01-12 16:18:56 -08002160 LayerProtoHelper::writeToProto(*buffer,
Vishnu Nair00b90132021-11-05 14:03:40 -07002161 [&]() { return layerInfo->mutable_active_buffer(); });
2162 LayerProtoHelper::writeToProtoDeprecated(ui::Transform(getBufferTransform()),
2163 layerInfo->mutable_buffer_transform());
2164 }
2165 layerInfo->set_invalidate(contentDirty);
2166 layerInfo->set_is_protected(isProtected());
2167 layerInfo->set_dataspace(dataspaceDetails(static_cast<android_dataspace>(getDataSpace())));
2168 layerInfo->set_queued_frames(getQueuedFrameCount());
Vishnu Nair00b90132021-11-05 14:03:40 -07002169 layerInfo->set_curr_frame(mCurrentFrameNumber);
Vishnu Nair00b90132021-11-05 14:03:40 -07002170 layerInfo->set_requested_corner_radius(getDrawingState().cornerRadius);
Vishnu Nair50c0afe2022-07-11 15:04:07 -07002171 layerInfo->set_corner_radius(
2172 (getRoundedCornerState().radius.x + getRoundedCornerState().radius.y) / 2.0);
Vishnu Nair00b90132021-11-05 14:03:40 -07002173 layerInfo->set_background_blur_radius(getBackgroundBlurRadius());
2174 layerInfo->set_is_trusted_overlay(isTrustedOverlay());
2175 LayerProtoHelper::writeToProtoDeprecated(transform, layerInfo->mutable_transform());
2176 LayerProtoHelper::writePositionToProto(transform.tx(), transform.ty(),
2177 [&]() { return layerInfo->mutable_position(); });
2178 LayerProtoHelper::writeToProto(mBounds, [&]() { return layerInfo->mutable_bounds(); });
Vishnu Nair00b90132021-11-05 14:03:40 -07002179 LayerProtoHelper::writeToProto(surfaceDamageRegion,
2180 [&]() { return layerInfo->mutable_damage_region(); });
Vishnu Nair8406fd72019-07-30 11:29:31 -07002181
Vishnu Nair00b90132021-11-05 14:03:40 -07002182 if (hasColorTransform()) {
2183 LayerProtoHelper::writeToProto(getColorTransform(), layerInfo->mutable_color_transform());
Vishnu Nair8406fd72019-07-30 11:29:31 -07002184 }
2185
Vishnu Nair60db8c02020-04-02 11:55:16 -07002186 LayerProtoHelper::writeToProto(mSourceBounds,
2187 [&]() { return layerInfo->mutable_source_bounds(); });
2188 LayerProtoHelper::writeToProto(mScreenBounds,
2189 [&]() { return layerInfo->mutable_screen_bounds(); });
2190 LayerProtoHelper::writeToProto(getRoundedCornerState().cropRect,
2191 [&]() { return layerInfo->mutable_corner_radius_crop(); });
2192 layerInfo->set_shadow_radius(mEffectiveShadowRadius);
Vishnu Nair8406fd72019-07-30 11:29:31 -07002193}
2194
2195void Layer::writeToProtoCommonState(LayerProto* layerInfo, LayerVector::StateSet stateSet,
chaviw4c34a092020-07-08 11:30:06 -07002196 uint32_t traceFlags) {
chaviw1d044282017-09-27 12:19:28 -07002197 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
2198 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Robert Carr6a160312021-05-17 12:08:20 -07002199 const State& state = useDrawing ? mDrawingState : mDrawingState;
chaviw1d044282017-09-27 12:19:28 -07002200
chaviw766c9c52021-02-10 17:36:47 -08002201 ui::Transform requestedTransform = state.transform;
chaviw1d044282017-09-27 12:19:28 -07002202
Vishnu Nair00b90132021-11-05 14:03:40 -07002203 layerInfo->set_id(sequence);
2204 layerInfo->set_name(getName().c_str());
2205 layerInfo->set_type(getType());
chaviw1d044282017-09-27 12:19:28 -07002206
Vishnu Nair00b90132021-11-05 14:03:40 -07002207 for (const auto& child : children) {
2208 layerInfo->add_children(child->sequence);
chaviwadc40c22018-07-10 16:57:27 -07002209 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08002210
Vishnu Nair00b90132021-11-05 14:03:40 -07002211 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
2212 sp<Layer> strongRelative = weakRelative.promote();
2213 if (strongRelative != nullptr) {
2214 layerInfo->add_relatives(strongRelative->sequence);
2215 }
2216 }
2217
Vishnu Nairea04b6f2022-08-19 21:28:17 +00002218 LayerProtoHelper::writeToProto(state.transparentRegionHint,
Vishnu Nair00b90132021-11-05 14:03:40 -07002219 [&]() { return layerInfo->mutable_transparent_region(); });
2220
2221 layerInfo->set_layer_stack(getLayerStack().id);
2222 layerInfo->set_z(state.z);
2223
2224 LayerProtoHelper::writePositionToProto(requestedTransform.tx(), requestedTransform.ty(), [&]() {
2225 return layerInfo->mutable_requested_position();
2226 });
2227
Vishnu Nair00b90132021-11-05 14:03:40 -07002228 LayerProtoHelper::writeToProto(state.crop, [&]() { return layerInfo->mutable_crop(); });
2229
2230 layerInfo->set_is_opaque(isOpaque(state));
2231
2232 layerInfo->set_pixel_format(decodePixelFormat(getPixelFormat()));
2233 LayerProtoHelper::writeToProto(getColor(), [&]() { return layerInfo->mutable_color(); });
2234 LayerProtoHelper::writeToProto(state.color,
2235 [&]() { return layerInfo->mutable_requested_color(); });
2236 layerInfo->set_flags(state.flags);
2237
2238 LayerProtoHelper::writeToProtoDeprecated(requestedTransform,
2239 layerInfo->mutable_requested_transform());
2240
2241 auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
2242 if (parent != nullptr) {
2243 layerInfo->set_parent(parent->sequence);
2244 } else {
2245 layerInfo->set_parent(-1);
2246 }
2247
2248 auto zOrderRelativeOf = state.zOrderRelativeOf.promote();
2249 if (zOrderRelativeOf != nullptr) {
2250 layerInfo->set_z_order_relative_of(zOrderRelativeOf->sequence);
2251 } else {
2252 layerInfo->set_z_order_relative_of(-1);
2253 }
2254
2255 layerInfo->set_is_relative_of(state.isRelativeOf);
2256
2257 layerInfo->set_owner_uid(mOwnerUid);
2258
Arthur Hung4cf2d8c2022-04-07 14:52:00 +00002259 if ((traceFlags & LayerTracing::TRACE_INPUT) && needsInputInfo()) {
chaviw3277faf2021-05-19 16:45:23 -05002260 WindowInfo info;
chaviw4c34a092020-07-08 11:30:06 -07002261 if (useDrawing) {
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00002262 info = fillInputInfo(
2263 InputDisplayArgs{.transform = &kIdentityTransform, .isSecure = true});
chaviw4c34a092020-07-08 11:30:06 -07002264 } else {
2265 info = state.inputInfo;
2266 }
2267
2268 LayerProtoHelper::writeToProto(info, state.touchableRegionCrop,
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002269 [&]() { return layerInfo->mutable_input_window_info(); });
Evan Rosky1f6d6d52018-12-06 10:47:26 -08002270 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002271
Vishnu Nair00b90132021-11-05 14:03:40 -07002272 if (traceFlags & LayerTracing::TRACE_EXTRA) {
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002273 auto protoMap = layerInfo->mutable_metadata();
2274 for (const auto& entry : state.metadata.mMap) {
2275 (*protoMap)[entry.first] = std::string(entry.second.cbegin(), entry.second.cend());
2276 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07002277 }
Vishnu Naird2aaab12022-02-10 14:49:09 -08002278
2279 LayerProtoHelper::writeToProto(state.destinationFrame,
2280 [&]() { return layerInfo->mutable_destination_frame(); });
chaviw1d044282017-09-27 12:19:28 -07002281}
2282
Robert Carr2e102c92018-10-23 12:11:15 -07002283bool Layer::isRemovedFromCurrentState() const {
Robert Carr6a160312021-05-17 12:08:20 -07002284 return mRemovedFromDrawingState;
Robert Carr2e102c92018-10-23 12:11:15 -07002285}
2286
Prabir Pradhan33da9462022-06-14 14:55:57 +00002287// Applies the given transform to the region, while protecting against overflows caused by any
2288// offsets. If applying the offset in the transform to any of the Rects in the region would result
2289// in an overflow, they are not added to the output Region.
2290static Region transformTouchableRegionSafely(const ui::Transform& t, const Region& r,
2291 const std::string& debugWindowName) {
2292 // Round the translation using the same rounding strategy used by ui::Transform.
2293 const auto tx = static_cast<int32_t>(t.tx() + 0.5);
2294 const auto ty = static_cast<int32_t>(t.ty() + 0.5);
2295
2296 ui::Transform transformWithoutOffset = t;
2297 transformWithoutOffset.set(0.f, 0.f);
2298
2299 const Region transformed = transformWithoutOffset.transform(r);
2300
2301 // Apply the translation to each of the Rects in the region while discarding any that overflow.
2302 Region ret;
2303 for (const auto& rect : transformed) {
2304 Rect newRect;
2305 if (__builtin_add_overflow(rect.left, tx, &newRect.left) ||
2306 __builtin_add_overflow(rect.top, ty, &newRect.top) ||
2307 __builtin_add_overflow(rect.right, tx, &newRect.right) ||
2308 __builtin_add_overflow(rect.bottom, ty, &newRect.bottom)) {
2309 ALOGE("Applying transform to touchable region of window '%s' resulted in an overflow.",
2310 debugWindowName.c_str());
2311 continue;
2312 }
2313 ret.orSelf(newRect);
2314 }
2315 return ret;
2316}
2317
Prabir Pradhanc9589c12021-09-22 06:11:43 -07002318void Layer::fillInputFrameInfo(WindowInfo& info, const ui::Transform& screenToDisplay) {
Vishnu Nairfed7c122023-03-18 01:54:43 +00002319 auto [inputBounds, inputBoundsValid] = getInputBounds(/*fillParentBounds=*/false);
2320 if (!inputBoundsValid) {
Prabir Pradhan6fa425a2021-12-16 07:16:04 -08002321 info.touchableRegion.clear();
chaviw7e72caf2020-12-02 16:50:43 -08002322 }
2323
Vishnu Nairfed7c122023-03-18 01:54:43 +00002324 const Rect roundedFrameInDisplay = getInputBoundsInDisplaySpace(inputBounds, screenToDisplay);
Prabir Pradhanc9589c12021-09-22 06:11:43 -07002325 info.frameLeft = roundedFrameInDisplay.left;
2326 info.frameTop = roundedFrameInDisplay.top;
2327 info.frameRight = roundedFrameInDisplay.right;
2328 info.frameBottom = roundedFrameInDisplay.bottom;
chaviw1ff3d1e2020-07-01 15:53:47 -07002329
Prabir Pradhanc9589c12021-09-22 06:11:43 -07002330 ui::Transform inputToLayer;
Vishnu Nairfed7c122023-03-18 01:54:43 +00002331 inputToLayer.set(inputBounds.left, inputBounds.top);
2332 const ui::Transform layerToScreen = getInputTransform();
2333 const ui::Transform inputToDisplay = screenToDisplay * layerToScreen * inputToLayer;
chaviw39cfa2e2020-11-04 14:19:02 -08002334
Prabir Pradhanc9589c12021-09-22 06:11:43 -07002335 // InputDispatcher expects a display-to-input transform.
2336 info.transform = inputToDisplay.inverse();
2337
2338 // The touchable region is specified in the input coordinate space. Change it to display space.
Prabir Pradhan33da9462022-06-14 14:55:57 +00002339 info.touchableRegion =
2340 transformTouchableRegionSafely(inputToDisplay, info.touchableRegion, mName);
chaviw7e72caf2020-12-02 16:50:43 -08002341}
2342
chaviw3277faf2021-05-19 16:45:23 -05002343void Layer::fillTouchOcclusionMode(WindowInfo& info) {
Ady Abrahamd11bade2022-08-01 16:18:03 -07002344 sp<Layer> p = sp<Layer>::fromExisting(this);
Bernardo Rufinoa9d0a532021-06-11 15:59:12 +01002345 while (p != nullptr && !p->hasInputInfo()) {
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002346 p = p->mDrawingParent.promote();
Bernardo Rufinoa9d0a532021-06-11 15:59:12 +01002347 }
2348 if (p != nullptr) {
2349 info.touchOcclusionMode = p->mDrawingState.inputInfo.touchOcclusionMode;
2350 }
2351}
2352
Vishnu Naira066d902021-09-13 18:40:17 -07002353gui::DropInputMode Layer::getDropInputMode() const {
2354 gui::DropInputMode mode = mDrawingState.dropInputMode;
2355 if (mode == gui::DropInputMode::ALL) {
2356 return mode;
2357 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002358 sp<Layer> parent = mDrawingParent.promote();
2359 if (parent) {
2360 gui::DropInputMode parentMode = parent->getDropInputMode();
Vishnu Naira066d902021-09-13 18:40:17 -07002361 if (parentMode != gui::DropInputMode::NONE) {
2362 return parentMode;
2363 }
2364 }
2365 return mode;
2366}
2367
2368void Layer::handleDropInputMode(gui::WindowInfo& info) const {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002369 if (mDrawingState.inputInfo.inputConfig.test(WindowInfo::InputConfig::NO_INPUT_CHANNEL)) {
Vishnu Naira066d902021-09-13 18:40:17 -07002370 return;
2371 }
2372
2373 // Check if we need to drop input unconditionally
2374 gui::DropInputMode dropInputMode = getDropInputMode();
2375 if (dropInputMode == gui::DropInputMode::ALL) {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002376 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT;
Vishnu Naira066d902021-09-13 18:40:17 -07002377 ALOGV("Dropping input for %s as requested by policy.", getDebugName());
2378 return;
2379 }
2380
2381 // Check if we need to check if the window is obscured by parent
2382 if (dropInputMode != gui::DropInputMode::OBSCURED) {
2383 return;
2384 }
2385
2386 // Check if the parent has set an alpha on the layer
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002387 sp<Layer> parent = mDrawingParent.promote();
2388 if (parent && parent->getAlpha() != 1.0_hf) {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002389 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT;
Vishnu Naira066d902021-09-13 18:40:17 -07002390 ALOGV("Dropping input for %s as requested by policy because alpha=%f", getDebugName(),
2391 static_cast<float>(getAlpha()));
2392 }
2393
2394 // Check if the parent has cropped the buffer
2395 Rect bufferSize = getCroppedBufferSize(getDrawingState());
2396 if (!bufferSize.isValid()) {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002397 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT_IF_OBSCURED;
Vishnu Naira066d902021-09-13 18:40:17 -07002398 return;
2399 }
2400
2401 // Screenbounds are the layer bounds cropped by parents, transformed to screenspace.
2402 // To check if the layer has been cropped, we take the buffer bounds, apply the local
2403 // layer crop and apply the same set of transforms to move to screenspace. If the bounds
2404 // match then the layer has not been cropped by its parents.
2405 Rect bufferInScreenSpace(getTransform().transform(bufferSize));
2406 bool croppedByParent = bufferInScreenSpace != Rect{mScreenBounds};
2407
2408 if (croppedByParent) {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002409 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT;
Vishnu Naira066d902021-09-13 18:40:17 -07002410 ALOGV("Dropping input for %s as requested by policy because buffer is cropped by parent",
2411 getDebugName());
2412 } else {
2413 // If the layer is not obscured by its parents (by setting an alpha or crop), then only drop
2414 // input if the window is obscured. This check should be done in surfaceflinger but the
2415 // logic currently resides in inputflinger. So pass the if_obscured check to input to only
2416 // drop input events if the window is obscured.
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002417 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT_IF_OBSCURED;
Vishnu Naira066d902021-09-13 18:40:17 -07002418 }
2419}
2420
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00002421WindowInfo Layer::fillInputInfo(const InputDisplayArgs& displayArgs) {
chaviw7e72caf2020-12-02 16:50:43 -08002422 if (!hasInputInfo()) {
2423 mDrawingState.inputInfo.name = getName();
2424 mDrawingState.inputInfo.ownerUid = mOwnerUid;
2425 mDrawingState.inputInfo.ownerPid = mOwnerPid;
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002426 mDrawingState.inputInfo.inputConfig |= WindowInfo::InputConfig::NO_INPUT_CHANNEL;
Dominik Laskowski29fa1462021-04-27 15:51:50 -07002427 mDrawingState.inputInfo.displayId = getLayerStack().id;
chaviw7e72caf2020-12-02 16:50:43 -08002428 }
2429
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00002430 const ui::Transform& displayTransform =
2431 displayArgs.transform != nullptr ? *displayArgs.transform : kIdentityTransform;
2432
chaviw3277faf2021-05-19 16:45:23 -05002433 WindowInfo info = mDrawingState.inputInfo;
chaviw7e72caf2020-12-02 16:50:43 -08002434 info.id = sequence;
Dominik Laskowski29fa1462021-04-27 15:51:50 -07002435 info.displayId = getLayerStack().id;
chaviw7e72caf2020-12-02 16:50:43 -08002436
Dominik Laskowski29fa1462021-04-27 15:51:50 -07002437 fillInputFrameInfo(info, displayTransform);
chaviw7e72caf2020-12-02 16:50:43 -08002438
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00002439 if (displayArgs.transform == nullptr) {
2440 // Do not let the window receive touches if it is not associated with a valid display
2441 // transform. We still allow the window to receive keys and prevent ANRs.
2442 info.inputConfig |= WindowInfo::InputConfig::NOT_TOUCHABLE;
2443 }
2444
Patrick Williams1caf3b72023-03-31 10:59:10 -05002445 info.setInputConfig(WindowInfo::InputConfig::NOT_VISIBLE, !isVisibleForInput());
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -08002446
Bernardo Rufinoea97d182020-08-19 14:43:14 +01002447 info.alpha = getAlpha();
Bernardo Rufinoa9d0a532021-06-11 15:59:12 +01002448 fillTouchOcclusionMode(info);
Vishnu Naira066d902021-09-13 18:40:17 -07002449 handleDropInputMode(info);
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002450
Vishnu Nair16a938f2021-09-24 07:14:54 -07002451 // If the window will be blacked out on a display because the display does not have the secure
2452 // flag and the layer has the secure flag set, then drop input.
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00002453 if (!displayArgs.isSecure && isSecure()) {
Prabir Pradhan51e7db02022-02-07 06:02:57 -08002454 info.inputConfig |= WindowInfo::InputConfig::DROP_INPUT;
Vishnu Nair16a938f2021-09-24 07:14:54 -07002455 }
2456
Vishnu Nairfed7c122023-03-18 01:54:43 +00002457 sp<Layer> cropLayer = mDrawingState.touchableRegionCrop.promote();
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002458 if (info.replaceTouchableRegionWithCrop) {
Vishnu Nairfed7c122023-03-18 01:54:43 +00002459 Rect inputBoundsInDisplaySpace;
2460 if (!cropLayer) {
2461 FloatRect inputBounds = getInputBounds(/*fillParentBounds=*/true).first;
2462 inputBoundsInDisplaySpace = getInputBoundsInDisplaySpace(inputBounds, displayTransform);
2463 } else {
2464 FloatRect inputBounds = cropLayer->getInputBounds(/*fillParentBounds=*/true).first;
2465 inputBoundsInDisplaySpace =
2466 cropLayer->getInputBoundsInDisplaySpace(inputBounds, displayTransform);
2467 }
2468 info.touchableRegion = Region(inputBoundsInDisplaySpace);
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002469 } else if (cropLayer != nullptr) {
Vishnu Nairfed7c122023-03-18 01:54:43 +00002470 FloatRect inputBounds = cropLayer->getInputBounds(/*fillParentBounds=*/true).first;
2471 Rect inputBoundsInDisplaySpace =
2472 cropLayer->getInputBoundsInDisplaySpace(inputBounds, displayTransform);
2473 info.touchableRegion = info.touchableRegion.intersect(inputBoundsInDisplaySpace);
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002474 }
2475
Winson Chunga30f7c92021-06-29 15:42:56 -07002476 // Inherit the trusted state from the parent hierarchy, but don't clobber the trusted state
2477 // if it was set by WM for a known system overlay
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -08002478 if (isTrustedOverlay()) {
2479 info.inputConfig |= WindowInfo::InputConfig::TRUSTED_OVERLAY;
2480 }
Winson Chunga30f7c92021-06-29 15:42:56 -07002481
chaviwaf87b3e2019-10-01 16:59:28 -07002482 // If the layer is a clone, we need to crop the input region to cloned root to prevent
2483 // touches from going outside the cloned area.
2484 if (isClone()) {
chaviw8577ea82022-06-01 16:32:26 -05002485 info.inputConfig |= WindowInfo::InputConfig::CLONE;
Dominik Laskowski29fa1462021-04-27 15:51:50 -07002486 if (const sp<Layer> clonedRoot = getClonedRoot()) {
2487 const Rect rect = displayTransform.transform(Rect{clonedRoot->mScreenBounds});
chaviwaf87b3e2019-10-01 16:59:28 -07002488 info.touchableRegion = info.touchableRegion.intersect(rect);
2489 }
2490 }
2491
Robert Carr720e5062018-07-30 17:45:14 -07002492 return info;
2493}
2494
Vishnu Nairfed7c122023-03-18 01:54:43 +00002495Rect Layer::getInputBoundsInDisplaySpace(const FloatRect& inputBounds,
2496 const ui::Transform& screenToDisplay) {
2497 // InputDispatcher works in the display device's coordinate space. Here, we calculate the
2498 // frame and transform used for the layer, which determines the bounds and the coordinate space
2499 // within which the layer will receive input.
2500
2501 // Coordinate space definitions:
2502 // - display: The display device's coordinate space. Correlates to pixels on the display.
2503 // - screen: The post-rotation coordinate space for the display, a.k.a. logical display space.
2504 // - layer: The coordinate space of this layer.
2505 // - input: The coordinate space in which this layer will receive input events. This could be
2506 // different than layer space if a surfaceInset is used, which changes the origin
2507 // of the input space.
2508
2509 // Crop the input bounds to ensure it is within the parent's bounds.
2510 const FloatRect croppedInputBounds = mBounds.intersect(inputBounds);
2511 const ui::Transform layerToScreen = getInputTransform();
2512 const ui::Transform layerToDisplay = screenToDisplay * layerToScreen;
2513 return Rect{layerToDisplay.transform(croppedInputBounds)};
2514}
2515
chaviwaf87b3e2019-10-01 16:59:28 -07002516sp<Layer> Layer::getClonedRoot() {
2517 if (mClonedChild != nullptr) {
Ady Abrahamd11bade2022-08-01 16:18:03 -07002518 return sp<Layer>::fromExisting(this);
chaviwaf87b3e2019-10-01 16:59:28 -07002519 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002520 if (mDrawingParent == nullptr || mDrawingParent.promote() == nullptr) {
chaviwaf87b3e2019-10-01 16:59:28 -07002521 return nullptr;
2522 }
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002523 return mDrawingParent.promote()->getClonedRoot();
chaviwaf87b3e2019-10-01 16:59:28 -07002524}
2525
Robert Carredd13602020-04-13 17:24:34 -07002526bool Layer::hasInputInfo() const {
Linus Tufvessona1858822022-03-04 09:32:07 +00002527 return mDrawingState.inputInfo.token != nullptr ||
2528 mDrawingState.inputInfo.inputConfig.test(WindowInfo::InputConfig::NO_INPUT_CHANNEL);
Robert Carr720e5062018-07-30 17:45:14 -07002529}
2530
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002531compositionengine::OutputLayer* Layer::findOutputLayerForDisplay(
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002532 const DisplayDevice* display) const {
2533 if (!display) return nullptr;
Vishnu Naird47bcee2023-02-24 18:08:51 +00002534 if (!mFlinger->mLayerLifecycleManagerEnabled) {
2535 return display->getCompositionDisplay()->getOutputLayerForLayer(
2536 getCompositionEngineLayerFE());
2537 }
2538 sp<LayerFE> layerFE;
2539 frontend::LayerHierarchy::TraversalPath path{.id = static_cast<uint32_t>(sequence)};
2540 for (auto& [p, layer] : mLayerFEs) {
2541 if (p == path) {
2542 layerFE = layer;
2543 }
2544 }
2545
2546 if (!layerFE) return nullptr;
2547 return display->getCompositionDisplay()->getOutputLayerForLayer(layerFE);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002548}
2549
Dominik Laskowskib7251f42020-04-20 17:42:59 -07002550Region Layer::getVisibleRegion(const DisplayDevice* display) const {
2551 const auto outputLayer = findOutputLayerForDisplay(display);
2552 return outputLayer ? outputLayer->getState().visibleRegion : Region();
Lloyd Piquea2468662019-03-07 21:31:06 -08002553}
2554
Vishnu Nairde177252023-04-21 12:44:10 -07002555void Layer::setInitialValuesForClone(const sp<Layer>& clonedFrom, uint32_t mirrorRootId) {
2556 mSnapshot->path.id = clonedFrom->getSequence();
2557 mSnapshot->path.mirrorRootId = mirrorRootId;
2558
Vishnu Nair3bb11d02021-11-26 09:24:11 -08002559 cloneDrawingState(clonedFrom.get());
chaviwb4c6e582019-08-16 14:35:07 -07002560 mClonedFrom = clonedFrom;
Patrick Williamsbb25f802022-08-30 23:02:34 +00002561 mPremultipliedAlpha = clonedFrom->mPremultipliedAlpha;
2562 mPotentialCursor = clonedFrom->mPotentialCursor;
2563 mProtectedByApp = clonedFrom->mProtectedByApp;
2564 updateCloneBufferInfo();
2565}
2566
2567void Layer::updateCloneBufferInfo() {
2568 if (!isClone() || !isClonedFromAlive()) {
2569 return;
2570 }
2571
2572 sp<Layer> clonedFrom = getClonedFrom();
2573 mBufferInfo = clonedFrom->mBufferInfo;
2574 mSidebandStream = clonedFrom->mSidebandStream;
2575 surfaceDamageRegion = clonedFrom->surfaceDamageRegion;
2576 mCurrentFrameNumber = clonedFrom->mCurrentFrameNumber.load();
2577 mPreviousFrameNumber = clonedFrom->mPreviousFrameNumber;
2578
2579 // After buffer info is updated, the drawingState from the real layer needs to be copied into
2580 // the cloned. This is because some properties of drawingState can change when latchBuffer is
2581 // called. However, copying the drawingState would also overwrite the cloned layer's relatives
2582 // and touchableRegionCrop. Therefore, temporarily store the relatives so they can be set in
2583 // the cloned drawingState again.
2584 wp<Layer> tmpZOrderRelativeOf = mDrawingState.zOrderRelativeOf;
2585 SortedVector<wp<Layer>> tmpZOrderRelatives = mDrawingState.zOrderRelatives;
2586 wp<Layer> tmpTouchableRegionCrop = mDrawingState.touchableRegionCrop;
2587 WindowInfo tmpInputInfo = mDrawingState.inputInfo;
2588
2589 cloneDrawingState(clonedFrom.get());
2590
2591 mDrawingState.touchableRegionCrop = tmpTouchableRegionCrop;
2592 mDrawingState.zOrderRelativeOf = tmpZOrderRelativeOf;
2593 mDrawingState.zOrderRelatives = tmpZOrderRelatives;
2594 mDrawingState.inputInfo = tmpInputInfo;
chaviwb4c6e582019-08-16 14:35:07 -07002595}
chaviw74b03172019-08-19 11:09:03 -07002596
Vishnu Nair6e701af2023-05-04 17:27:48 +00002597void Layer::updateMirrorInfo() {
chaviw74b03172019-08-19 11:09:03 -07002598 if (mClonedChild == nullptr || !mClonedChild->isClonedFromAlive()) {
2599 // If mClonedChild is null, there is nothing to mirror. If isClonedFromAlive returns false,
2600 // it means that there is a clone, but the layer it was cloned from has been destroyed. In
2601 // that case, we want to delete the reference to the clone since we want it to get
2602 // destroyed. The root, this layer, will still be around since the client can continue
2603 // to hold a reference, but no cloned layers will be displayed.
2604 mClonedChild = nullptr;
Vishnu Nair6e701af2023-05-04 17:27:48 +00002605 return;
chaviw74b03172019-08-19 11:09:03 -07002606 }
2607
2608 std::map<sp<Layer>, sp<Layer>> clonedLayersMap;
2609 // If the real layer exists and is in current state, add the clone as a child of the root.
2610 // There's no need to remove from drawingState when the layer is offscreen since currentState is
2611 // copied to drawingState for the root layer. So the clonedChild is always removed from
2612 // drawingState and then needs to be added back each traversal.
2613 if (!mClonedChild->getClonedFrom()->isRemovedFromCurrentState()) {
2614 addChildToDrawing(mClonedChild);
2615 }
2616
2617 mClonedChild->updateClonedDrawingState(clonedLayersMap);
Ady Abrahamd11bade2022-08-01 16:18:03 -07002618 mClonedChild->updateClonedChildren(sp<Layer>::fromExisting(this), clonedLayersMap);
chaviw74b03172019-08-19 11:09:03 -07002619 mClonedChild->updateClonedRelatives(clonedLayersMap);
2620}
2621
2622void Layer::updateClonedDrawingState(std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2623 // If the layer the clone was cloned from is alive, copy the content of the drawingState
2624 // to the clone. If the real layer is no longer alive, continue traversing the children
2625 // since we may be able to pull out other children that are still alive.
2626 if (isClonedFromAlive()) {
2627 sp<Layer> clonedFrom = getClonedFrom();
Vishnu Nair3bb11d02021-11-26 09:24:11 -08002628 cloneDrawingState(clonedFrom.get());
Ady Abrahamd11bade2022-08-01 16:18:03 -07002629 clonedLayersMap.emplace(clonedFrom, sp<Layer>::fromExisting(this));
chaviw74b03172019-08-19 11:09:03 -07002630 }
2631
2632 // The clone layer may have children in drawingState since they may have been created and
2633 // added from a previous request to updateMirorInfo. This is to ensure we don't recreate clones
2634 // that already exist, since we can just re-use them.
2635 // The drawingChildren will not get overwritten by the currentChildren since the clones are
2636 // not updated in the regular traversal. They are skipped since the root will lose the
2637 // reference to them when it copies its currentChildren to drawing.
2638 for (sp<Layer>& child : mDrawingChildren) {
2639 child->updateClonedDrawingState(clonedLayersMap);
2640 }
2641}
2642
2643void Layer::updateClonedChildren(const sp<Layer>& mirrorRoot,
2644 std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2645 mDrawingChildren.clear();
2646
2647 if (!isClonedFromAlive()) {
2648 return;
2649 }
2650
2651 sp<Layer> clonedFrom = getClonedFrom();
2652 for (sp<Layer>& child : clonedFrom->mDrawingChildren) {
2653 if (child == mirrorRoot) {
2654 // This is to avoid cyclical mirroring.
2655 continue;
2656 }
2657 sp<Layer> clonedChild = clonedLayersMap[child];
2658 if (clonedChild == nullptr) {
Vishnu Nairde177252023-04-21 12:44:10 -07002659 clonedChild = child->createClone(mirrorRoot->getSequence());
chaviw74b03172019-08-19 11:09:03 -07002660 clonedLayersMap[child] = clonedChild;
2661 }
2662 addChildToDrawing(clonedChild);
2663 clonedChild->updateClonedChildren(mirrorRoot, clonedLayersMap);
2664 }
2665}
2666
chaviwaf87b3e2019-10-01 16:59:28 -07002667void Layer::updateClonedInputInfo(const std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
2668 auto cropLayer = mDrawingState.touchableRegionCrop.promote();
2669 if (cropLayer != nullptr) {
2670 if (clonedLayersMap.count(cropLayer) == 0) {
2671 // Real layer had a crop layer but it's not in the cloned hierarchy. Just set to
2672 // self as crop layer to avoid going outside bounds.
Ady Abrahamd11bade2022-08-01 16:18:03 -07002673 mDrawingState.touchableRegionCrop = wp<Layer>::fromExisting(this);
chaviwaf87b3e2019-10-01 16:59:28 -07002674 } else {
2675 const sp<Layer>& clonedCropLayer = clonedLayersMap.at(cropLayer);
2676 mDrawingState.touchableRegionCrop = clonedCropLayer;
2677 }
2678 }
2679 // Cloned layers shouldn't handle watch outside since their z order is not determined by
2680 // WM or the client.
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -08002681 mDrawingState.inputInfo.setInputConfig(WindowInfo::InputConfig::WATCH_OUTSIDE_TOUCH, false);
chaviwaf87b3e2019-10-01 16:59:28 -07002682}
2683
2684void Layer::updateClonedRelatives(const std::map<sp<Layer>, sp<Layer>>& clonedLayersMap) {
Ady Abrahamd11bade2022-08-01 16:18:03 -07002685 mDrawingState.zOrderRelativeOf = wp<Layer>();
chaviw74b03172019-08-19 11:09:03 -07002686 mDrawingState.zOrderRelatives.clear();
2687
2688 if (!isClonedFromAlive()) {
2689 return;
2690 }
2691
chaviwaf87b3e2019-10-01 16:59:28 -07002692 const sp<Layer>& clonedFrom = getClonedFrom();
chaviw74b03172019-08-19 11:09:03 -07002693 for (wp<Layer>& relativeWeak : clonedFrom->mDrawingState.zOrderRelatives) {
chaviwaf87b3e2019-10-01 16:59:28 -07002694 const sp<Layer>& relative = relativeWeak.promote();
2695 if (clonedLayersMap.count(relative) > 0) {
2696 auto& clonedRelative = clonedLayersMap.at(relative);
chaviw74b03172019-08-19 11:09:03 -07002697 mDrawingState.zOrderRelatives.add(clonedRelative);
2698 }
2699 }
2700
2701 // Check if the relativeLayer for the real layer is part of the cloned hierarchy.
2702 // It's possible that the layer it's relative to is outside the requested cloned hierarchy.
2703 // In that case, we treat the layer as if the relativeOf has been removed. This way, it will
2704 // still traverse the children, but the layer with the missing relativeOf will not be shown
2705 // on screen.
chaviwaf87b3e2019-10-01 16:59:28 -07002706 const sp<Layer>& relativeOf = clonedFrom->mDrawingState.zOrderRelativeOf.promote();
2707 if (clonedLayersMap.count(relativeOf) > 0) {
2708 const sp<Layer>& clonedRelativeOf = clonedLayersMap.at(relativeOf);
chaviw74b03172019-08-19 11:09:03 -07002709 mDrawingState.zOrderRelativeOf = clonedRelativeOf;
2710 }
2711
chaviwaf87b3e2019-10-01 16:59:28 -07002712 updateClonedInputInfo(clonedLayersMap);
2713
chaviw74b03172019-08-19 11:09:03 -07002714 for (sp<Layer>& child : mDrawingChildren) {
2715 child->updateClonedRelatives(clonedLayersMap);
2716 }
2717}
2718
2719void Layer::addChildToDrawing(const sp<Layer>& layer) {
2720 mDrawingChildren.add(layer);
Ady Abrahamd11bade2022-08-01 16:18:03 -07002721 layer->mDrawingParent = sp<Layer>::fromExisting(this);
chaviw74b03172019-08-19 11:09:03 -07002722}
2723
Steven Thomas62a4cf82020-01-31 12:04:03 -08002724Layer::FrameRateCompatibility Layer::FrameRate::convertCompatibility(int8_t compatibility) {
2725 switch (compatibility) {
2726 case ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_DEFAULT:
2727 return FrameRateCompatibility::Default;
2728 case ANATIVEWINDOW_FRAME_RATE_COMPATIBILITY_FIXED_SOURCE:
2729 return FrameRateCompatibility::ExactOrMultiple;
Ady Abrahamdd5bfa92021-01-07 17:56:08 -08002730 case ANATIVEWINDOW_FRAME_RATE_EXACT:
2731 return FrameRateCompatibility::Exact;
Andy Labrada096227e2022-06-15 16:58:11 +00002732 case ANATIVEWINDOW_FRAME_RATE_MIN:
2733 return FrameRateCompatibility::Min;
Dominik Laskowski1f6fc702022-03-21 08:34:50 -07002734 case ANATIVEWINDOW_FRAME_RATE_NO_VOTE:
2735 return FrameRateCompatibility::NoVote;
Steven Thomas62a4cf82020-01-31 12:04:03 -08002736 default:
2737 LOG_ALWAYS_FATAL("Invalid frame rate compatibility value %d", compatibility);
2738 return FrameRateCompatibility::Default;
2739 }
2740}
2741
Marin Shalamanovc5986772021-03-16 16:09:49 +01002742scheduler::Seamlessness Layer::FrameRate::convertChangeFrameRateStrategy(int8_t strategy) {
2743 switch (strategy) {
2744 case ANATIVEWINDOW_CHANGE_FRAME_RATE_ONLY_IF_SEAMLESS:
2745 return Seamlessness::OnlySeamless;
2746 case ANATIVEWINDOW_CHANGE_FRAME_RATE_ALWAYS:
2747 return Seamlessness::SeamedAndSeamless;
2748 default:
2749 LOG_ALWAYS_FATAL("Invalid change frame sate strategy value %d", strategy);
2750 return Seamlessness::Default;
2751 }
2752}
2753
Dominik Laskowski29fa1462021-04-27 15:51:50 -07002754bool Layer::isInternalDisplayOverlay() const {
chaviwc5676c62020-09-18 15:01:04 -07002755 const State& s(mDrawingState);
2756 if (s.flags & layer_state_t::eLayerSkipScreenshot) {
2757 return true;
2758 }
2759
Rob Carrc6d2d2b2021-10-25 16:51:49 +00002760 sp<Layer> parent = mDrawingParent.promote();
2761 return parent && parent->isInternalDisplayOverlay();
chaviwc5676c62020-09-18 15:01:04 -07002762}
2763
Robert Carr6a0382d2021-07-01 15:57:17 -07002764void Layer::setClonedChild(const sp<Layer>& clonedChild) {
2765 mClonedChild = clonedChild;
2766 mHadClonedChild = true;
Vishnu Nair6e701af2023-05-04 17:27:48 +00002767 mFlinger->mNumClones++;
Robert Carr6a0382d2021-07-01 15:57:17 -07002768}
2769
Vishnu Nair9cf4a4d2021-09-17 12:16:08 -07002770bool Layer::setDropInputMode(gui::DropInputMode mode) {
2771 if (mDrawingState.dropInputMode == mode) {
2772 return false;
2773 }
2774 mDrawingState.dropInputMode = mode;
2775 return true;
2776}
2777
Vishnu Nair3bb11d02021-11-26 09:24:11 -08002778void Layer::cloneDrawingState(const Layer* from) {
2779 mDrawingState = from->mDrawingState;
2780 // Skip callback info since they are not applicable for cloned layers.
2781 mDrawingState.releaseBufferListener = nullptr;
Vishnu Naircfb2d252023-01-19 04:44:02 +00002782 // TODO (b/238781169) currently broken for mirror layers because we do not
2783 // track release fences for mirror layers composed on other displays
Vishnu Nair3bb11d02021-11-26 09:24:11 -08002784 mDrawingState.callbackHandles = {};
2785}
2786
Patrick Williamsbb25f802022-08-30 23:02:34 +00002787void Layer::callReleaseBufferCallback(const sp<ITransactionCompletedListener>& listener,
2788 const sp<GraphicBuffer>& buffer, uint64_t framenumber,
liulijuneb489f62022-10-17 22:02:14 +08002789 const sp<Fence>& releaseFence) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00002790 if (!listener) {
2791 return;
2792 }
2793 ATRACE_FORMAT_INSTANT("callReleaseBufferCallback %s - %" PRIu64, getDebugName(), framenumber);
liulijuneb489f62022-10-17 22:02:14 +08002794 uint32_t currentMaxAcquiredBufferCount =
2795 mFlinger->getMaxAcquiredBufferCountForCurrentRefreshRate(mOwnerUid);
Huihong Luoffee3bc2023-01-17 16:14:35 +00002796 listener->onReleaseBuffer({buffer->getId(), framenumber},
2797 releaseFence ? releaseFence : Fence::NO_FENCE,
2798 currentMaxAcquiredBufferCount);
Patrick Williamsbb25f802022-08-30 23:02:34 +00002799}
2800
Vishnu Nair7ee4f462023-04-19 09:54:09 -07002801void Layer::onLayerDisplayed(ftl::SharedFuture<FenceResult> futureFenceResult,
2802 ui::LayerStack layerStack) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00002803 // If we are displayed on multiple displays in a single composition cycle then we would
2804 // need to do careful tracking to enable the use of the mLastClientCompositionFence.
2805 // For example we can only use it if all the displays are client comp, and we need
2806 // to merge all the client comp fences. We could do this, but for now we just
2807 // disable the optimization when a layer is composed on multiple displays.
2808 if (mClearClientCompositionFenceOnLayerDisplayed) {
2809 mLastClientCompositionFence = nullptr;
2810 } else {
2811 mClearClientCompositionFenceOnLayerDisplayed = true;
2812 }
2813
2814 // The previous release fence notifies the client that SurfaceFlinger is done with the previous
2815 // buffer that was presented on this layer. The first transaction that came in this frame that
2816 // replaced the previous buffer on this layer needs this release fence, because the fence will
2817 // let the client know when that previous buffer is removed from the screen.
2818 //
2819 // Every other transaction on this layer does not need a release fence because no other
2820 // Transactions that were set on this layer this frame are going to have their preceding buffer
2821 // removed from the display this frame.
2822 //
2823 // For example, if we have 3 transactions this frame. The first transaction doesn't contain a
2824 // buffer so it doesn't need a previous release fence because the layer still needs the previous
2825 // buffer. The second transaction contains a buffer so it needs a previous release fence because
2826 // the previous buffer will be released this frame. The third transaction also contains a
2827 // buffer. It replaces the buffer in the second transaction. The buffer in the second
2828 // transaction will now no longer be presented so it is released immediately and the third
2829 // transaction doesn't need a previous release fence.
2830 sp<CallbackHandle> ch;
2831 for (auto& handle : mDrawingState.callbackHandles) {
Vishnu Nair7ee4f462023-04-19 09:54:09 -07002832 if (handle->releasePreviousBuffer && mPreviousReleaseBufferEndpoint == handle->listener) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00002833 ch = handle;
2834 break;
2835 }
2836 }
2837
2838 // Prevent tracing the same release multiple times.
2839 if (mPreviousFrameNumber != mPreviousReleasedFrameNumber) {
2840 mPreviousReleasedFrameNumber = mPreviousFrameNumber;
2841 }
2842
2843 if (ch != nullptr) {
2844 ch->previousReleaseCallbackId = mPreviousReleaseCallbackId;
2845 ch->previousReleaseFences.emplace_back(std::move(futureFenceResult));
2846 ch->name = mName;
2847 }
Vishnu Nair7ee4f462023-04-19 09:54:09 -07002848 mPreviouslyPresentedLayerStacks.push_back(layerStack);
Patrick Williamsbb25f802022-08-30 23:02:34 +00002849}
2850
2851void Layer::onSurfaceFrameCreated(
2852 const std::shared_ptr<frametimeline::SurfaceFrame>& surfaceFrame) {
2853 while (mPendingJankClassifications.size() >= kPendingClassificationMaxSurfaceFrames) {
2854 // Too many SurfaceFrames pending classification. The front of the deque is probably not
2855 // tracked by FrameTimeline and will never be presented. This will only result in a memory
2856 // leak.
Pascal Muetschard55626262022-11-08 11:05:19 +01002857 if (hasBufferOrSidebandStreamInDrawing()) {
2858 // Only log for layers with a buffer, since we expect the jank data to be drained for
2859 // these, while there may be no jank listeners for bufferless layers.
2860 ALOGW("Removing the front of pending jank deque from layer - %s to prevent memory leak",
2861 mName.c_str());
2862 std::string miniDump = mPendingJankClassifications.front()->miniDump();
2863 ALOGD("Head SurfaceFrame mini dump\n%s", miniDump.c_str());
2864 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00002865 mPendingJankClassifications.pop_front();
2866 }
2867 mPendingJankClassifications.emplace_back(surfaceFrame);
2868}
2869
2870void Layer::releasePendingBuffer(nsecs_t dequeueReadyTime) {
2871 for (const auto& handle : mDrawingState.callbackHandles) {
Vishnu Nairb76d99a2023-03-19 18:22:31 -07002872 if (mFlinger->mLayerLifecycleManagerEnabled) {
2873 handle->transformHint = mTransformHint;
2874 } else {
2875 handle->transformHint = mSkipReportingTransformHint
2876 ? std::nullopt
2877 : std::make_optional<uint32_t>(mTransformHintLegacy);
2878 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00002879 handle->dequeueReadyTime = dequeueReadyTime;
2880 handle->currentMaxAcquiredBufferCount =
2881 mFlinger->getMaxAcquiredBufferCountForCurrentRefreshRate(mOwnerUid);
2882 ATRACE_FORMAT_INSTANT("releasePendingBuffer %s - %" PRIu64, getDebugName(),
2883 handle->previousReleaseCallbackId.framenumber);
2884 }
2885
2886 for (auto& handle : mDrawingState.callbackHandles) {
Vishnu Nair7ee4f462023-04-19 09:54:09 -07002887 if (handle->releasePreviousBuffer && mPreviousReleaseBufferEndpoint == handle->listener) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00002888 handle->previousReleaseCallbackId = mPreviousReleaseCallbackId;
2889 break;
2890 }
2891 }
2892
2893 std::vector<JankData> jankData;
Pascal Muetschardf54181b2022-12-13 14:53:25 +01002894 transferAvailableJankData(mDrawingState.callbackHandles, jankData);
Patrick Williamsbb25f802022-08-30 23:02:34 +00002895 mFlinger->getTransactionCallbackInvoker().addCallbackHandles(mDrawingState.callbackHandles,
2896 jankData);
Patrick Williamsbb25f802022-08-30 23:02:34 +00002897 mDrawingState.callbackHandles = {};
2898}
2899
2900bool Layer::willPresentCurrentTransaction() const {
2901 // Returns true if the most recent Transaction applied to CurrentState will be presented.
2902 return (getSidebandStreamChanged() || getAutoRefresh() ||
2903 (mDrawingState.modified &&
2904 (mDrawingState.buffer != nullptr || mDrawingState.bgColorLayer != nullptr)));
2905}
2906
2907bool Layer::setTransform(uint32_t transform) {
2908 if (mDrawingState.bufferTransform == transform) return false;
2909 mDrawingState.bufferTransform = transform;
2910 mDrawingState.modified = true;
2911 setTransactionFlags(eTransactionNeeded);
2912 return true;
2913}
2914
2915bool Layer::setTransformToDisplayInverse(bool transformToDisplayInverse) {
2916 if (mDrawingState.transformToDisplayInverse == transformToDisplayInverse) return false;
2917 mDrawingState.sequence++;
2918 mDrawingState.transformToDisplayInverse = transformToDisplayInverse;
2919 mDrawingState.modified = true;
2920 setTransactionFlags(eTransactionNeeded);
2921 return true;
2922}
2923
2924bool Layer::setBufferCrop(const Rect& bufferCrop) {
2925 if (mDrawingState.bufferCrop == bufferCrop) return false;
2926
2927 mDrawingState.sequence++;
2928 mDrawingState.bufferCrop = bufferCrop;
2929
2930 mDrawingState.modified = true;
2931 setTransactionFlags(eTransactionNeeded);
2932 return true;
2933}
2934
2935bool Layer::setDestinationFrame(const Rect& destinationFrame) {
2936 if (mDrawingState.destinationFrame == destinationFrame) return false;
2937
2938 mDrawingState.sequence++;
2939 mDrawingState.destinationFrame = destinationFrame;
2940
2941 mDrawingState.modified = true;
2942 setTransactionFlags(eTransactionNeeded);
2943 return true;
2944}
2945
2946// Translate destination frame into scale and position. If a destination frame is not set, use the
2947// provided scale and position
2948bool Layer::updateGeometry() {
2949 if ((mDrawingState.flags & layer_state_t::eIgnoreDestinationFrame) ||
2950 mDrawingState.destinationFrame.isEmpty()) {
2951 // If destination frame is not set, use the requested transform set via
2952 // Layer::setPosition and Layer::setMatrix.
2953 return assignTransform(&mDrawingState.transform, mRequestedTransform);
2954 }
2955
2956 Rect destRect = mDrawingState.destinationFrame;
2957 int32_t destW = destRect.width();
2958 int32_t destH = destRect.height();
2959 if (destRect.left < 0) {
2960 destRect.left = 0;
2961 destRect.right = destW;
2962 }
2963 if (destRect.top < 0) {
2964 destRect.top = 0;
2965 destRect.bottom = destH;
2966 }
2967
2968 if (!mDrawingState.buffer) {
2969 ui::Transform t;
2970 t.set(destRect.left, destRect.top);
2971 return assignTransform(&mDrawingState.transform, t);
2972 }
2973
2974 uint32_t bufferWidth = mDrawingState.buffer->getWidth();
2975 uint32_t bufferHeight = mDrawingState.buffer->getHeight();
2976 // Undo any transformations on the buffer.
2977 if (mDrawingState.bufferTransform & ui::Transform::ROT_90) {
2978 std::swap(bufferWidth, bufferHeight);
2979 }
Leon Scroggins III85d4b222023-05-09 13:58:18 -04002980 uint32_t invTransform = SurfaceFlinger::getActiveDisplayRotationFlags();
Patrick Williamsbb25f802022-08-30 23:02:34 +00002981 if (mDrawingState.transformToDisplayInverse) {
2982 if (invTransform & ui::Transform::ROT_90) {
2983 std::swap(bufferWidth, bufferHeight);
2984 }
2985 }
2986
2987 float sx = destW / static_cast<float>(bufferWidth);
2988 float sy = destH / static_cast<float>(bufferHeight);
2989 ui::Transform t;
2990 t.set(sx, 0, 0, sy);
2991 t.set(destRect.left, destRect.top);
2992 return assignTransform(&mDrawingState.transform, t);
2993}
2994
2995bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix) {
2996 if (mRequestedTransform.dsdx() == matrix.dsdx && mRequestedTransform.dtdy() == matrix.dtdy &&
2997 mRequestedTransform.dtdx() == matrix.dtdx && mRequestedTransform.dsdy() == matrix.dsdy) {
2998 return false;
2999 }
3000
3001 mRequestedTransform.set(matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
3002
3003 mDrawingState.sequence++;
3004 mDrawingState.modified = true;
3005 setTransactionFlags(eTransactionNeeded);
3006
3007 return true;
3008}
3009
3010bool Layer::setPosition(float x, float y) {
3011 if (mRequestedTransform.tx() == x && mRequestedTransform.ty() == y) {
3012 return false;
3013 }
3014
3015 mRequestedTransform.set(x, y);
3016
3017 mDrawingState.sequence++;
3018 mDrawingState.modified = true;
3019 setTransactionFlags(eTransactionNeeded);
3020
3021 return true;
3022}
3023
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003024void Layer::resetDrawingStateBufferInfo() {
3025 mDrawingState.producerId = 0;
3026 mDrawingState.frameNumber = 0;
3027 mDrawingState.releaseBufferListener = nullptr;
3028 mDrawingState.buffer = nullptr;
3029 mDrawingState.acquireFence = sp<Fence>::make(-1);
3030 mDrawingState.acquireFenceTime = std::make_unique<FenceTime>(mDrawingState.acquireFence);
3031 mCallbackHandleAcquireTimeOrFence = mDrawingState.acquireFenceTime->getSignalTime();
3032 mDrawingState.releaseBufferEndpoint = nullptr;
3033}
3034
Patrick Williamsbb25f802022-08-30 23:02:34 +00003035bool Layer::setBuffer(std::shared_ptr<renderengine::ExternalTexture>& buffer,
3036 const BufferData& bufferData, nsecs_t postTime, nsecs_t desiredPresentTime,
3037 bool isAutoTimestamp, std::optional<nsecs_t> dequeueTime,
Brian Lindahl439afad2022-11-14 11:16:55 -07003038 const FrameTimelineInfo& info) {
Chavi Weingarten009619f2022-09-15 20:27:25 +00003039 ATRACE_FORMAT("setBuffer %s - hasBuffer=%s", getDebugName(), (buffer ? "true" : "false"));
Patrick Williamsbb25f802022-08-30 23:02:34 +00003040
3041 const bool frameNumberChanged =
3042 bufferData.flags.test(BufferData::BufferDataChange::frameNumberChanged);
3043 const uint64_t frameNumber =
3044 frameNumberChanged ? bufferData.frameNumber : mDrawingState.frameNumber + 1;
Chavi Weingarten009619f2022-09-15 20:27:25 +00003045 ATRACE_FORMAT_INSTANT("setBuffer %s - %" PRIu64, getDebugName(), frameNumber);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003046
3047 if (mDrawingState.buffer) {
3048 mReleasePreviousBuffer = true;
3049 if (!mBufferInfo.mBuffer ||
3050 (!mDrawingState.buffer->hasSameBuffer(*mBufferInfo.mBuffer) ||
3051 mDrawingState.frameNumber != mBufferInfo.mFrameNumber)) {
3052 // If mDrawingState has a buffer, and we are about to update again
3053 // before swapping to drawing state, then the first buffer will be
3054 // dropped and we should decrement the pending buffer count and
3055 // call any release buffer callbacks if set.
3056 callReleaseBufferCallback(mDrawingState.releaseBufferListener,
3057 mDrawingState.buffer->getBuffer(), mDrawingState.frameNumber,
liulijuneb489f62022-10-17 22:02:14 +08003058 mDrawingState.acquireFence);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003059 decrementPendingBufferCount();
3060 if (mDrawingState.bufferSurfaceFrameTX != nullptr &&
3061 mDrawingState.bufferSurfaceFrameTX->getPresentState() != PresentState::Presented) {
3062 addSurfaceFrameDroppedForBuffer(mDrawingState.bufferSurfaceFrameTX);
3063 mDrawingState.bufferSurfaceFrameTX.reset();
3064 }
3065 } else if (EARLY_RELEASE_ENABLED && mLastClientCompositionFence != nullptr) {
3066 callReleaseBufferCallback(mDrawingState.releaseBufferListener,
3067 mDrawingState.buffer->getBuffer(), mDrawingState.frameNumber,
liulijuneb489f62022-10-17 22:02:14 +08003068 mLastClientCompositionFence);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003069 mLastClientCompositionFence = nullptr;
3070 }
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003071 } else if (buffer) {
Vishnu Nairc09c0232023-03-02 03:22:35 +00003072 // if we are latching a buffer for the first time then clear the mLastLatchTime since
3073 // we don't want to incorrectly classify a frame if we miss the desired present time.
3074 updateLastLatchTime(0);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003075 }
3076
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003077 mDrawingState.desiredPresentTime = desiredPresentTime;
3078 mDrawingState.isAutoTimestamp = isAutoTimestamp;
3079 mDrawingState.latchedVsyncId = info.vsyncId;
Ady Abraham55269162023-05-09 11:26:06 -07003080 mDrawingState.useVsyncIdForRefreshRateSelection = info.useForRefreshRateSelection;
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003081 mDrawingState.modified = true;
3082 if (!buffer) {
3083 resetDrawingStateBufferInfo();
3084 setTransactionFlags(eTransactionNeeded);
3085 mDrawingState.bufferSurfaceFrameTX = nullptr;
3086 setFrameTimelineVsyncForBufferlessTransaction(info, postTime);
3087 return true;
3088 }
3089
liulijuneb489f62022-10-17 22:02:14 +08003090 mDrawingState.producerId = bufferData.producerId;
Vishnu Nair63221212023-04-06 15:17:37 -07003091 mDrawingState.barrierProducerId =
3092 std::max(mDrawingState.producerId, mDrawingState.barrierProducerId);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003093 mDrawingState.frameNumber = frameNumber;
Vishnu Nair63221212023-04-06 15:17:37 -07003094 mDrawingState.barrierFrameNumber =
3095 std::max(mDrawingState.frameNumber, mDrawingState.barrierFrameNumber);
3096
3097 // TODO(b/277265947) log and flush transaction trace when we detect out of order updates
Patrick Williamsbb25f802022-08-30 23:02:34 +00003098 mDrawingState.releaseBufferListener = bufferData.releaseBufferListener;
3099 mDrawingState.buffer = std::move(buffer);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003100 mDrawingState.acquireFence = bufferData.flags.test(BufferData::BufferDataChange::fenceChanged)
3101 ? bufferData.acquireFence
3102 : Fence::NO_FENCE;
3103 mDrawingState.acquireFenceTime = std::make_unique<FenceTime>(mDrawingState.acquireFence);
3104 if (mDrawingState.acquireFenceTime->getSignalTime() == Fence::SIGNAL_TIME_PENDING) {
3105 // We latched this buffer unsiganled, so we need to pass the acquire fence
3106 // on the callback instead of just the acquire time, since it's unknown at
3107 // this point.
3108 mCallbackHandleAcquireTimeOrFence = mDrawingState.acquireFence;
3109 } else {
3110 mCallbackHandleAcquireTimeOrFence = mDrawingState.acquireFenceTime->getSignalTime();
3111 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00003112 setTransactionFlags(eTransactionNeeded);
3113
3114 const int32_t layerId = getSequence();
3115 mFlinger->mTimeStats->setPostTime(layerId, mDrawingState.frameNumber, getName().c_str(),
3116 mOwnerUid, postTime, getGameMode());
Patrick Williamsbb25f802022-08-30 23:02:34 +00003117
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003118 if (mFlinger->mLegacyFrontEndEnabled) {
3119 recordLayerHistoryBufferUpdate(getLayerProps());
3120 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00003121
3122 setFrameTimelineVsyncForBufferTransaction(info, postTime);
3123
3124 if (dequeueTime && *dequeueTime != 0) {
3125 const uint64_t bufferId = mDrawingState.buffer->getId();
3126 mFlinger->mFrameTracer->traceNewLayer(layerId, getName().c_str());
3127 mFlinger->mFrameTracer->traceTimestamp(layerId, bufferId, frameNumber, *dequeueTime,
3128 FrameTracer::FrameEvent::DEQUEUE);
3129 mFlinger->mFrameTracer->traceTimestamp(layerId, bufferId, frameNumber, postTime,
3130 FrameTracer::FrameEvent::QUEUE);
3131 }
3132
3133 mDrawingState.releaseBufferEndpoint = bufferData.releaseBufferEndpoint;
3134 return true;
3135}
3136
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003137void Layer::setDesiredPresentTime(nsecs_t desiredPresentTime, bool isAutoTimestamp) {
3138 mDrawingState.desiredPresentTime = desiredPresentTime;
3139 mDrawingState.isAutoTimestamp = isAutoTimestamp;
3140}
3141
3142void Layer::recordLayerHistoryBufferUpdate(const scheduler::LayerProps& layerProps) {
Ady Abraham55269162023-05-09 11:26:06 -07003143 ATRACE_CALL();
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003144 const nsecs_t presentTime = [&] {
Ady Abraham55269162023-05-09 11:26:06 -07003145 if (!mDrawingState.isAutoTimestamp) {
3146 ATRACE_FORMAT_INSTANT("desiredPresentTime");
3147 return mDrawingState.desiredPresentTime;
3148 }
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003149
Ady Abraham55269162023-05-09 11:26:06 -07003150 if (mDrawingState.useVsyncIdForRefreshRateSelection) {
3151 const auto prediction =
3152 mFlinger->mFrameTimeline->getTokenManager()->getPredictionsForToken(
3153 mDrawingState.latchedVsyncId);
3154 if (prediction.has_value()) {
3155 ATRACE_FORMAT_INSTANT("predictedPresentTime");
3156 return prediction->presentTime;
3157 }
3158 }
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003159
3160 return static_cast<nsecs_t>(0);
3161 }();
Ady Abraham55269162023-05-09 11:26:06 -07003162
3163 if (ATRACE_ENABLED() && presentTime > 0) {
3164 const auto presentIn = TimePoint::fromNs(presentTime) - TimePoint::now();
3165 ATRACE_FORMAT_INSTANT("presentIn %s", to_string(presentIn).c_str());
3166 }
3167
Vishnu Nairef68d6d2023-02-28 06:18:27 +00003168 mFlinger->mScheduler->recordLayerHistory(sequence, layerProps, presentTime,
3169 scheduler::LayerHistory::LayerUpdateType::Buffer);
3170}
3171
3172void Layer::recordLayerHistoryAnimationTx(const scheduler::LayerProps& layerProps) {
3173 const nsecs_t presentTime =
3174 mDrawingState.isAutoTimestamp ? 0 : mDrawingState.desiredPresentTime;
3175 mFlinger->mScheduler->recordLayerHistory(sequence, layerProps, presentTime,
3176 scheduler::LayerHistory::LayerUpdateType::AnimationTX);
3177}
3178
Patrick Williamsbb25f802022-08-30 23:02:34 +00003179bool Layer::setDataspace(ui::Dataspace dataspace) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003180 if (mDrawingState.dataspace == dataspace) return false;
3181 mDrawingState.dataspace = dataspace;
3182 mDrawingState.modified = true;
3183 setTransactionFlags(eTransactionNeeded);
3184 return true;
3185}
3186
John Reck68796592023-01-25 13:47:12 -05003187bool Layer::setExtendedRangeBrightness(float currentBufferRatio, float desiredRatio) {
Sally Qi963049b2023-03-23 14:06:21 -07003188 if (mDrawingState.currentHdrSdrRatio == currentBufferRatio &&
3189 mDrawingState.desiredHdrSdrRatio == desiredRatio)
John Reck68796592023-01-25 13:47:12 -05003190 return false;
Sally Qi963049b2023-03-23 14:06:21 -07003191 mDrawingState.currentHdrSdrRatio = currentBufferRatio;
3192 mDrawingState.desiredHdrSdrRatio = desiredRatio;
John Reck68796592023-01-25 13:47:12 -05003193 mDrawingState.modified = true;
3194 setTransactionFlags(eTransactionNeeded);
3195 return true;
3196}
3197
Alec Mourif4af03e2023-02-11 00:25:24 +00003198bool Layer::setCachingHint(gui::CachingHint cachingHint) {
3199 if (mDrawingState.cachingHint == cachingHint) return false;
3200 mDrawingState.cachingHint = cachingHint;
3201 mDrawingState.modified = true;
3202 setTransactionFlags(eTransactionNeeded);
3203 return true;
3204}
3205
Patrick Williamsbb25f802022-08-30 23:02:34 +00003206bool Layer::setHdrMetadata(const HdrMetadata& hdrMetadata) {
3207 if (mDrawingState.hdrMetadata == hdrMetadata) return false;
3208 mDrawingState.hdrMetadata = hdrMetadata;
3209 mDrawingState.modified = true;
3210 setTransactionFlags(eTransactionNeeded);
3211 return true;
3212}
3213
3214bool Layer::setSurfaceDamageRegion(const Region& surfaceDamage) {
Sally Qi2b1b4292023-03-14 16:47:39 +00003215 if (mDrawingState.surfaceDamageRegion.hasSameRects(surfaceDamage)) return false;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003216 mDrawingState.surfaceDamageRegion = surfaceDamage;
3217 mDrawingState.modified = true;
3218 setTransactionFlags(eTransactionNeeded);
3219 return true;
3220}
3221
3222bool Layer::setApi(int32_t api) {
3223 if (mDrawingState.api == api) return false;
3224 mDrawingState.api = api;
3225 mDrawingState.modified = true;
3226 setTransactionFlags(eTransactionNeeded);
3227 return true;
3228}
3229
3230bool Layer::setSidebandStream(const sp<NativeHandle>& sidebandStream) {
3231 if (mDrawingState.sidebandStream == sidebandStream) return false;
3232
3233 if (mDrawingState.sidebandStream != nullptr && sidebandStream == nullptr) {
3234 mFlinger->mTunnelModeEnabledReporter->decrementTunnelModeCount();
3235 } else if (sidebandStream != nullptr) {
3236 mFlinger->mTunnelModeEnabledReporter->incrementTunnelModeCount();
3237 }
3238
3239 mDrawingState.sidebandStream = sidebandStream;
3240 mDrawingState.modified = true;
3241 setTransactionFlags(eTransactionNeeded);
3242 if (!mSidebandStreamChanged.exchange(true)) {
3243 // mSidebandStreamChanged was false
3244 mFlinger->onLayerUpdate();
3245 }
3246 return true;
3247}
3248
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003249bool Layer::setTransactionCompletedListeners(const std::vector<sp<CallbackHandle>>& handles,
3250 bool willPresent) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003251 // If there is no handle, we will not send a callback so reset mReleasePreviousBuffer and return
3252 if (handles.empty()) {
3253 mReleasePreviousBuffer = false;
3254 return false;
3255 }
3256
Pascal Muetschard81cef292023-02-06 12:18:52 +01003257 std::deque<sp<CallbackHandle>> remainingHandles;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003258 for (const auto& handle : handles) {
3259 // If this transaction set a buffer on this layer, release its previous buffer
3260 handle->releasePreviousBuffer = mReleasePreviousBuffer;
3261
3262 // If this layer will be presented in this frame
3263 if (willPresent) {
3264 // If this transaction set an acquire fence on this layer, set its acquire time
3265 handle->acquireTimeOrFence = mCallbackHandleAcquireTimeOrFence;
3266 handle->frameNumber = mDrawingState.frameNumber;
3267
3268 // Store so latched time and release fence can be set
3269 mDrawingState.callbackHandles.push_back(handle);
3270
3271 } else { // If this layer will NOT need to be relatched and presented this frame
Pascal Muetschard81cef292023-02-06 12:18:52 +01003272 // Queue this handle to be notified below.
3273 remainingHandles.push_back(handle);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003274 }
3275 }
3276
Pascal Muetschard81cef292023-02-06 12:18:52 +01003277 if (!remainingHandles.empty()) {
3278 // Notify the transaction completed threads these handles are done. These are only the
3279 // handles that were not added to the mDrawingState, which will be notified later.
3280 std::vector<JankData> jankData;
3281 transferAvailableJankData(remainingHandles, jankData);
3282 mFlinger->getTransactionCallbackInvoker().addCallbackHandles(remainingHandles, jankData);
3283 }
3284
Patrick Williamsbb25f802022-08-30 23:02:34 +00003285 mReleasePreviousBuffer = false;
3286 mCallbackHandleAcquireTimeOrFence = -1;
3287
3288 return willPresent;
3289}
3290
3291Rect Layer::getBufferSize(const State& /*s*/) const {
3292 // for buffer state layers we use the display frame size as the buffer size.
3293
3294 if (mBufferInfo.mBuffer == nullptr) {
3295 return Rect::INVALID_RECT;
3296 }
3297
3298 uint32_t bufWidth = mBufferInfo.mBuffer->getWidth();
3299 uint32_t bufHeight = mBufferInfo.mBuffer->getHeight();
3300
3301 // Undo any transformations on the buffer and return the result.
3302 if (mBufferInfo.mTransform & ui::Transform::ROT_90) {
3303 std::swap(bufWidth, bufHeight);
3304 }
3305
3306 if (getTransformToDisplayInverse()) {
Leon Scroggins III85d4b222023-05-09 13:58:18 -04003307 uint32_t invTransform = SurfaceFlinger::getActiveDisplayRotationFlags();
Patrick Williamsbb25f802022-08-30 23:02:34 +00003308 if (invTransform & ui::Transform::ROT_90) {
3309 std::swap(bufWidth, bufHeight);
3310 }
3311 }
3312
3313 return Rect(0, 0, static_cast<int32_t>(bufWidth), static_cast<int32_t>(bufHeight));
3314}
3315
3316FloatRect Layer::computeSourceBounds(const FloatRect& parentBounds) const {
3317 if (mBufferInfo.mBuffer == nullptr) {
3318 return parentBounds;
3319 }
3320
3321 return getBufferSize(getDrawingState()).toFloatRect();
3322}
3323
3324bool Layer::fenceHasSignaled() const {
3325 if (SurfaceFlinger::enableLatchUnsignaledConfig != LatchUnsignaledConfig::Disabled) {
3326 return true;
3327 }
3328
3329 const bool fenceSignaled =
3330 getDrawingState().acquireFence->getStatus() == Fence::Status::Signaled;
3331 if (!fenceSignaled) {
3332 mFlinger->mTimeStats->incrementLatchSkipped(getSequence(),
3333 TimeStats::LatchSkipReason::LateAcquire);
3334 }
3335
3336 return fenceSignaled;
3337}
3338
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003339void Layer::onPreComposition(nsecs_t refreshStartTime) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003340 for (const auto& handle : mDrawingState.callbackHandles) {
3341 handle->refreshStartTime = refreshStartTime;
3342 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00003343}
3344
3345void Layer::setAutoRefresh(bool autoRefresh) {
3346 mDrawingState.autoRefresh = autoRefresh;
3347}
3348
3349bool Layer::latchSidebandStream(bool& recomputeVisibleRegions) {
3350 // We need to update the sideband stream if the layer has both a buffer and a sideband stream.
Vishnu Nairbedb44b2022-08-02 21:47:40 +00003351 auto* snapshot = editLayerSnapshot();
3352 snapshot->sidebandStreamHasFrame = hasFrameUpdate() && mSidebandStream.get();
Patrick Williamsbb25f802022-08-30 23:02:34 +00003353
3354 if (mSidebandStreamChanged.exchange(false)) {
3355 const State& s(getDrawingState());
3356 // mSidebandStreamChanged was true
3357 mSidebandStream = s.sidebandStream;
Vishnu Nairbedb44b2022-08-02 21:47:40 +00003358 snapshot->sidebandStream = mSidebandStream;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003359 if (mSidebandStream != nullptr) {
3360 setTransactionFlags(eTransactionNeeded);
3361 mFlinger->setTransactionFlags(eTraversalNeeded);
3362 }
3363 recomputeVisibleRegions = true;
3364
3365 return true;
3366 }
3367 return false;
3368}
3369
3370bool Layer::hasFrameUpdate() const {
3371 const State& c(getDrawingState());
3372 return (mDrawingStateModified || mDrawingState.modified) &&
3373 (c.buffer != nullptr || c.bgColorLayer != nullptr);
3374}
3375
Vishnu Naird47bcee2023-02-24 18:08:51 +00003376void Layer::updateTexImage(nsecs_t latchTime, bool bgColorOnly) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003377 const State& s(getDrawingState());
3378
3379 if (!s.buffer) {
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003380 if (bgColorOnly || mBufferInfo.mBuffer) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003381 for (auto& handle : mDrawingState.callbackHandles) {
3382 handle->latchTime = latchTime;
3383 }
3384 }
3385 return;
3386 }
3387
3388 for (auto& handle : mDrawingState.callbackHandles) {
3389 if (handle->frameNumber == mDrawingState.frameNumber) {
3390 handle->latchTime = latchTime;
3391 }
3392 }
3393
3394 const int32_t layerId = getSequence();
3395 const uint64_t bufferId = mDrawingState.buffer->getId();
3396 const uint64_t frameNumber = mDrawingState.frameNumber;
3397 const auto acquireFence = std::make_shared<FenceTime>(mDrawingState.acquireFence);
3398 mFlinger->mTimeStats->setAcquireFence(layerId, frameNumber, acquireFence);
3399 mFlinger->mTimeStats->setLatchTime(layerId, frameNumber, latchTime);
3400
3401 mFlinger->mFrameTracer->traceFence(layerId, bufferId, frameNumber, acquireFence,
3402 FrameTracer::FrameEvent::ACQUIRE_FENCE);
3403 mFlinger->mFrameTracer->traceTimestamp(layerId, bufferId, frameNumber, latchTime,
3404 FrameTracer::FrameEvent::LATCH);
3405
3406 auto& bufferSurfaceFrame = mDrawingState.bufferSurfaceFrameTX;
3407 if (bufferSurfaceFrame != nullptr &&
3408 bufferSurfaceFrame->getPresentState() != PresentState::Presented) {
3409 // Update only if the bufferSurfaceFrame wasn't already presented. A Presented
3410 // bufferSurfaceFrame could be seen here if a pending state was applied successfully and we
3411 // are processing the next state.
3412 addSurfaceFramePresentedForBuffer(bufferSurfaceFrame,
3413 mDrawingState.acquireFenceTime->getSignalTime(),
3414 latchTime);
3415 mDrawingState.bufferSurfaceFrameTX.reset();
3416 }
3417
3418 std::deque<sp<CallbackHandle>> remainingHandles;
3419 mFlinger->getTransactionCallbackInvoker()
3420 .addOnCommitCallbackHandles(mDrawingState.callbackHandles, remainingHandles);
3421 mDrawingState.callbackHandles = remainingHandles;
3422
3423 mDrawingStateModified = false;
3424}
3425
3426void Layer::gatherBufferInfo() {
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003427 mPreviousReleaseCallbackId = {getCurrentBufferId(), mBufferInfo.mFrameNumber};
3428 mPreviousReleaseBufferEndpoint = mBufferInfo.mReleaseBufferEndpoint;
3429 if (!mDrawingState.buffer) {
3430 mBufferInfo = {};
3431 return;
3432 }
3433
3434 if ((!mBufferInfo.mBuffer || !mDrawingState.buffer->hasSameBuffer(*mBufferInfo.mBuffer))) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003435 decrementPendingBufferCount();
3436 }
3437
Patrick Williamsbb25f802022-08-30 23:02:34 +00003438 mBufferInfo.mBuffer = mDrawingState.buffer;
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003439 mBufferInfo.mReleaseBufferEndpoint = mDrawingState.releaseBufferEndpoint;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003440 mBufferInfo.mFence = mDrawingState.acquireFence;
3441 mBufferInfo.mFrameNumber = mDrawingState.frameNumber;
3442 mBufferInfo.mPixelFormat =
3443 !mBufferInfo.mBuffer ? PIXEL_FORMAT_NONE : mBufferInfo.mBuffer->getPixelFormat();
3444 mBufferInfo.mFrameLatencyNeeded = true;
3445 mBufferInfo.mDesiredPresentTime = mDrawingState.desiredPresentTime;
3446 mBufferInfo.mFenceTime = std::make_shared<FenceTime>(mDrawingState.acquireFence);
3447 mBufferInfo.mFence = mDrawingState.acquireFence;
3448 mBufferInfo.mTransform = mDrawingState.bufferTransform;
3449 auto lastDataspace = mBufferInfo.mDataspace;
3450 mBufferInfo.mDataspace = translateDataspace(mDrawingState.dataspace);
Alec Mouri74c7ae12023-03-26 02:57:47 +00003451 if (mBufferInfo.mBuffer != nullptr) {
3452 auto& mapper = GraphicBufferMapper::get();
3453 // TODO: We should measure if it's faster to do a blind write if we're on newer api levels
3454 // and don't need to possibly remaps buffers.
3455 ui::Dataspace dataspace = ui::Dataspace::UNKNOWN;
3456 status_t err = OK;
3457 {
3458 ATRACE_NAME("getDataspace");
3459 err = mapper.getDataspace(mBufferInfo.mBuffer->getBuffer()->handle, &dataspace);
3460 }
3461 if (err != OK || dataspace != mBufferInfo.mDataspace) {
3462 {
3463 ATRACE_NAME("setDataspace");
3464 err = mapper.setDataspace(mBufferInfo.mBuffer->getBuffer()->handle,
3465 static_cast<ui::Dataspace>(mBufferInfo.mDataspace));
3466 }
3467
3468 // Some GPU drivers may cache gralloc metadata which means before we composite we need
3469 // to upsert RenderEngine's caches. Put in a special workaround to be backwards
3470 // compatible with old vendors, with a ticking clock.
3471 static const int32_t kVendorVersion =
3472 base::GetIntProperty("ro.vndk.version", __ANDROID_API_FUTURE__);
3473 if (const auto format =
3474 static_cast<aidl::android::hardware::graphics::common::PixelFormat>(
3475 mBufferInfo.mBuffer->getPixelFormat());
3476 err == OK && kVendorVersion < __ANDROID_API_U__ &&
3477 (format ==
3478 aidl::android::hardware::graphics::common::PixelFormat::
3479 IMPLEMENTATION_DEFINED ||
3480 format == aidl::android::hardware::graphics::common::PixelFormat::YCBCR_420_888 ||
3481 format == aidl::android::hardware::graphics::common::PixelFormat::YV12 ||
3482 format == aidl::android::hardware::graphics::common::PixelFormat::YCBCR_P010)) {
3483 mBufferInfo.mBuffer->remapBuffer();
3484 }
3485 }
3486 }
Patrick Williamsbb25f802022-08-30 23:02:34 +00003487 if (lastDataspace != mBufferInfo.mDataspace) {
John Reck68796592023-01-25 13:47:12 -05003488 mFlinger->mHdrLayerInfoChanged = true;
3489 }
Sally Qi963049b2023-03-23 14:06:21 -07003490 if (mBufferInfo.mDesiredHdrSdrRatio != mDrawingState.desiredHdrSdrRatio) {
3491 mBufferInfo.mDesiredHdrSdrRatio = mDrawingState.desiredHdrSdrRatio;
John Reck68796592023-01-25 13:47:12 -05003492 mFlinger->mHdrLayerInfoChanged = true;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003493 }
3494 mBufferInfo.mCrop = computeBufferCrop(mDrawingState);
3495 mBufferInfo.mScaleMode = NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW;
3496 mBufferInfo.mSurfaceDamage = mDrawingState.surfaceDamageRegion;
3497 mBufferInfo.mHdrMetadata = mDrawingState.hdrMetadata;
3498 mBufferInfo.mApi = mDrawingState.api;
3499 mBufferInfo.mTransformToDisplayInverse = mDrawingState.transformToDisplayInverse;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003500}
3501
3502Rect Layer::computeBufferCrop(const State& s) {
3503 if (s.buffer && !s.bufferCrop.isEmpty()) {
3504 Rect bufferCrop;
3505 s.buffer->getBounds().intersect(s.bufferCrop, &bufferCrop);
3506 return bufferCrop;
3507 } else if (s.buffer) {
3508 return s.buffer->getBounds();
3509 } else {
3510 return s.bufferCrop;
3511 }
3512}
3513
Vishnu Nairde177252023-04-21 12:44:10 -07003514sp<Layer> Layer::createClone(uint32_t mirrorRootId) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003515 LayerCreationArgs args(mFlinger.get(), nullptr, mName + " (Mirror)", 0, LayerMetadata());
3516 args.textureName = mTextureName;
Patrick Williams83f36b22022-09-14 17:57:35 +00003517 sp<Layer> layer = mFlinger->getFactory().createBufferStateLayer(args);
Vishnu Nairde177252023-04-21 12:44:10 -07003518 layer->setInitialValuesForClone(sp<Layer>::fromExisting(this), mirrorRootId);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003519 return layer;
3520}
3521
Patrick Williamsbb25f802022-08-30 23:02:34 +00003522void Layer::decrementPendingBufferCount() {
3523 int32_t pendingBuffers = --mPendingBufferTransactions;
3524 tracePendingBufferCount(pendingBuffers);
3525}
3526
3527void Layer::tracePendingBufferCount(int32_t pendingBuffers) {
3528 ATRACE_INT(mBlastTransactionName.c_str(), pendingBuffers);
3529}
3530
3531/*
3532 * We don't want to send the layer's transform to input, but rather the
3533 * parent's transform. This is because Layer's transform is
3534 * information about how the buffer is placed on screen. The parent's
3535 * transform makes more sense to send since it's information about how the
3536 * layer is placed on screen. This transform is used by input to determine
3537 * how to go from screen space back to window space.
3538 */
3539ui::Transform Layer::getInputTransform() const {
3540 if (!hasBufferOrSidebandStream()) {
3541 return getTransform();
3542 }
3543 sp<Layer> parent = mDrawingParent.promote();
3544 if (parent == nullptr) {
3545 return ui::Transform();
3546 }
3547
3548 return parent->getTransform();
3549}
3550
3551/**
Vishnu Nairfed7c122023-03-18 01:54:43 +00003552 * Returns the bounds used to fill the input frame and the touchable region.
3553 *
Patrick Williamsbb25f802022-08-30 23:02:34 +00003554 * Similar to getInputTransform, we need to update the bounds to include the transform.
3555 * This is because bounds don't include the buffer transform, where the input assumes
3556 * that's already included.
3557 */
Vishnu Nairfed7c122023-03-18 01:54:43 +00003558std::pair<FloatRect, bool> Layer::getInputBounds(bool fillParentBounds) const {
3559 Rect croppedBufferSize = getCroppedBufferSize(getDrawingState());
3560 FloatRect inputBounds = croppedBufferSize.toFloatRect();
3561 if (hasBufferOrSidebandStream() && croppedBufferSize.isValid() &&
3562 mDrawingState.transform.getType() != ui::Transform::IDENTITY) {
3563 inputBounds = mDrawingState.transform.transform(inputBounds);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003564 }
3565
Vishnu Nairfed7c122023-03-18 01:54:43 +00003566 bool inputBoundsValid = croppedBufferSize.isValid();
3567 if (!inputBoundsValid) {
3568 /**
3569 * Input bounds are based on the layer crop or buffer size. But if we are using
3570 * the layer bounds as the input bounds (replaceTouchableRegionWithCrop flag) then
3571 * we can use the parent bounds as the input bounds if the layer does not have buffer
3572 * or a crop. We want to unify this logic but because of compat reasons we cannot always
3573 * use the parent bounds. A layer without a buffer can get input. So when a window is
3574 * initially added, its touchable region can fill its parent layer bounds and that can
3575 * have negative consequences.
3576 */
3577 inputBounds = fillParentBounds ? mBounds : FloatRect{};
Patrick Williamsbb25f802022-08-30 23:02:34 +00003578 }
Vishnu Nairfed7c122023-03-18 01:54:43 +00003579
3580 // Clamp surface inset to the input bounds.
3581 const float inset = static_cast<float>(mDrawingState.inputInfo.surfaceInset);
3582 const float xSurfaceInset = std::clamp(inset, 0.f, inputBounds.getWidth() / 2.f);
3583 const float ySurfaceInset = std::clamp(inset, 0.f, inputBounds.getHeight() / 2.f);
3584
3585 // Apply the insets to the input bounds.
3586 inputBounds.left += xSurfaceInset;
3587 inputBounds.top += ySurfaceInset;
3588 inputBounds.right -= xSurfaceInset;
3589 inputBounds.bottom -= ySurfaceInset;
3590
3591 return {inputBounds, inputBoundsValid};
Patrick Williamsbb25f802022-08-30 23:02:34 +00003592}
3593
3594bool Layer::simpleBufferUpdate(const layer_state_t& s) const {
3595 const uint64_t requiredFlags = layer_state_t::eBufferChanged;
3596
3597 const uint64_t deniedFlags = layer_state_t::eProducerDisconnect | layer_state_t::eLayerChanged |
3598 layer_state_t::eRelativeLayerChanged | layer_state_t::eTransparentRegionChanged |
3599 layer_state_t::eFlagsChanged | layer_state_t::eBlurRegionsChanged |
3600 layer_state_t::eLayerStackChanged | layer_state_t::eAutoRefreshChanged |
3601 layer_state_t::eReparent;
3602
3603 const uint64_t allowedFlags = layer_state_t::eHasListenerCallbacksChanged |
3604 layer_state_t::eFrameRateSelectionPriority | layer_state_t::eFrameRateChanged |
3605 layer_state_t::eSurfaceDamageRegionChanged | layer_state_t::eApiChanged |
3606 layer_state_t::eMetadataChanged | layer_state_t::eDropInputModeChanged |
3607 layer_state_t::eInputInfoChanged;
3608
3609 if ((s.what & requiredFlags) != requiredFlags) {
3610 ALOGV("%s: false [missing required flags 0x%" PRIx64 "]", __func__,
3611 (s.what | requiredFlags) & ~s.what);
3612 return false;
3613 }
3614
3615 if (s.what & deniedFlags) {
3616 ALOGV("%s: false [has denied flags 0x%" PRIx64 "]", __func__, s.what & deniedFlags);
3617 return false;
3618 }
3619
3620 if (s.what & allowedFlags) {
3621 ALOGV("%s: [has allowed flags 0x%" PRIx64 "]", __func__, s.what & allowedFlags);
3622 }
3623
3624 if (s.what & layer_state_t::ePositionChanged) {
3625 if (mRequestedTransform.tx() != s.x || mRequestedTransform.ty() != s.y) {
3626 ALOGV("%s: false [ePositionChanged changed]", __func__);
3627 return false;
3628 }
3629 }
3630
3631 if (s.what & layer_state_t::eAlphaChanged) {
Vishnu Nairbbceb462022-10-10 04:52:13 +00003632 if (mDrawingState.color.a != s.color.a) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003633 ALOGV("%s: false [eAlphaChanged changed]", __func__);
3634 return false;
3635 }
3636 }
3637
3638 if (s.what & layer_state_t::eColorTransformChanged) {
3639 if (mDrawingState.colorTransform != s.colorTransform) {
3640 ALOGV("%s: false [eColorTransformChanged changed]", __func__);
3641 return false;
3642 }
3643 }
3644
3645 if (s.what & layer_state_t::eBackgroundColorChanged) {
Vishnu Naird47bcee2023-02-24 18:08:51 +00003646 if (mDrawingState.bgColorLayer || s.bgColor.a != 0) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003647 ALOGV("%s: false [eBackgroundColorChanged changed]", __func__);
3648 return false;
3649 }
3650 }
3651
3652 if (s.what & layer_state_t::eMatrixChanged) {
3653 if (mRequestedTransform.dsdx() != s.matrix.dsdx ||
3654 mRequestedTransform.dtdy() != s.matrix.dtdy ||
3655 mRequestedTransform.dtdx() != s.matrix.dtdx ||
3656 mRequestedTransform.dsdy() != s.matrix.dsdy) {
3657 ALOGV("%s: false [eMatrixChanged changed]", __func__);
3658 return false;
3659 }
3660 }
3661
3662 if (s.what & layer_state_t::eCornerRadiusChanged) {
3663 if (mDrawingState.cornerRadius != s.cornerRadius) {
3664 ALOGV("%s: false [eCornerRadiusChanged changed]", __func__);
3665 return false;
3666 }
3667 }
3668
3669 if (s.what & layer_state_t::eBackgroundBlurRadiusChanged) {
3670 if (mDrawingState.backgroundBlurRadius != static_cast<int>(s.backgroundBlurRadius)) {
3671 ALOGV("%s: false [eBackgroundBlurRadiusChanged changed]", __func__);
3672 return false;
3673 }
3674 }
3675
Vishnu Nairbbceb462022-10-10 04:52:13 +00003676 if (s.what & layer_state_t::eBufferTransformChanged) {
3677 if (mDrawingState.bufferTransform != s.bufferTransform) {
3678 ALOGV("%s: false [eBufferTransformChanged changed]", __func__);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003679 return false;
3680 }
3681 }
3682
3683 if (s.what & layer_state_t::eTransformToDisplayInverseChanged) {
3684 if (mDrawingState.transformToDisplayInverse != s.transformToDisplayInverse) {
3685 ALOGV("%s: false [eTransformToDisplayInverseChanged changed]", __func__);
3686 return false;
3687 }
3688 }
3689
3690 if (s.what & layer_state_t::eCropChanged) {
3691 if (mDrawingState.crop != s.crop) {
3692 ALOGV("%s: false [eCropChanged changed]", __func__);
3693 return false;
3694 }
3695 }
3696
3697 if (s.what & layer_state_t::eDataspaceChanged) {
3698 if (mDrawingState.dataspace != s.dataspace) {
3699 ALOGV("%s: false [eDataspaceChanged changed]", __func__);
3700 return false;
3701 }
3702 }
3703
3704 if (s.what & layer_state_t::eHdrMetadataChanged) {
3705 if (mDrawingState.hdrMetadata != s.hdrMetadata) {
3706 ALOGV("%s: false [eHdrMetadataChanged changed]", __func__);
3707 return false;
3708 }
3709 }
3710
3711 if (s.what & layer_state_t::eSidebandStreamChanged) {
3712 if (mDrawingState.sidebandStream != s.sidebandStream) {
3713 ALOGV("%s: false [eSidebandStreamChanged changed]", __func__);
3714 return false;
3715 }
3716 }
3717
3718 if (s.what & layer_state_t::eColorSpaceAgnosticChanged) {
3719 if (mDrawingState.colorSpaceAgnostic != s.colorSpaceAgnostic) {
3720 ALOGV("%s: false [eColorSpaceAgnosticChanged changed]", __func__);
3721 return false;
3722 }
3723 }
3724
3725 if (s.what & layer_state_t::eShadowRadiusChanged) {
3726 if (mDrawingState.shadowRadius != s.shadowRadius) {
3727 ALOGV("%s: false [eShadowRadiusChanged changed]", __func__);
3728 return false;
3729 }
3730 }
3731
3732 if (s.what & layer_state_t::eFixedTransformHintChanged) {
3733 if (mDrawingState.fixedTransformHint != s.fixedTransformHint) {
3734 ALOGV("%s: false [eFixedTransformHintChanged changed]", __func__);
3735 return false;
3736 }
3737 }
3738
3739 if (s.what & layer_state_t::eTrustedOverlayChanged) {
3740 if (mDrawingState.isTrustedOverlay != s.isTrustedOverlay) {
3741 ALOGV("%s: false [eTrustedOverlayChanged changed]", __func__);
3742 return false;
3743 }
3744 }
3745
3746 if (s.what & layer_state_t::eStretchChanged) {
3747 StretchEffect temp = s.stretchEffect;
3748 temp.sanitize();
3749 if (mDrawingState.stretchEffect != temp) {
3750 ALOGV("%s: false [eStretchChanged changed]", __func__);
3751 return false;
3752 }
3753 }
3754
3755 if (s.what & layer_state_t::eBufferCropChanged) {
3756 if (mDrawingState.bufferCrop != s.bufferCrop) {
3757 ALOGV("%s: false [eBufferCropChanged changed]", __func__);
3758 return false;
3759 }
3760 }
3761
3762 if (s.what & layer_state_t::eDestinationFrameChanged) {
3763 if (mDrawingState.destinationFrame != s.destinationFrame) {
3764 ALOGV("%s: false [eDestinationFrameChanged changed]", __func__);
3765 return false;
3766 }
3767 }
3768
3769 if (s.what & layer_state_t::eDimmingEnabledChanged) {
3770 if (mDrawingState.dimmingEnabled != s.dimmingEnabled) {
3771 ALOGV("%s: false [eDimmingEnabledChanged changed]", __func__);
3772 return false;
3773 }
3774 }
3775
John Reck68796592023-01-25 13:47:12 -05003776 if (s.what & layer_state_t::eExtendedRangeBrightnessChanged) {
Sally Qi963049b2023-03-23 14:06:21 -07003777 if (mDrawingState.currentHdrSdrRatio != s.currentHdrSdrRatio ||
3778 mDrawingState.desiredHdrSdrRatio != s.desiredHdrSdrRatio) {
3779 ALOGV("%s: false [eExtendedRangeBrightnessChanged changed]", __func__);
John Reck68796592023-01-25 13:47:12 -05003780 return false;
3781 }
3782 }
3783
Patrick Williamsbb25f802022-08-30 23:02:34 +00003784 ALOGV("%s: true", __func__);
3785 return true;
3786}
3787
3788bool Layer::isHdrY410() const {
3789 // pixel format is HDR Y410 masquerading as RGBA_1010102
3790 return (mBufferInfo.mDataspace == ui::Dataspace::BT2020_ITU_PQ &&
3791 mBufferInfo.mApi == NATIVE_WINDOW_API_MEDIA &&
3792 mBufferInfo.mPixelFormat == HAL_PIXEL_FORMAT_RGBA_1010102);
3793}
3794
Vishnu Naire14c6b32022-08-06 04:20:15 +00003795sp<LayerFE> Layer::getCompositionEngineLayerFE() const {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003796 // There's no need to get a CE Layer if the layer isn't going to draw anything.
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003797 return hasSomethingToDraw() ? mLegacyLayerFE : nullptr;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003798}
3799
Vishnu Naire14c6b32022-08-06 04:20:15 +00003800const LayerSnapshot* Layer::getLayerSnapshot() const {
Vishnu Nairbedb44b2022-08-02 21:47:40 +00003801 return mSnapshot.get();
Patrick Williamsbb25f802022-08-30 23:02:34 +00003802}
3803
Vishnu Naire14c6b32022-08-06 04:20:15 +00003804LayerSnapshot* Layer::editLayerSnapshot() {
Vishnu Nairbedb44b2022-08-02 21:47:40 +00003805 return mSnapshot.get();
3806}
Vishnu Naire14c6b32022-08-06 04:20:15 +00003807
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003808std::unique_ptr<frontend::LayerSnapshot> Layer::stealLayerSnapshot() {
3809 return std::move(mSnapshot);
3810}
3811
3812void Layer::updateLayerSnapshot(std::unique_ptr<frontend::LayerSnapshot> snapshot) {
3813 mSnapshot = std::move(snapshot);
3814}
3815
Patrick Williamsbb25f802022-08-30 23:02:34 +00003816const compositionengine::LayerFECompositionState* Layer::getCompositionState() const {
Vishnu Nairbedb44b2022-08-02 21:47:40 +00003817 return mSnapshot.get();
Patrick Williamsbb25f802022-08-30 23:02:34 +00003818}
3819
Patrick Williams7584c6a2022-10-29 02:10:58 +00003820sp<LayerFE> Layer::copyCompositionEngineLayerFE() const {
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003821 auto result = mFlinger->getFactory().createLayerFE(mName);
Patrick Williams7584c6a2022-10-29 02:10:58 +00003822 result->mSnapshot = std::make_unique<LayerSnapshot>(*mSnapshot);
3823 return result;
3824}
3825
Vishnu Nair3af0ec02023-02-10 04:13:48 +00003826sp<LayerFE> Layer::getCompositionEngineLayerFE(
3827 const frontend::LayerHierarchy::TraversalPath& path) {
3828 for (auto& [p, layerFE] : mLayerFEs) {
3829 if (p == path) {
3830 return layerFE;
3831 }
3832 }
3833 auto layerFE = mFlinger->getFactory().createLayerFE(mName);
3834 mLayerFEs.emplace_back(path, layerFE);
3835 return layerFE;
3836}
3837
Patrick Williamsbb25f802022-08-30 23:02:34 +00003838void Layer::useSurfaceDamage() {
3839 if (mFlinger->mForceFullDamage) {
3840 surfaceDamageRegion = Region::INVALID_REGION;
3841 } else {
3842 surfaceDamageRegion = mBufferInfo.mSurfaceDamage;
3843 }
3844}
3845
3846void Layer::useEmptyDamage() {
3847 surfaceDamageRegion.clear();
3848}
3849
3850bool Layer::isOpaque(const Layer::State& s) const {
3851 // if we don't have a buffer or sidebandStream yet, we're translucent regardless of the
3852 // layer's opaque flag.
3853 if (!hasSomethingToDraw()) {
3854 return false;
3855 }
3856
3857 // if the layer has the opaque flag, then we're always opaque
3858 if ((s.flags & layer_state_t::eLayerOpaque) == layer_state_t::eLayerOpaque) {
3859 return true;
3860 }
3861
3862 // If the buffer has no alpha channel, then we are opaque
Vishnu Nair8fc721b2022-12-22 20:06:32 +00003863 if (hasBufferOrSidebandStream() && LayerSnapshot::isOpaqueFormat(getPixelFormat())) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003864 return true;
3865 }
3866
3867 // Lastly consider the layer opaque if drawing a color with alpha == 1.0
3868 return fillsColor() && getAlpha() == 1.0_hf;
3869}
3870
3871bool Layer::canReceiveInput() const {
3872 return !isHiddenByPolicy() && (mBufferInfo.mBuffer == nullptr || getAlpha() > 0.0f);
3873}
3874
3875bool Layer::isVisible() const {
3876 if (!hasSomethingToDraw()) {
3877 return false;
3878 }
3879
3880 if (isHiddenByPolicy()) {
3881 return false;
3882 }
3883
3884 return getAlpha() > 0.0f || hasBlur();
3885}
3886
3887void Layer::onPostComposition(const DisplayDevice* display,
3888 const std::shared_ptr<FenceTime>& glDoneFence,
3889 const std::shared_ptr<FenceTime>& presentFence,
3890 const CompositorTiming& compositorTiming) {
3891 // mFrameLatencyNeeded is true when a new frame was latched for the
3892 // composition.
3893 if (!mBufferInfo.mFrameLatencyNeeded) return;
3894
3895 for (const auto& handle : mDrawingState.callbackHandles) {
3896 handle->gpuCompositionDoneFence = glDoneFence;
3897 handle->compositorTiming = compositorTiming;
3898 }
3899
3900 // Update mFrameTracker.
3901 nsecs_t desiredPresentTime = mBufferInfo.mDesiredPresentTime;
3902 mFrameTracker.setDesiredPresentTime(desiredPresentTime);
3903
3904 const int32_t layerId = getSequence();
3905 mFlinger->mTimeStats->setDesiredTime(layerId, mCurrentFrameNumber, desiredPresentTime);
3906
3907 const auto outputLayer = findOutputLayerForDisplay(display);
3908 if (outputLayer && outputLayer->requiresClientComposition()) {
3909 nsecs_t clientCompositionTimestamp = outputLayer->getState().clientCompositionTimestamp;
3910 mFlinger->mFrameTracer->traceTimestamp(layerId, getCurrentBufferId(), mCurrentFrameNumber,
3911 clientCompositionTimestamp,
3912 FrameTracer::FrameEvent::FALLBACK_COMPOSITION);
3913 // Update the SurfaceFrames in the drawing state
3914 if (mDrawingState.bufferSurfaceFrameTX) {
3915 mDrawingState.bufferSurfaceFrameTX->setGpuComposition();
3916 }
3917 for (auto& [token, surfaceFrame] : mDrawingState.bufferlessSurfaceFramesTX) {
3918 surfaceFrame->setGpuComposition();
3919 }
3920 }
3921
3922 std::shared_ptr<FenceTime> frameReadyFence = mBufferInfo.mFenceTime;
3923 if (frameReadyFence->isValid()) {
3924 mFrameTracker.setFrameReadyFence(std::move(frameReadyFence));
3925 } else {
3926 // There was no fence for this frame, so assume that it was ready
3927 // to be presented at the desired present time.
3928 mFrameTracker.setFrameReadyTime(desiredPresentTime);
3929 }
3930
3931 if (display) {
Ady Abrahamace3d052022-11-17 16:25:05 -08003932 const Fps refreshRate = display->refreshRateSelector().getActiveMode().fps;
Patrick Williamsbb25f802022-08-30 23:02:34 +00003933 const std::optional<Fps> renderRate =
3934 mFlinger->mScheduler->getFrameRateOverride(getOwnerUid());
3935
3936 const auto vote = frameRateToSetFrameRateVotePayload(mDrawingState.frameRate);
3937 const auto gameMode = getGameMode();
3938
3939 if (presentFence->isValid()) {
3940 mFlinger->mTimeStats->setPresentFence(layerId, mCurrentFrameNumber, presentFence,
3941 refreshRate, renderRate, vote, gameMode);
3942 mFlinger->mFrameTracer->traceFence(layerId, getCurrentBufferId(), mCurrentFrameNumber,
3943 presentFence,
3944 FrameTracer::FrameEvent::PRESENT_FENCE);
3945 mFrameTracker.setActualPresentFence(std::shared_ptr<FenceTime>(presentFence));
3946 } else if (const auto displayId = PhysicalDisplayId::tryCast(display->getId());
3947 displayId && mFlinger->getHwComposer().isConnected(*displayId)) {
Dominik Laskowskidc2bb802022-09-28 16:02:59 -04003948 // The HWC doesn't support present fences, so use the present timestamp instead.
3949 const nsecs_t presentTimestamp =
3950 mFlinger->getHwComposer().getPresentTimestamp(*displayId);
3951
3952 const nsecs_t now = systemTime(CLOCK_MONOTONIC);
3953 const nsecs_t vsyncPeriod = display->getVsyncPeriodFromHWC();
3954 const nsecs_t actualPresentTime = now - ((now - presentTimestamp) % vsyncPeriod);
3955
Patrick Williamsbb25f802022-08-30 23:02:34 +00003956 mFlinger->mTimeStats->setPresentTime(layerId, mCurrentFrameNumber, actualPresentTime,
3957 refreshRate, renderRate, vote, gameMode);
3958 mFlinger->mFrameTracer->traceTimestamp(layerId, getCurrentBufferId(),
3959 mCurrentFrameNumber, actualPresentTime,
3960 FrameTracer::FrameEvent::PRESENT_FENCE);
3961 mFrameTracker.setActualPresentTime(actualPresentTime);
3962 }
3963 }
3964
3965 mFrameTracker.advanceFrame();
3966 mBufferInfo.mFrameLatencyNeeded = false;
3967}
3968
Vishnu Nair7ee4f462023-04-19 09:54:09 -07003969bool Layer::willReleaseBufferOnLatch() const {
3970 return !mDrawingState.buffer && mBufferInfo.mBuffer;
3971}
3972
Patrick Williamsbb25f802022-08-30 23:02:34 +00003973bool Layer::latchBuffer(bool& recomputeVisibleRegions, nsecs_t latchTime) {
Vishnu Naird47bcee2023-02-24 18:08:51 +00003974 const bool bgColorOnly = mDrawingState.bgColorLayer != nullptr;
3975 return latchBufferImpl(recomputeVisibleRegions, latchTime, bgColorOnly);
3976}
3977
3978bool Layer::latchBufferImpl(bool& recomputeVisibleRegions, nsecs_t latchTime, bool bgColorOnly) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00003979 ATRACE_FORMAT_INSTANT("latchBuffer %s - %" PRIu64, getDebugName(),
3980 getDrawingState().frameNumber);
3981
3982 bool refreshRequired = latchSidebandStream(recomputeVisibleRegions);
3983
3984 if (refreshRequired) {
3985 return refreshRequired;
3986 }
3987
3988 // If the head buffer's acquire fence hasn't signaled yet, return and
3989 // try again later
3990 if (!fenceHasSignaled()) {
3991 ATRACE_NAME("!fenceHasSignaled()");
3992 mFlinger->onLayerUpdate();
3993 return false;
3994 }
Vishnu Naird47bcee2023-02-24 18:08:51 +00003995 updateTexImage(latchTime, bgColorOnly);
Patrick Williamsbb25f802022-08-30 23:02:34 +00003996
3997 // Capture the old state of the layer for comparisons later
3998 BufferInfo oldBufferInfo = mBufferInfo;
3999 const bool oldOpacity = isOpaque(mDrawingState);
4000 mPreviousFrameNumber = mCurrentFrameNumber;
4001 mCurrentFrameNumber = mDrawingState.frameNumber;
4002 gatherBufferInfo();
4003
Vishnu Nair7ee4f462023-04-19 09:54:09 -07004004 if (mBufferInfo.mBuffer) {
4005 // We latched a buffer that will be presented soon. Clear the previously presented layer
4006 // stack list.
4007 mPreviouslyPresentedLayerStacks.clear();
4008 }
4009
4010 if (mDrawingState.buffer == nullptr) {
4011 const bool bufferReleased = oldBufferInfo.mBuffer != nullptr;
4012 recomputeVisibleRegions = bufferReleased;
4013 return bufferReleased;
4014 }
4015
Patrick Williamsbb25f802022-08-30 23:02:34 +00004016 if (oldBufferInfo.mBuffer == nullptr) {
4017 // the first time we receive a buffer, we need to trigger a
4018 // geometry invalidation.
4019 recomputeVisibleRegions = true;
4020 }
4021
4022 if ((mBufferInfo.mCrop != oldBufferInfo.mCrop) ||
4023 (mBufferInfo.mTransform != oldBufferInfo.mTransform) ||
4024 (mBufferInfo.mScaleMode != oldBufferInfo.mScaleMode) ||
4025 (mBufferInfo.mTransformToDisplayInverse != oldBufferInfo.mTransformToDisplayInverse)) {
4026 recomputeVisibleRegions = true;
4027 }
4028
4029 if (oldBufferInfo.mBuffer != nullptr) {
4030 uint32_t bufWidth = mBufferInfo.mBuffer->getWidth();
4031 uint32_t bufHeight = mBufferInfo.mBuffer->getHeight();
4032 if (bufWidth != oldBufferInfo.mBuffer->getWidth() ||
4033 bufHeight != oldBufferInfo.mBuffer->getHeight()) {
4034 recomputeVisibleRegions = true;
4035 }
4036 }
4037
4038 if (oldOpacity != isOpaque(mDrawingState)) {
4039 recomputeVisibleRegions = true;
4040 }
4041
4042 return true;
4043}
4044
4045bool Layer::hasReadyFrame() const {
4046 return hasFrameUpdate() || getSidebandStreamChanged() || getAutoRefresh();
4047}
4048
4049bool Layer::isProtected() const {
4050 return (mBufferInfo.mBuffer != nullptr) &&
4051 (mBufferInfo.mBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
4052}
4053
Patrick Williamsbb25f802022-08-30 23:02:34 +00004054void Layer::latchAndReleaseBuffer() {
4055 if (hasReadyFrame()) {
4056 bool ignored = false;
4057 latchBuffer(ignored, systemTime());
4058 }
4059 releasePendingBuffer(systemTime());
4060}
4061
4062PixelFormat Layer::getPixelFormat() const {
4063 return mBufferInfo.mPixelFormat;
4064}
4065
4066bool Layer::getTransformToDisplayInverse() const {
4067 return mBufferInfo.mTransformToDisplayInverse;
4068}
4069
4070Rect Layer::getBufferCrop() const {
4071 // this is the crop rectangle that applies to the buffer
4072 // itself (as opposed to the window)
4073 if (!mBufferInfo.mCrop.isEmpty()) {
4074 // if the buffer crop is defined, we use that
4075 return mBufferInfo.mCrop;
4076 } else if (mBufferInfo.mBuffer != nullptr) {
4077 // otherwise we use the whole buffer
4078 return mBufferInfo.mBuffer->getBounds();
4079 } else {
4080 // if we don't have a buffer yet, we use an empty/invalid crop
4081 return Rect();
4082 }
4083}
4084
4085uint32_t Layer::getBufferTransform() const {
4086 return mBufferInfo.mTransform;
4087}
4088
4089ui::Dataspace Layer::getDataSpace() const {
Patrick Williamsbb25f802022-08-30 23:02:34 +00004090 return hasBufferOrSidebandStream() ? mBufferInfo.mDataspace : mDrawingState.dataspace;
4091}
4092
4093ui::Dataspace Layer::translateDataspace(ui::Dataspace dataspace) {
4094 ui::Dataspace updatedDataspace = dataspace;
4095 // translate legacy dataspaces to modern dataspaces
4096 switch (dataspace) {
Alec Mouri74c7ae12023-03-26 02:57:47 +00004097 // Treat unknown dataspaces as V0_sRGB
4098 case ui::Dataspace::UNKNOWN:
Patrick Williamsbb25f802022-08-30 23:02:34 +00004099 case ui::Dataspace::SRGB:
4100 updatedDataspace = ui::Dataspace::V0_SRGB;
4101 break;
4102 case ui::Dataspace::SRGB_LINEAR:
4103 updatedDataspace = ui::Dataspace::V0_SRGB_LINEAR;
4104 break;
4105 case ui::Dataspace::JFIF:
4106 updatedDataspace = ui::Dataspace::V0_JFIF;
4107 break;
4108 case ui::Dataspace::BT601_625:
4109 updatedDataspace = ui::Dataspace::V0_BT601_625;
4110 break;
4111 case ui::Dataspace::BT601_525:
4112 updatedDataspace = ui::Dataspace::V0_BT601_525;
4113 break;
4114 case ui::Dataspace::BT709:
4115 updatedDataspace = ui::Dataspace::V0_BT709;
4116 break;
4117 default:
4118 break;
4119 }
4120
4121 return updatedDataspace;
4122}
4123
4124sp<GraphicBuffer> Layer::getBuffer() const {
4125 return mBufferInfo.mBuffer ? mBufferInfo.mBuffer->getBuffer() : nullptr;
4126}
4127
Vishnu Nairb76d99a2023-03-19 18:22:31 -07004128void Layer::setTransformHintLegacy(ui::Transform::RotationFlags displayTransformHint) {
4129 mTransformHintLegacy = getFixedTransformHint();
4130 if (mTransformHintLegacy == ui::Transform::ROT_INVALID) {
4131 mTransformHintLegacy = displayTransformHint;
Patrick Williamsbb25f802022-08-30 23:02:34 +00004132 }
Vishnu Nair71fcf912022-10-18 09:14:20 -07004133 mSkipReportingTransformHint = false;
Patrick Williamsbb25f802022-08-30 23:02:34 +00004134}
4135
4136const std::shared_ptr<renderengine::ExternalTexture>& Layer::getExternalTexture() const {
4137 return mBufferInfo.mBuffer;
4138}
4139
4140bool Layer::setColor(const half3& color) {
Vishnu Nairbbceb462022-10-10 04:52:13 +00004141 if (mDrawingState.color.rgb == color) {
Patrick Williamsbb25f802022-08-30 23:02:34 +00004142 return false;
4143 }
4144
4145 mDrawingState.sequence++;
Vishnu Nairbbceb462022-10-10 04:52:13 +00004146 mDrawingState.color.rgb = color;
Patrick Williamsbb25f802022-08-30 23:02:34 +00004147 mDrawingState.modified = true;
4148 setTransactionFlags(eTransactionNeeded);
4149 return true;
4150}
4151
4152bool Layer::fillsColor() const {
4153 return !hasBufferOrSidebandStream() && mDrawingState.color.r >= 0.0_hf &&
4154 mDrawingState.color.g >= 0.0_hf && mDrawingState.color.b >= 0.0_hf;
4155}
4156
4157bool Layer::hasBlur() const {
4158 return getBackgroundBlurRadius() > 0 || getDrawingState().blurRegions.size() > 0;
4159}
4160
Vishnu Nairba354102022-08-01 00:14:18 +00004161void Layer::updateSnapshot(bool updateGeometry) {
4162 if (!getCompositionEngineLayerFE()) {
4163 return;
4164 }
4165
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004166 auto* snapshot = editLayerSnapshot();
Vishnu Nairba354102022-08-01 00:14:18 +00004167 if (updateGeometry) {
4168 prepareBasicGeometryCompositionState();
4169 prepareGeometryCompositionState();
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004170 snapshot->roundedCorner = getRoundedCornerState();
4171 snapshot->stretchEffect = getStretchEffect();
4172 snapshot->transformedBounds = mScreenBounds;
4173 if (mEffectiveShadowRadius > 0.f) {
4174 snapshot->shadowSettings = mFlinger->mDrawingState.globalShadowSettings;
4175
4176 // Note: this preserves existing behavior of shadowing the entire layer and not cropping
4177 // it if transparent regions are present. This may not be necessary since shadows are
4178 // typically cast by layers without transparent regions.
4179 snapshot->shadowSettings.boundaries = mBounds;
4180
4181 const float casterAlpha = snapshot->alpha;
4182 const bool casterIsOpaque =
4183 ((mBufferInfo.mBuffer != nullptr) && isOpaque(mDrawingState));
4184
4185 // If the casting layer is translucent, we need to fill in the shadow underneath the
4186 // layer. Otherwise the generated shadow will only be shown around the casting layer.
4187 snapshot->shadowSettings.casterIsTranslucent = !casterIsOpaque || (casterAlpha < 1.0f);
4188 snapshot->shadowSettings.ambientColor *= casterAlpha;
4189 snapshot->shadowSettings.spotColor *= casterAlpha;
4190 }
4191 snapshot->shadowSettings.length = mEffectiveShadowRadius;
Vishnu Nairba354102022-08-01 00:14:18 +00004192 }
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004193 snapshot->contentOpaque = isOpaque(mDrawingState);
Vishnu Nair8fc721b2022-12-22 20:06:32 +00004194 snapshot->layerOpaqueFlagSet =
4195 (mDrawingState.flags & layer_state_t::eLayerOpaque) == layer_state_t::eLayerOpaque;
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004196 snapshot->isHdrY410 = isHdrY410();
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004197 sp<Layer> p = mDrawingParent.promote();
4198 if (p != nullptr) {
Vishnu Nair8fc721b2022-12-22 20:06:32 +00004199 snapshot->parentTransform = p->getTransform();
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004200 } else {
Vishnu Nair8fc721b2022-12-22 20:06:32 +00004201 snapshot->parentTransform.reset();
Vishnu Nairbedb44b2022-08-02 21:47:40 +00004202 }
4203 snapshot->bufferSize = getBufferSize(mDrawingState);
4204 snapshot->externalTexture = mBufferInfo.mBuffer;
Vishnu Naire14c6b32022-08-06 04:20:15 +00004205 snapshot->hasReadyFrame = hasReadyFrame();
Vishnu Nairba354102022-08-01 00:14:18 +00004206 preparePerFrameCompositionState();
4207}
4208
Vishnu Naire14c6b32022-08-06 04:20:15 +00004209void Layer::updateChildrenSnapshots(bool updateGeometry) {
4210 for (const sp<Layer>& child : mDrawingChildren) {
4211 child->updateSnapshot(updateGeometry);
4212 child->updateChildrenSnapshots(updateGeometry);
4213 }
4214}
4215
Vishnu Nair0a4fb002022-08-08 02:40:42 +00004216void Layer::updateMetadataSnapshot(const LayerMetadata& parentMetadata) {
4217 mSnapshot->layerMetadata = parentMetadata;
4218 mSnapshot->layerMetadata.merge(mDrawingState.metadata);
4219 for (const sp<Layer>& child : mDrawingChildren) {
4220 child->updateMetadataSnapshot(mSnapshot->layerMetadata);
4221 }
4222}
4223
4224void Layer::updateRelativeMetadataSnapshot(const LayerMetadata& relativeLayerMetadata,
4225 std::unordered_set<Layer*>& visited) {
4226 if (visited.find(this) != visited.end()) {
4227 ALOGW("Cycle containing layer %s detected in z-order relatives", getDebugName());
4228 return;
4229 }
4230 visited.insert(this);
4231
4232 mSnapshot->relativeLayerMetadata = relativeLayerMetadata;
4233
4234 if (mDrawingState.zOrderRelatives.empty()) {
4235 return;
4236 }
4237 LayerMetadata childRelativeLayerMetadata = mSnapshot->relativeLayerMetadata;
4238 childRelativeLayerMetadata.merge(mSnapshot->layerMetadata);
4239 for (wp<Layer> weakRelative : mDrawingState.zOrderRelatives) {
4240 sp<Layer> relative = weakRelative.promote();
4241 if (!relative) {
4242 continue;
4243 }
4244 relative->updateRelativeMetadataSnapshot(childRelativeLayerMetadata, visited);
4245 }
4246}
4247
Chavi Weingarten328a8312023-01-26 21:17:52 +00004248bool Layer::setTrustedPresentationInfo(TrustedPresentationThresholds const& thresholds,
Chavi Weingarten076acac2023-01-19 17:20:43 +00004249 TrustedPresentationListener const& listener) {
4250 bool hadTrustedPresentationListener = hasTrustedPresentationListener();
4251 mTrustedPresentationListener = listener;
4252 mTrustedPresentationThresholds = thresholds;
4253 bool haveTrustedPresentationListener = hasTrustedPresentationListener();
4254 if (!hadTrustedPresentationListener && haveTrustedPresentationListener) {
4255 mFlinger->mNumTrustedPresentationListeners++;
4256 } else if (hadTrustedPresentationListener && !haveTrustedPresentationListener) {
4257 mFlinger->mNumTrustedPresentationListeners--;
4258 }
Chavi Weingarten328a8312023-01-26 21:17:52 +00004259
4260 // Reset trusted presentation states to ensure we start the time again.
4261 mEnteredTrustedPresentationStateTime = -1;
4262 mLastReportedTrustedPresentationState = false;
4263 mLastComputedTrustedPresentationState = false;
4264
4265 // If there's a new trusted presentation listener, the code needs to go through the composite
4266 // path to ensure it recomutes the current state and invokes the TrustedPresentationListener if
4267 // we're already in the requested state.
4268 return haveTrustedPresentationListener;
Chavi Weingarten076acac2023-01-19 17:20:43 +00004269}
4270
Vishnu Naira156f482023-02-22 00:23:38 +00004271void Layer::updateLastLatchTime(nsecs_t latchTime) {
4272 mLastLatchTime = latchTime;
4273}
4274
Mathias Agopian13127d82013-03-05 17:47:11 -08004275// ---------------------------------------------------------------------------
4276
Marin Shalamanov46084422020-10-13 12:33:42 +02004277std::ostream& operator<<(std::ostream& stream, const Layer::FrameRate& rate) {
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -07004278 return stream << "{rate=" << rate.rate << " type=" << ftl::enum_string(rate.type)
4279 << " seamlessness=" << ftl::enum_string(rate.seamlessness) << '}';
Marin Shalamanov46084422020-10-13 12:33:42 +02004280}
4281
Dominik Laskowskif5d0ea52021-09-26 17:27:01 -07004282} // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07004283
4284#if defined(__gl_h_)
4285#error "don't include gl/gl.h in this file"
4286#endif
4287
4288#if defined(__gl2_h_)
4289#error "don't include gl2/gl2.h in this file"
4290#endif
Ady Abrahamb0dbdaa2020-01-06 16:19:42 -08004291
4292// TODO(b/129481165): remove the #pragma below and fix conversion issues
4293#pragma clang diagnostic pop // ignored "-Wconversion"