blob: e7fbfe936ddec3dc4d066a3df787c91d2d89e08a [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
Dan Stoza9e56aa02015-11-02 13:00:03 -080017//#define LOG_NDEBUG 0
18#undef LOG_TAG
19#define LOG_TAG "Layer"
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080020#define ATRACE_TAG ATRACE_TAG_GRAPHICS
21
Alec Mourie60041e2019-06-14 18:59:51 -070022#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023
Yiwei Zhang5434a782018-12-05 18:06:32 -080024#include <android-base/stringprintf.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080025#include <compositionengine/Display.h>
Lloyd Pique0b785d82018-12-04 17:25:27 -080026#include <compositionengine/Layer.h>
Lloyd Piquea83776c2019-01-29 18:42:32 -080027#include <compositionengine/LayerFECompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080028#include <compositionengine/OutputLayer.h>
Lloyd Pique0b785d82018-12-04 17:25:27 -080029#include <compositionengine/impl/LayerCompositionState.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080030#include <compositionengine/impl/OutputLayerCompositionState.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070031#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070032#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070033#include <cutils/properties.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080034#include <gui/BufferItem.h>
35#include <gui/LayerDebugInfo.h>
36#include <gui/Surface.h>
Alec Mourie60041e2019-06-14 18:59:51 -070037#include <math.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080038#include <renderengine/RenderEngine.h>
Alec Mourie60041e2019-06-14 18:59:51 -070039#include <stdint.h>
40#include <stdlib.h>
41#include <sys/types.h>
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080042#include <ui/DebugUtils.h>
43#include <ui/GraphicBuffer.h>
44#include <ui/PixelFormat.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080045#include <utils/Errors.h>
46#include <utils/Log.h>
Jesse Hall399184a2014-03-03 15:42:54 -080047#include <utils/NativeHandle.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080049#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050
Alec Mourie60041e2019-06-14 18:59:51 -070051#include <algorithm>
52#include <mutex>
53#include <sstream>
54
Yiwei Zhang60d1a192018-03-07 14:52:28 -080055#include "BufferLayer.h"
Valerie Haudd0b7572019-01-29 14:59:27 -080056#include "ColorLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020057#include "Colorizer.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070058#include "DisplayDevice.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080059#include "DisplayHardware/HWComposer.h"
Lloyd Pique37c2c9b2018-12-04 17:25:10 -080060#include "LayerProtoHelper.h"
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070061#include "LayerRejecter.h"
Dan Stozab9b08832014-03-13 11:55:57 -070062#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063#include "SurfaceFlinger.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -080064#include "TimeStats/TimeStats.h"
Mathias Agopian1b031492012-06-20 17:51:20 -070065
David Sodman41fdfc92017-11-06 16:09:56 -080066#define DEBUG_RESIZE 0
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080068namespace android {
69
Yiwei Zhang5434a782018-12-05 18:06:32 -080070using base::StringAppendF;
71
Lloyd Piquef1c675b2018-09-12 20:45:39 -070072std::atomic<int32_t> Layer::sSequence{1};
Mathias Agopian13127d82013-03-05 17:47:11 -080073
Lloyd Pique42ab75e2018-09-12 20:46:03 -070074Layer::Layer(const LayerCreationArgs& args)
Ady Abraham8f1ee7f2019-04-05 10:32:50 -070075 : mFlinger(args.flinger),
76 mName(args.name),
77 mClientRef(args.client),
78 mWindowType(args.metadata.getInt32(METADATA_WINDOW_TYPE, 0)) {
Mathias Agopiana67932f2011-04-20 14:20:59 -070079 mCurrentCrop.makeInvalid();
Mathias Agopian4d9b8222013-03-12 17:11:48 -070080
81 uint32_t layerFlags = 0;
Lloyd Pique42ab75e2018-09-12 20:46:03 -070082 if (args.flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden;
83 if (args.flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque;
84 if (args.flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure;
Mathias Agopian4d9b8222013-03-12 17:11:48 -070085
Dan Stozaf7ba41a2017-05-10 15:11:11 -070086 mTransactionName = String8("TX - ") + mName;
Mathias Agopian4d9b8222013-03-12 17:11:48 -070087
Lloyd Pique0449b0f2018-12-20 16:23:45 -080088 mCurrentState.active_legacy.w = args.w;
89 mCurrentState.active_legacy.h = args.h;
90 mCurrentState.flags = layerFlags;
91 mCurrentState.active_legacy.transform.set(0, 0);
92 mCurrentState.crop_legacy.makeInvalid();
93 mCurrentState.requestedCrop_legacy = mCurrentState.crop_legacy;
94 mCurrentState.z = 0;
95 mCurrentState.color.a = 1.0f;
96 mCurrentState.layerStack = 0;
97 mCurrentState.sequence = 0;
98 mCurrentState.requested_legacy = mCurrentState.active_legacy;
Lloyd Pique0449b0f2018-12-20 16:23:45 -080099 mCurrentState.active.w = UINT32_MAX;
100 mCurrentState.active.h = UINT32_MAX;
101 mCurrentState.active.transform.set(0, 0);
102 mCurrentState.transform = 0;
103 mCurrentState.transformToDisplayInverse = false;
104 mCurrentState.crop.makeInvalid();
105 mCurrentState.acquireFence = new Fence(-1);
106 mCurrentState.dataspace = ui::Dataspace::UNKNOWN;
107 mCurrentState.hdrMetadata.validTypes = 0;
108 mCurrentState.surfaceDamageRegion.clear();
109 mCurrentState.cornerRadius = 0.0f;
110 mCurrentState.api = -1;
111 mCurrentState.hasColorTransform = false;
Peiyong Linc502cb72019-03-01 15:00:23 -0800112 mCurrentState.colorSpaceAgnostic = false;
Evan Roskya1f1e152019-01-24 16:17:46 -0800113 mCurrentState.metadata = args.metadata;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700114
115 // drawing state & current state are identical
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800116 mDrawingState = mCurrentState;
Jamie Gennis6547ff42013-07-16 20:12:42 -0700117
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800118 CompositorTiming compositorTiming;
Lloyd Pique42ab75e2018-09-12 20:46:03 -0700119 args.flinger->getCompositorTiming(&compositorTiming);
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800120 mFrameEventHistory.initializeCompositorTiming(compositorTiming);
Jorim Jaggibd6480f2018-08-10 14:37:31 +0200121 mFrameTracker.setDisplayRefreshPeriod(compositorTiming.interval);
Robert Carr2e102c92018-10-23 12:11:15 -0700122
Ady Abraham8f1ee7f2019-04-05 10:32:50 -0700123 mSchedulerLayerHandle = mFlinger->mScheduler->registerLayer(mName.c_str(), mWindowType);
Ady Abraham09bd3922019-04-08 10:44:56 -0700124
Robert Carr2e102c92018-10-23 12:11:15 -0700125 mFlinger->onLayerCreated();
Dan Stoza436ccf32018-06-21 12:10:12 -0700126}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700127
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700128Layer::~Layer() {
David Sodman577c8962017-12-08 14:50:53 -0800129 sp<Client> c(mClientRef.promote());
130 if (c != 0) {
131 c->detachLayer(this);
132 }
133
Jorim Jaggi10c985e2018-10-23 11:17:45 +0000134 mFrameTracker.logAndResetStats(mName);
chaviw74d90ad2019-04-26 14:45:26 -0700135 mFlinger->onLayerDestroyed(this);
Mathias Agopian96f08192010-06-02 23:28:45 -0700136}
137
Mathias Agopian13127d82013-03-05 17:47:11 -0800138// ---------------------------------------------------------------------------
139// callbacks
140// ---------------------------------------------------------------------------
141
David Sodmaneb085e02017-10-05 18:49:04 -0700142/*
143 * onLayerDisplayed is only meaningful for BufferLayer, but, is called through
144 * Layer. So, the implementation is done in BufferLayer. When called on a
145 * ColorLayer object, it's essentially a NOP.
146 */
David Sodmaneb085e02017-10-05 18:49:04 -0700147void Layer::onLayerDisplayed(const sp<Fence>& /*releaseFence*/) {}
Mathias Agopian13127d82013-03-05 17:47:11 -0800148
chaviw43cb3cb2019-05-31 15:23:41 -0700149void Layer::removeRemoteSyncPoints() {
150 for (auto& point : mRemoteSyncPoints) {
151 point->setTransactionApplied();
152 }
153 mRemoteSyncPoints.clear();
154
155 {
chaviw43cb3cb2019-05-31 15:23:41 -0700156 for (State pendingState : mPendingStates) {
157 pendingState.barrierLayer_legacy = nullptr;
158 }
159 }
160}
161
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700162void Layer::removeRelativeZ(const std::vector<Layer*>& layersInTree) {
163 if (mCurrentState.zOrderRelativeOf == nullptr) {
164 return;
165 }
Robert Carr2e102c92018-10-23 12:11:15 -0700166
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700167 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
168 if (strongRelative == nullptr) {
169 setZOrderRelativeOf(nullptr);
170 return;
171 }
172
173 if (!std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
174 strongRelative->removeZOrderRelative(this);
175 mFlinger->setTransactionFlags(eTraversalNeeded);
chaviw606e5cf2019-03-01 10:12:10 -0800176 setZOrderRelativeOf(nullptr);
Robert Carr5edb1ad2017-04-25 10:54:24 -0700177 }
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700178}
179
180void Layer::removeFromCurrentState() {
181 mRemovedFromCurrentState = true;
Rob Carr4bba3702018-10-08 21:53:30 +0000182
Robert Carr2e102c92018-10-23 12:11:15 -0700183 // Since we are no longer reachable from CurrentState SurfaceFlinger
184 // will no longer invoke doTransaction for us, and so we will
185 // never finish applying transactions. We signal the sync point
186 // now so that another layer will not become indefinitely
187 // blocked.
chaviw43cb3cb2019-05-31 15:23:41 -0700188 removeRemoteSyncPoints();
Robert Carr2e102c92018-10-23 12:11:15 -0700189
190 {
191 Mutex::Autolock syncLock(mLocalSyncPointMutex);
192 for (auto& point : mLocalSyncPoints) {
193 point->setFrameAvailable();
194 }
195 mLocalSyncPoints.clear();
196 }
197
Robert Carr6fb1a7e2018-12-11 12:07:25 -0800198 mFlinger->markLayerPendingRemovalLocked(this);
Chia-I Wuc6657022017-08-15 11:18:17 -0700199}
Chia-I Wu38512252017-05-17 14:36:16 -0700200
Vishnu Nairda9c85a2019-06-03 17:26:48 -0700201void Layer::onRemovedFromCurrentState() {
202 auto layersInTree = getLayersInTree(LayerVector::StateSet::Current);
203 std::sort(layersInTree.begin(), layersInTree.end());
204 for (const auto& layer : layersInTree) {
205 layer->removeFromCurrentState();
206 layer->removeRelativeZ(layersInTree);
207 }
208}
209
chaviw61626f22018-11-15 16:26:27 -0800210void Layer::addToCurrentState() {
211 mRemovedFromCurrentState = false;
212
213 for (const auto& child : mCurrentChildren) {
214 child->addToCurrentState();
215 }
216}
217
Mathias Agopian13127d82013-03-05 17:47:11 -0800218// ---------------------------------------------------------------------------
219// set-up
220// ---------------------------------------------------------------------------
221
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700222const String8& Layer::getName() const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800223 return mName;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800224}
225
chaviw13fdc492017-06-27 12:40:18 -0700226bool Layer::getPremultipledAlpha() const {
227 return mPremultipliedAlpha;
228}
229
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700230sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800231 Mutex::Autolock _l(mLock);
Robert Carrc0df3122019-04-11 13:18:21 -0700232 if (mGetHandleCalled) {
233 ALOGE("Get handle called twice" );
234 return nullptr;
235 }
236 mGetHandleCalled = true;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700237 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800238}
239
240// ---------------------------------------------------------------------------
241// h/w composer set-up
242// ---------------------------------------------------------------------------
243
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800244Rect Layer::getContentCrop() const {
245 // this is the crop rectangle that applies to the buffer
246 // itself (as opposed to the window)
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700247 Rect crop;
248 if (!mCurrentCrop.isEmpty()) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800249 // if the buffer crop is defined, we use that
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700250 crop = mCurrentCrop;
Lloyd Pique0b785d82018-12-04 17:25:27 -0800251 } else if (mActiveBuffer != nullptr) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800252 // otherwise we use the whole buffer
Lloyd Pique0b785d82018-12-04 17:25:27 -0800253 crop = mActiveBuffer->getBounds();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700254 } else {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800255 // if we don't have a buffer yet, we use an empty/invalid crop
Mathias Agopian4fec8732012-06-29 14:12:52 -0700256 crop.makeInvalid();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700257 }
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700258 return crop;
259}
260
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700261static Rect reduce(const Rect& win, const Region& exclude) {
262 if (CC_LIKELY(exclude.isEmpty())) {
263 return win;
264 }
265 if (exclude.isRect()) {
266 return win.reduce(exclude.getBounds());
267 }
268 return Region(win).subtract(exclude).getBounds();
269}
270
Dan Stoza80d61162017-12-20 15:57:52 -0800271static FloatRect reduce(const FloatRect& win, const Region& exclude) {
272 if (CC_LIKELY(exclude.isEmpty())) {
273 return win;
274 }
275 // Convert through Rect (by rounding) for lack of FloatRegion
276 return Region(Rect{win}).subtract(exclude).getBounds().toFloatRect();
277}
278
Vishnu Nair4351ad52019-02-11 14:13:02 -0800279Rect Layer::getScreenBounds(bool reduceTransparentRegion) const {
Vishnu Nairf0c28512019-02-08 12:40:28 -0800280 if (!reduceTransparentRegion) {
281 return Rect{mScreenBounds};
282 }
283
284 FloatRect bounds = getBounds();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800285 ui::Transform t = getTransform();
Vishnu Nair60356342018-11-13 13:00:45 -0800286 // Transform to screen space.
287 bounds = t.transform(bounds);
288 return Rect{bounds};
Robert Carr1f0a16a2016-10-24 16:27:39 -0700289}
290
Vishnu Nair4351ad52019-02-11 14:13:02 -0800291FloatRect Layer::getBounds() const {
Alec Mourib416efd2018-09-06 21:01:59 +0000292 const State& s(getDrawingState());
Vishnu Nair4351ad52019-02-11 14:13:02 -0800293 return getBounds(getActiveTransparentRegion(s));
Michael Lentine6c925ed2014-09-26 17:55:01 -0700294}
295
Vishnu Nairf0c28512019-02-08 12:40:28 -0800296FloatRect Layer::getBounds(const Region& activeTransparentRegion) const {
297 // Subtract the transparent region and snap to the bounds.
298 return reduce(mBounds, activeTransparentRegion);
299}
300
Vishnu Nairc652ff82019-03-15 12:48:54 -0700301ui::Transform Layer::getBufferScaleTransform() const {
Vishnu Nair4351ad52019-02-11 14:13:02 -0800302 // If the layer is not using NATIVE_WINDOW_SCALING_MODE_FREEZE (e.g.
303 // it isFixedSize) then there may be additional scaling not accounted
Vishnu Nairc652ff82019-03-15 12:48:54 -0700304 // for in the layer transform.
Lloyd Pique0b785d82018-12-04 17:25:27 -0800305 if (!isFixedSize() || !mActiveBuffer) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700306 return {};
Vishnu Nair4351ad52019-02-11 14:13:02 -0800307 }
308
Marissa Wall290ad082019-03-06 13:23:47 -0800309 // If the layer is a buffer state layer, the active width and height
310 // could be infinite. In that case, return the effective transform.
311 const uint32_t activeWidth = getActiveWidth(getDrawingState());
312 const uint32_t activeHeight = getActiveHeight(getDrawingState());
313 if (activeWidth >= UINT32_MAX && activeHeight >= UINT32_MAX) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700314 return {};
Marissa Wall290ad082019-03-06 13:23:47 -0800315 }
316
Vishnu Nairc652ff82019-03-15 12:48:54 -0700317 int bufferWidth = mActiveBuffer->getWidth();
318 int bufferHeight = mActiveBuffer->getHeight();
319
320 if (mCurrentTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
321 std::swap(bufferWidth, bufferHeight);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800322 }
Vishnu Nairc652ff82019-03-15 12:48:54 -0700323
Marissa Wall290ad082019-03-06 13:23:47 -0800324 float sx = activeWidth / static_cast<float>(bufferWidth);
325 float sy = activeHeight / static_cast<float>(bufferHeight);
326
Vishnu Nair4351ad52019-02-11 14:13:02 -0800327 ui::Transform extraParentScaling;
328 extraParentScaling.set(sx, 0, 0, sy);
Vishnu Nairc652ff82019-03-15 12:48:54 -0700329 return extraParentScaling;
330}
331
332ui::Transform Layer::getTransformWithScale(const ui::Transform& bufferScaleTransform) const {
333 // We need to mirror this scaling to child surfaces or we will break the contract where WM can
334 // treat child surfaces as pixels in the parent surface.
335 if (!isFixedSize() || !mActiveBuffer) {
336 return mEffectiveTransform;
337 }
338 return mEffectiveTransform * bufferScaleTransform;
339}
340
341FloatRect Layer::getBoundsPreScaling(const ui::Transform& bufferScaleTransform) const {
342 // We need the pre scaled layer bounds when computing child bounds to make sure the child is
343 // cropped to its parent layer after any buffer transform scaling is applied.
344 if (!isFixedSize() || !mActiveBuffer) {
345 return mBounds;
346 }
347 return bufferScaleTransform.inverse().transform(mBounds);
Vishnu Nair4351ad52019-02-11 14:13:02 -0800348}
349
350void Layer::computeBounds(FloatRect parentBounds, ui::Transform parentTransform) {
351 const State& s(getDrawingState());
352
353 // Calculate effective layer transform
354 mEffectiveTransform = parentTransform * getActiveTransform(s);
355
356 // Transform parent bounds to layer space
357 parentBounds = getActiveTransform(s).inverse().transform(parentBounds);
358
Vishnu Nairc652ff82019-03-15 12:48:54 -0700359 // Calculate source bounds
Vishnu Nair4351ad52019-02-11 14:13:02 -0800360 mSourceBounds = computeSourceBounds(parentBounds);
361
362 // Calculate bounds by croping diplay frame with layer crop and parent bounds
363 FloatRect bounds = mSourceBounds;
364 const Rect layerCrop = getCrop(s);
365 if (!layerCrop.isEmpty()) {
366 bounds = mSourceBounds.intersect(layerCrop.toFloatRect());
367 }
368 bounds = bounds.intersect(parentBounds);
369
370 mBounds = bounds;
371 mScreenBounds = mEffectiveTransform.transform(mBounds);
Vishnu Nairc652ff82019-03-15 12:48:54 -0700372
373 // Add any buffer scaling to the layer's children.
374 ui::Transform bufferScaleTransform = getBufferScaleTransform();
Vishnu Nair4351ad52019-02-11 14:13:02 -0800375 for (const sp<Layer>& child : mDrawingChildren) {
Vishnu Nairc652ff82019-03-15 12:48:54 -0700376 child->computeBounds(getBoundsPreScaling(bufferScaleTransform),
377 getTransformWithScale(bufferScaleTransform));
Vishnu Nair4351ad52019-02-11 14:13:02 -0800378 }
379}
380
Vishnu Nair60356342018-11-13 13:00:45 -0800381Rect Layer::getCroppedBufferSize(const State& s) const {
382 Rect size = getBufferSize(s);
383 Rect crop = getCrop(s);
384 if (!crop.isEmpty() && size.isValid()) {
385 size.intersect(crop, &size);
386 } else if (!crop.isEmpty()) {
387 size = crop;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700388 }
Vishnu Nair60356342018-11-13 13:00:45 -0800389 return size;
Mathias Agopian13127d82013-03-05 17:47:11 -0800390}
391
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700392void Layer::setupRoundedCornersCropCoordinates(Rect win,
393 const FloatRect& roundedCornersCrop) const {
394 // Translate win by the rounded corners rect coordinates, to have all values in
395 // layer coordinate space.
396 win.left -= roundedCornersCrop.left;
397 win.right -= roundedCornersCrop.left;
398 win.top -= roundedCornersCrop.top;
399 win.bottom -= roundedCornersCrop.top;
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700400}
401
Lloyd Piquea83776c2019-01-29 18:42:32 -0800402void Layer::latchGeometry(compositionengine::LayerFECompositionState& compositionState) const {
403 const auto& drawingState{getDrawingState()};
404 auto alpha = static_cast<float>(getAlpha());
David Revemanecf0fa52017-03-03 11:32:44 -0500405 auto blendMode = HWC2::BlendMode::None;
Lloyd Piquea83776c2019-01-29 18:42:32 -0800406 if (!isOpaque(drawingState) || alpha != 1.0f) {
David Sodman41fdfc92017-11-06 16:09:56 -0800407 blendMode =
408 mPremultipliedAlpha ? HWC2::BlendMode::Premultiplied : HWC2::BlendMode::Coverage;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800409 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800410
Lloyd Piquea83776c2019-01-29 18:42:32 -0800411 int type = drawingState.metadata.getInt32(METADATA_WINDOW_TYPE, 0);
412 int appId = drawingState.metadata.getInt32(METADATA_OWNER_UID, 0);
Chia-I Wue41dbe62017-06-13 14:10:56 -0700413 sp<Layer> parent = mDrawingParent.promote();
Albert Chaulk2a589632017-05-04 16:59:44 -0400414 if (parent.get()) {
415 auto& parentState = parent->getDrawingState();
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800416 const int parentType = parentState.metadata.getInt32(METADATA_WINDOW_TYPE, 0);
417 const int parentAppId = parentState.metadata.getInt32(METADATA_OWNER_UID, 0);
Jiwen 'Steve' Cai736c74e2019-05-28 18:33:22 -0700418 if (parentType > 0 && parentAppId > 0) {
Evan Rosky1f6d6d52018-12-06 10:47:26 -0800419 type = parentType;
420 appId = parentAppId;
rongliucfb187b2018-03-14 12:26:23 -0700421 }
Albert Chaulk2a589632017-05-04 16:59:44 -0400422 }
423
Lloyd Piquea83776c2019-01-29 18:42:32 -0800424 compositionState.geomLayerTransform = getTransform();
425 compositionState.geomInverseLayerTransform = compositionState.geomLayerTransform.inverse();
426 compositionState.geomBufferSize = getBufferSize(drawingState);
427 compositionState.geomContentCrop = getContentCrop();
428 compositionState.geomCrop = getCrop(drawingState);
429 compositionState.geomBufferTransform = mCurrentTransform;
430 compositionState.geomBufferUsesDisplayInverseTransform = getTransformToDisplayInverse();
431 compositionState.geomActiveTransparentRegion = getActiveTransparentRegion(drawingState);
432 compositionState.geomLayerBounds = mBounds;
433 compositionState.geomUsesSourceCrop = usesSourceCrop();
434 compositionState.isSecure = isSecure();
David Sodman15094112018-10-11 09:39:37 -0700435
Lloyd Piquea83776c2019-01-29 18:42:32 -0800436 compositionState.blendMode = static_cast<Hwc2::IComposerClient::BlendMode>(blendMode);
437 compositionState.alpha = alpha;
438 compositionState.type = type;
439 compositionState.appId = appId;
440}
David Sodmanba340492018-08-05 21:51:33 -0700441
Lloyd Piquef5275482019-01-29 18:42:42 -0800442void Layer::latchPerFrameState(compositionengine::LayerFECompositionState& compositionState) const {
443 compositionState.forceClientComposition = false;
444
445 // TODO(lpique): b/121291683 Remove this one we are sure we don't need the
446 // value recomputed / set every frame.
447 compositionState.geomVisibleRegion = visibleRegion;
448
449 compositionState.isColorspaceAgnostic = isColorSpaceAgnostic();
450 compositionState.dataspace = mCurrentDataSpace;
451 compositionState.colorTransform = getColorTransform();
452 compositionState.colorTransformIsIdentity = !hasColorTransform();
453 compositionState.surfaceDamage = surfaceDamageRegion;
454
455 // Force client composition for special cases known only to the front-end.
456 if (isHdrY410() || getRoundedCornerState().radius > 0.0f) {
457 compositionState.forceClientComposition = true;
458 }
459}
460
Lloyd Piquef16688f2019-02-19 17:47:57 -0800461bool Layer::onPreComposition(nsecs_t) {
462 return false;
463}
464
Lloyd Piquea83776c2019-01-29 18:42:32 -0800465void Layer::latchCompositionState(compositionengine::LayerFECompositionState& compositionState,
466 bool includeGeometry) const {
467 if (includeGeometry) {
468 latchGeometry(compositionState);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700469 }
Lloyd Piquef5275482019-01-29 18:42:42 -0800470
471 latchPerFrameState(compositionState);
Lloyd Piquea83776c2019-01-29 18:42:32 -0800472}
Mathias Agopian29a367b2011-07-12 14:51:45 -0700473
Lloyd Piquea83776c2019-01-29 18:42:32 -0800474const char* Layer::getDebugName() const {
475 return mName.string();
David Sodman4b7c4bc2017-11-17 12:13:59 -0800476}
477
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700478void Layer::updateCursorPosition(const sp<const DisplayDevice>& display) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800479 const auto outputLayer = findOutputLayerForDisplay(display);
480 LOG_FATAL_IF(!outputLayer);
481
482 if (!outputLayer->getState().hwc ||
483 (*outputLayer->getState().hwc).hwcCompositionType !=
484 Hwc2::IComposerClient::Composition::CURSOR) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800485 return;
486 }
487
488 // This gives us only the "orientation" component of the transform
Vishnu Nair33a6eee2019-02-06 13:48:06 -0800489 const State& s(getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800490
491 // Apply the layer's transform, followed by the display's global transform
492 // Here we're guaranteed that the layer's transform preserves rects
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800493 Rect win = getCroppedBufferSize(s);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800494 // Subtract the transparent region and snap to the bounds
Marissa Wall61c58622018-07-18 10:12:20 -0700495 Rect bounds = reduce(win, getActiveTransparentRegion(s));
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800496 Rect frame(getTransform().transform(bounds));
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700497 frame.intersect(display->getViewport(), &frame);
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700498 auto& displayTransform = display->getTransform();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800499 auto position = displayTransform.transform(frame);
500
Dominik Laskowski7e045462018-05-30 13:02:02 -0700501 auto error =
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800502 (*outputLayer->getState().hwc).hwcLayer->setCursorPosition(position.left, position.top);
David Sodman41fdfc92017-11-06 16:09:56 -0800503 ALOGE_IF(error != HWC2::Error::None,
504 "[%s] Failed to set cursor position "
505 "to (%d, %d): %s (%d)",
506 mName.string(), position.left, position.top, to_string(error).c_str(),
507 static_cast<int32_t>(error));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800508}
Riley Andrews03414a12014-07-01 14:22:59 -0700509
Mathias Agopian13127d82013-03-05 17:47:11 -0800510// ---------------------------------------------------------------------------
511// drawing...
512// ---------------------------------------------------------------------------
513
Lloyd Piquef16688f2019-02-19 17:47:57 -0800514std::optional<renderengine::LayerSettings> Layer::prepareClientComposition(
515 compositionengine::LayerFE::ClientCompositionTargetSettings& targetSettings) {
516 if (!getCompositionLayer()) {
517 return {};
518 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800519
Vishnu Nair4351ad52019-02-11 14:13:02 -0800520 FloatRect bounds = getBounds();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000521 half alpha = getAlpha();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800522 renderengine::LayerSettings layerSettings;
523 layerSettings.geometry.boundaries = bounds;
524 if (targetSettings.useIdentityTransform) {
525 layerSettings.geometry.positionTransform = mat4();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000526 } else {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800527 layerSettings.geometry.positionTransform = getTransform().asMatrix4();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000528 }
529
530 if (hasColorTransform()) {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800531 layerSettings.colorTransform = getColorTransform();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000532 }
533
534 const auto roundedCornerState = getRoundedCornerState();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800535 layerSettings.geometry.roundedCornersRadius = roundedCornerState.radius;
536 layerSettings.geometry.roundedCornersCrop = roundedCornerState.cropRect;
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000537
Lloyd Piquef16688f2019-02-19 17:47:57 -0800538 layerSettings.alpha = alpha;
539 layerSettings.sourceDataspace = mCurrentDataSpace;
540 return layerSettings;
Mathias Agopian13127d82013-03-05 17:47:11 -0800541}
542
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800543Hwc2::IComposerClient::Composition Layer::getCompositionType(
544 const sp<const DisplayDevice>& display) const {
545 const auto outputLayer = findOutputLayerForDisplay(display);
546 LOG_FATAL_IF(!outputLayer);
547 return outputLayer->getState().hwc ? (*outputLayer->getState().hwc).hwcCompositionType
548 : Hwc2::IComposerClient::Composition::CLIENT;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800549}
550
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800551bool Layer::getClearClientTarget(const sp<const DisplayDevice>& display) const {
552 const auto outputLayer = findOutputLayerForDisplay(display);
553 LOG_FATAL_IF(!outputLayer);
554 return outputLayer->getState().clearClientTarget;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800555}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800556
Dan Stozacac35382016-01-27 12:21:06 -0800557bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
558 if (point->getFrameNumber() <= mCurrentFrameNumber) {
559 // Don't bother with a SyncPoint, since we've already latched the
560 // relevant frame
561 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700562 }
Robert Carr2e102c92018-10-23 12:11:15 -0700563 if (isRemovedFromCurrentState()) {
564 return false;
565 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700566
Dan Stozacac35382016-01-27 12:21:06 -0800567 Mutex::Autolock lock(mLocalSyncPointMutex);
568 mLocalSyncPoints.push_back(point);
569 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -0700570}
571
Mathias Agopian13127d82013-03-05 17:47:11 -0800572// ----------------------------------------------------------------------------
573// local state
574// ----------------------------------------------------------------------------
575
David Sodman41fdfc92017-11-06 16:09:56 -0800576bool Layer::isSecure() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800577 const State& s(mDrawingState);
Dan Stoza23116082015-06-18 14:58:39 -0700578 return (s.flags & layer_state_t::eLayerSecure);
579}
580
Mathias Agopian13127d82013-03-05 17:47:11 -0800581void Layer::setVisibleRegion(const Region& visibleRegion) {
582 // always called from main thread
583 this->visibleRegion = visibleRegion;
584}
585
586void Layer::setCoveredRegion(const Region& coveredRegion) {
587 // always called from main thread
588 this->coveredRegion = coveredRegion;
589}
590
David Sodman41fdfc92017-11-06 16:09:56 -0800591void Layer::setVisibleNonTransparentRegion(const Region& setVisibleNonTransparentRegion) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800592 // always called from main thread
593 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
594}
595
Robert Carre5f4f692018-01-12 13:12:28 -0800596void Layer::clearVisibilityRegions() {
597 visibleRegion.clear();
598 visibleNonTransparentRegion.clear();
599 coveredRegion.clear();
600}
601
Mathias Agopian13127d82013-03-05 17:47:11 -0800602// ----------------------------------------------------------------------------
603// transaction
604// ----------------------------------------------------------------------------
Ady Abraham83729882018-12-07 12:26:48 -0800605
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800606void Layer::pushPendingState() {
607 if (!mCurrentState.modified) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700608 return;
609 }
Alec Mourie60041e2019-06-14 18:59:51 -0700610 ATRACE_CALL();
Dan Stoza7dde5992015-05-22 09:51:44 -0700611
Dan Stoza7dde5992015-05-22 09:51:44 -0700612 // If this transaction is waiting on the receipt of a frame, generate a sync
613 // point and send it to the remote layer.
Robert Carr2e102c92018-10-23 12:11:15 -0700614 // We don't allow installing sync points after we are removed from the current state
615 // as we won't be able to signal our end.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800616 if (mCurrentState.barrierLayer_legacy != nullptr && !isRemovedFromCurrentState()) {
617 sp<Layer> barrierLayer = mCurrentState.barrierLayer_legacy.promote();
Robert Carr0d480722017-01-10 16:42:54 -0800618 if (barrierLayer == nullptr) {
619 ALOGE("[%s] Unable to promote barrier Layer.", mName.string());
Dan Stoza7dde5992015-05-22 09:51:44 -0700620 // If we can't promote the layer we are intended to wait on,
621 // then it is expired or otherwise invalid. Allow this transaction
622 // to be applied as per normal (no synchronization).
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800623 mCurrentState.barrierLayer_legacy = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -0800624 } else {
chaviw43cb3cb2019-05-31 15:23:41 -0700625 auto syncPoint = std::make_shared<SyncPoint>(mCurrentState.frameNumber_legacy, this);
Robert Carr0d480722017-01-10 16:42:54 -0800626 if (barrierLayer->addSyncPoint(syncPoint)) {
Alec Mourie60041e2019-06-14 18:59:51 -0700627 std::stringstream ss;
628 ss << "Adding sync point " << mCurrentState.frameNumber_legacy;
629 ATRACE_NAME(ss.str().c_str());
Dan Stozacac35382016-01-27 12:21:06 -0800630 mRemoteSyncPoints.push_back(std::move(syncPoint));
631 } else {
632 // We already missed the frame we're supposed to synchronize
633 // on, so go ahead and apply the state update
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800634 mCurrentState.barrierLayer_legacy = nullptr;
Dan Stozacac35382016-01-27 12:21:06 -0800635 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700636 }
637
Dan Stoza7dde5992015-05-22 09:51:44 -0700638 // Wake us up to check if the frame has been received
639 setTransactionFlags(eTransactionNeeded);
Dan Stozaf5702ff2016-11-02 16:27:47 -0700640 mFlinger->setTransactionFlags(eTraversalNeeded);
Dan Stoza7dde5992015-05-22 09:51:44 -0700641 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800642 mPendingStates.push_back(mCurrentState);
643 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700644}
645
Pablo Ceballos05289c22016-04-14 15:49:55 -0700646void Layer::popPendingState(State* stateToCommit) {
Alec Mourie60041e2019-06-14 18:59:51 -0700647 ATRACE_CALL();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800648 *stateToCommit = mPendingStates[0];
Dan Stoza7dde5992015-05-22 09:51:44 -0700649
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800650 mPendingStates.removeAt(0);
651 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700652}
653
Pablo Ceballos05289c22016-04-14 15:49:55 -0700654bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700655 bool stateUpdateAvailable = false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800656 while (!mPendingStates.empty()) {
657 if (mPendingStates[0].barrierLayer_legacy != nullptr) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700658 if (mRemoteSyncPoints.empty()) {
659 // If we don't have a sync point for this, apply it anyway. It
660 // will be visually wrong, but it should keep us from getting
661 // into too much trouble.
662 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -0700663 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700664 stateUpdateAvailable = true;
665 continue;
666 }
667
Marissa Wallf58c14b2018-07-24 10:50:43 -0700668 if (mRemoteSyncPoints.front()->getFrameNumber() !=
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800669 mPendingStates[0].frameNumber_legacy) {
David Sodman41fdfc92017-11-06 16:09:56 -0800670 ALOGE("[%s] Unexpected sync point frame number found", mName.string());
Dan Stozacac35382016-01-27 12:21:06 -0800671
672 // Signal our end of the sync point and then dispose of it
673 mRemoteSyncPoints.front()->setTransactionApplied();
674 mRemoteSyncPoints.pop_front();
675 continue;
676 }
677
Dan Stoza7dde5992015-05-22 09:51:44 -0700678 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
Alec Mourie60041e2019-06-14 18:59:51 -0700679 ATRACE_NAME("frameIsAvailable");
Dan Stoza7dde5992015-05-22 09:51:44 -0700680 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -0700681 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700682 stateUpdateAvailable = true;
683
684 // Signal our end of the sync point and then dispose of it
685 mRemoteSyncPoints.front()->setTransactionApplied();
686 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -0800687 } else {
Alec Mourie60041e2019-06-14 18:59:51 -0700688 ATRACE_NAME("!frameIsAvailable");
Dan Stoza792e5292016-02-11 11:43:58 -0800689 break;
Dan Stoza7dde5992015-05-22 09:51:44 -0700690 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700691 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -0700692 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700693 stateUpdateAvailable = true;
694 }
695 }
696
697 // If we still have pending updates, wake SurfaceFlinger back up and point
698 // it at this layer so we can process them
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800699 if (!mPendingStates.empty()) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700700 setTransactionFlags(eTransactionNeeded);
701 mFlinger->setTransactionFlags(eTraversalNeeded);
702 }
703
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800704 mCurrentState.modified = false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700705 return stateUpdateAvailable;
706}
707
Marissa Wall61c58622018-07-18 10:12:20 -0700708uint32_t Layer::doTransactionResize(uint32_t flags, State* stateToCommit) {
Alec Mourib416efd2018-09-06 21:01:59 +0000709 const State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800710
Marissa Wall61c58622018-07-18 10:12:20 -0700711 const bool sizeChanged = (stateToCommit->requested_legacy.w != s.requested_legacy.w) ||
712 (stateToCommit->requested_legacy.h != s.requested_legacy.h);
Mathias Agopiana138f892010-05-21 17:24:35 -0700713
David Sodmaneb085e02017-10-05 18:49:04 -0700714 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700715 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +0000716 ALOGD_IF(DEBUG_RESIZE,
David Sodman41fdfc92017-11-06 16:09:56 -0800717 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
718 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
719 " requested={ wh={%4u,%4u} }}\n"
720 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
721 " requested={ wh={%4u,%4u} }}\n",
Marissa Wallf58c14b2018-07-24 10:50:43 -0700722 this, getName().string(), mCurrentTransform, getEffectiveScalingMode(),
Marissa Wall61c58622018-07-18 10:12:20 -0700723 stateToCommit->active_legacy.w, stateToCommit->active_legacy.h,
724 stateToCommit->crop_legacy.left, stateToCommit->crop_legacy.top,
725 stateToCommit->crop_legacy.right, stateToCommit->crop_legacy.bottom,
726 stateToCommit->crop_legacy.getWidth(), stateToCommit->crop_legacy.getHeight(),
727 stateToCommit->requested_legacy.w, stateToCommit->requested_legacy.h,
Marissa Wallf58c14b2018-07-24 10:50:43 -0700728 s.active_legacy.w, s.active_legacy.h, s.crop_legacy.left, s.crop_legacy.top,
729 s.crop_legacy.right, s.crop_legacy.bottom, s.crop_legacy.getWidth(),
730 s.crop_legacy.getHeight(), s.requested_legacy.w, s.requested_legacy.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800731 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700732
Robert Carre392b552017-09-19 12:16:05 -0700733 // Don't let Layer::doTransaction update the drawing state
734 // if we have a pending resize, unless we are in fixed-size mode.
735 // the drawing state will be updated only once we receive a buffer
736 // with the correct size.
737 //
738 // In particular, we want to make sure the clip (which is part
739 // of the geometry state) is latched together with the size but is
740 // latched immediately when no resizing is involved.
741 //
742 // If a sideband stream is attached, however, we want to skip this
743 // optimization so that transactions aren't missed when a buffer
744 // never arrives
745 //
746 // In the case that we don't have a buffer we ignore other factors
747 // and avoid entering the resizePending state. At a high level the
748 // resizePending state is to avoid applying the state of the new buffer
749 // to the old buffer. However in the state where we don't have an old buffer
750 // there is no such concern but we may still be being used as a parent layer.
Marissa Wall61c58622018-07-18 10:12:20 -0700751 const bool resizePending =
752 ((stateToCommit->requested_legacy.w != stateToCommit->active_legacy.w) ||
753 (stateToCommit->requested_legacy.h != stateToCommit->active_legacy.h)) &&
Lloyd Pique0b785d82018-12-04 17:25:27 -0800754 (mActiveBuffer != nullptr);
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700755 if (!isFixedSize()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -0800756 if (resizePending && mSidebandStream == nullptr) {
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700757 flags |= eDontUpdateGeometryState;
758 }
759 }
760
Robert Carr7bf247e2017-05-18 14:02:49 -0700761 // Here we apply various requested geometry states, depending on our
762 // latching configuration. See Layer.h for a detailed discussion of
763 // how geometry latching is controlled.
764 if (!(flags & eDontUpdateGeometryState)) {
Alec Mourib416efd2018-09-06 21:01:59 +0000765 State& editCurrentState(getCurrentState());
Robert Carr7bf247e2017-05-18 14:02:49 -0700766
767 // If mFreezeGeometryUpdates is true we are in the setGeometryAppliesWithResize
768 // mode, which causes attributes which normally latch regardless of scaling mode,
769 // to be delayed. We copy the requested state to the active state making sure
770 // to respect these rules (again see Layer.h for a detailed discussion).
771 //
772 // There is an awkward asymmetry in the handling of the crop states in the position
773 // states, as can be seen below. Largely this arises from position and transform
774 // being stored in the same data structure while having different latching rules.
775 // b/38182305
776 //
Marissa Wall61c58622018-07-18 10:12:20 -0700777 // Careful that "stateToCommit" and editCurrentState may not begin as equivalent due to
Robert Carr7bf247e2017-05-18 14:02:49 -0700778 // applyPendingStates in the presence of deferred transactions.
779 if (mFreezeGeometryUpdates) {
Marissa Wall61c58622018-07-18 10:12:20 -0700780 float tx = stateToCommit->active_legacy.transform.tx();
781 float ty = stateToCommit->active_legacy.transform.ty();
782 stateToCommit->active_legacy = stateToCommit->requested_legacy;
783 stateToCommit->active_legacy.transform.set(tx, ty);
784 editCurrentState.active_legacy = stateToCommit->active_legacy;
Robert Carr82364e32016-05-15 11:27:47 -0700785 } else {
Marissa Wallf58c14b2018-07-24 10:50:43 -0700786 editCurrentState.active_legacy = editCurrentState.requested_legacy;
Marissa Wall61c58622018-07-18 10:12:20 -0700787 stateToCommit->active_legacy = stateToCommit->requested_legacy;
Robert Carr82364e32016-05-15 11:27:47 -0700788 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800789 }
790
Marissa Wall61c58622018-07-18 10:12:20 -0700791 return flags;
792}
793
794uint32_t Layer::doTransaction(uint32_t flags) {
795 ATRACE_CALL();
796
chaviw5aedec92018-10-22 10:40:38 -0700797 if (mLayerDetached) {
Robert Carr7f2ed8b2019-02-07 14:45:11 -0800798 return flags;
799 }
800
801 if (mChildrenChanged) {
802 flags |= eVisibleRegion;
803 mChildrenChanged = false;
chaviw5aedec92018-10-22 10:40:38 -0700804 }
805
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800806 pushPendingState();
Alec Mourib416efd2018-09-06 21:01:59 +0000807 State c = getCurrentState();
Marissa Wall61c58622018-07-18 10:12:20 -0700808 if (!applyPendingStates(&c)) {
Robert Carr7f2ed8b2019-02-07 14:45:11 -0800809 return flags;
Marissa Wall61c58622018-07-18 10:12:20 -0700810 }
811
812 flags = doTransactionResize(flags, &c);
813
Alec Mourib416efd2018-09-06 21:01:59 +0000814 const State& s(getDrawingState());
Marissa Wall61c58622018-07-18 10:12:20 -0700815
816 if (getActiveGeometry(c) != getActiveGeometry(s)) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800817 // invalidate and recompute the visible regions if needed
818 flags |= Layer::eVisibleRegion;
819 }
820
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700821 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800822 // invalidate and recompute the visible regions if needed
823 flags |= eVisibleRegion;
824 this->contentDirty = true;
825
826 // we may use linear filtering, if the matrix scales us
Marissa Wall61c58622018-07-18 10:12:20 -0700827 const uint8_t type = getActiveTransform(c).getType();
Peiyong Linefefaac2018-08-17 12:27:51 -0700828 mNeedsFiltering = (!getActiveTransform(c).preserveRects() || type >= ui::Transform::SCALE);
Mathias Agopian13127d82013-03-05 17:47:11 -0800829 }
830
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800831 if (mCurrentState.inputInfoChanged) {
Robert Carr720e5062018-07-30 17:45:14 -0700832 flags |= eInputInfoChanged;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800833 mCurrentState.inputInfoChanged = false;
Robert Carr720e5062018-07-30 17:45:14 -0700834 }
835
Mathias Agopian13127d82013-03-05 17:47:11 -0800836 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -0700837 commitTransaction(c);
Vishnu Nair8406fd72019-07-30 11:29:31 -0700838 mPendingStatesSnapshot = mPendingStates;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800839 mCurrentState.callbackHandles = {};
Mathias Agopian13127d82013-03-05 17:47:11 -0800840 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800841}
842
Pablo Ceballos05289c22016-04-14 15:49:55 -0700843void Layer::commitTransaction(const State& stateToCommit) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800844 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700845}
846
Mathias Agopian13127d82013-03-05 17:47:11 -0800847uint32_t Layer::getTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800848 return mTransactionFlags.fetch_and(~flags) & flags;
Mathias Agopian13127d82013-03-05 17:47:11 -0800849}
850
851uint32_t Layer::setTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800852 return mTransactionFlags.fetch_or(flags);
Mathias Agopian13127d82013-03-05 17:47:11 -0800853}
854
Robert Carr82364e32016-05-15 11:27:47 -0700855bool Layer::setPosition(float x, float y, bool immediate) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800856 if (mCurrentState.requested_legacy.transform.tx() == x &&
857 mCurrentState.requested_legacy.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -0800858 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800859 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -0700860
861 // We update the requested and active position simultaneously because
862 // we want to apply the position portion of the transform matrix immediately,
863 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800864 mCurrentState.requested_legacy.transform.set(x, y);
Robert Carr7bf247e2017-05-18 14:02:49 -0700865 if (immediate && !mFreezeGeometryUpdates) {
866 // Here we directly update the active state
867 // unlike other setters, because we store it within
868 // the transform, but use different latching rules.
869 // b/38182305
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800870 mCurrentState.active_legacy.transform.set(x, y);
Robert Carr82364e32016-05-15 11:27:47 -0700871 }
Robert Carr7bf247e2017-05-18 14:02:49 -0700872 mFreezeGeometryUpdates = mFreezeGeometryUpdates || !immediate;
Robert Carr69663fb2016-03-27 19:59:19 -0700873
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800874 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800875 setTransactionFlags(eTransactionNeeded);
876 return true;
877}
Robert Carr82364e32016-05-15 11:27:47 -0700878
Robert Carr1f0a16a2016-10-24 16:27:39 -0700879bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
880 ssize_t idx = mCurrentChildren.indexOf(childLayer);
881 if (idx < 0) {
882 return false;
883 }
884 if (childLayer->setLayer(z)) {
885 mCurrentChildren.removeAt(idx);
886 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800887 return true;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700888 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800889 return false;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700890}
891
Robert Carr503c7042017-09-27 15:06:08 -0700892bool Layer::setChildRelativeLayer(const sp<Layer>& childLayer,
893 const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
894 ssize_t idx = mCurrentChildren.indexOf(childLayer);
895 if (idx < 0) {
896 return false;
897 }
898 if (childLayer->setRelativeLayer(relativeToHandle, relativeZ)) {
899 mCurrentChildren.removeAt(idx);
900 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800901 return true;
Robert Carr503c7042017-09-27 15:06:08 -0700902 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800903 return false;
Robert Carr503c7042017-09-27 15:06:08 -0700904}
905
Robert Carrae060832016-11-28 10:51:00 -0800906bool Layer::setLayer(int32_t z) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800907 if (mCurrentState.z == z && !usingRelativeZ(LayerVector::StateSet::Current)) return false;
908 mCurrentState.sequence++;
909 mCurrentState.z = z;
910 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700911
912 // Discard all relative layering.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800913 if (mCurrentState.zOrderRelativeOf != nullptr) {
914 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
Robert Carrdb66e622017-04-10 16:55:57 -0700915 if (strongRelative != nullptr) {
916 strongRelative->removeZOrderRelative(this);
917 }
chaviw606e5cf2019-03-01 10:12:10 -0800918 setZOrderRelativeOf(nullptr);
Robert Carrdb66e622017-04-10 16:55:57 -0700919 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800920 setTransactionFlags(eTransactionNeeded);
921 return true;
922}
Robert Carr1f0a16a2016-10-24 16:27:39 -0700923
Robert Carrdb66e622017-04-10 16:55:57 -0700924void Layer::removeZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800925 mCurrentState.zOrderRelatives.remove(relative);
926 mCurrentState.sequence++;
927 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700928 setTransactionFlags(eTransactionNeeded);
929}
930
931void Layer::addZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800932 mCurrentState.zOrderRelatives.add(relative);
933 mCurrentState.modified = true;
934 mCurrentState.sequence++;
Robert Carrdb66e622017-04-10 16:55:57 -0700935 setTransactionFlags(eTransactionNeeded);
936}
937
chaviw606e5cf2019-03-01 10:12:10 -0800938void Layer::setZOrderRelativeOf(const wp<Layer>& relativeOf) {
939 mCurrentState.zOrderRelativeOf = relativeOf;
940 mCurrentState.sequence++;
941 mCurrentState.modified = true;
942 setTransactionFlags(eTransactionNeeded);
943}
944
Robert Carr503d2bd2017-12-04 15:49:47 -0800945bool Layer::setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
Robert Carrdb66e622017-04-10 16:55:57 -0700946 sp<Handle> handle = static_cast<Handle*>(relativeToHandle.get());
947 if (handle == nullptr) {
948 return false;
949 }
950 sp<Layer> relative = handle->owner.promote();
951 if (relative == nullptr) {
952 return false;
953 }
954
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800955 if (mCurrentState.z == relativeZ && usingRelativeZ(LayerVector::StateSet::Current) &&
956 mCurrentState.zOrderRelativeOf == relative) {
Robert Carr503d2bd2017-12-04 15:49:47 -0800957 return false;
958 }
959
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800960 mCurrentState.sequence++;
961 mCurrentState.modified = true;
962 mCurrentState.z = relativeZ;
Robert Carrdb66e622017-04-10 16:55:57 -0700963
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800964 auto oldZOrderRelativeOf = mCurrentState.zOrderRelativeOf.promote();
chaviw9ab4bd12017-11-03 13:11:00 -0700965 if (oldZOrderRelativeOf != nullptr) {
966 oldZOrderRelativeOf->removeZOrderRelative(this);
967 }
chaviw606e5cf2019-03-01 10:12:10 -0800968 setZOrderRelativeOf(relative);
Robert Carrdb66e622017-04-10 16:55:57 -0700969 relative->addZOrderRelative(this);
970
971 setTransactionFlags(eTransactionNeeded);
972
973 return true;
974}
975
Mathias Agopian13127d82013-03-05 17:47:11 -0800976bool Layer::setSize(uint32_t w, uint32_t h) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800977 if (mCurrentState.requested_legacy.w == w && mCurrentState.requested_legacy.h == h)
Marissa Wallf58c14b2018-07-24 10:50:43 -0700978 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800979 mCurrentState.requested_legacy.w = w;
980 mCurrentState.requested_legacy.h = h;
981 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800982 setTransactionFlags(eTransactionNeeded);
Vishnu Naird01c4432018-08-13 10:38:47 -0700983
984 // record the new size, from this point on, when the client request
985 // a buffer, it'll get the new size.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800986 setDefaultBufferSize(mCurrentState.requested_legacy.w, mCurrentState.requested_legacy.h);
Mathias Agopian13127d82013-03-05 17:47:11 -0800987 return true;
988}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800989bool Layer::setAlpha(float alpha) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800990 if (mCurrentState.color.a == alpha) return false;
991 mCurrentState.sequence++;
992 mCurrentState.color.a = alpha;
993 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800994 setTransactionFlags(eTransactionNeeded);
995 return true;
996}
chaviw13fdc492017-06-27 12:40:18 -0700997
Valerie Haudd0b7572019-01-29 14:59:27 -0800998bool Layer::setBackgroundColor(const half3& color, float alpha, ui::Dataspace dataspace) {
999 if (!mCurrentState.bgColorLayer && alpha == 0) {
chaviw13fdc492017-06-27 12:40:18 -07001000 return false;
Valerie Hauaa194562019-02-05 16:21:38 -08001001 }
1002 mCurrentState.sequence++;
1003 mCurrentState.modified = true;
1004 setTransactionFlags(eTransactionNeeded);
1005
1006 if (!mCurrentState.bgColorLayer && alpha != 0) {
Valerie Haudd0b7572019-01-29 14:59:27 -08001007 // create background color layer if one does not yet exist
1008 uint32_t flags = ISurfaceComposerClient::eFXSurfaceColor;
1009 const String8& name = mName + "BackgroundColorLayer";
Evan Roskya1f1e152019-01-24 16:17:46 -08001010 mCurrentState.bgColorLayer = new ColorLayer(
1011 LayerCreationArgs(mFlinger.get(), nullptr, name, 0, 0, flags, LayerMetadata()));
chaviw13fdc492017-06-27 12:40:18 -07001012
Valerie Haudd0b7572019-01-29 14:59:27 -08001013 // add to child list
1014 addChild(mCurrentState.bgColorLayer);
1015 mFlinger->mLayersAdded = true;
1016 // set up SF to handle added color layer
1017 if (isRemovedFromCurrentState()) {
1018 mCurrentState.bgColorLayer->onRemovedFromCurrentState();
1019 }
1020 mFlinger->setTransactionFlags(eTransactionNeeded);
1021 } else if (mCurrentState.bgColorLayer && alpha == 0) {
1022 mCurrentState.bgColorLayer->reparent(nullptr);
1023 mCurrentState.bgColorLayer = nullptr;
1024 return true;
1025 }
1026
1027 mCurrentState.bgColorLayer->setColor(color);
1028 mCurrentState.bgColorLayer->setLayer(std::numeric_limits<int32_t>::min());
1029 mCurrentState.bgColorLayer->setAlpha(alpha);
1030 mCurrentState.bgColorLayer->setDataspace(dataspace);
1031
chaviw13fdc492017-06-27 12:40:18 -07001032 return true;
1033}
1034
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001035bool Layer::setCornerRadius(float cornerRadius) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001036 if (mCurrentState.cornerRadius == cornerRadius) return false;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001037
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001038 mCurrentState.sequence++;
1039 mCurrentState.cornerRadius = cornerRadius;
1040 mCurrentState.modified = true;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001041 setTransactionFlags(eTransactionNeeded);
1042 return true;
1043}
1044
Robert Carrd4ae7f32018-06-07 16:10:57 -07001045bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix,
1046 bool allowNonRectPreservingTransforms) {
Peiyong Linefefaac2018-08-17 12:27:51 -07001047 ui::Transform t;
Robert Carrd4ae7f32018-06-07 16:10:57 -07001048 t.set(matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
1049
1050 if (!allowNonRectPreservingTransforms && !t.preserveRects()) {
1051 ALOGW("Attempt to set rotation matrix without permission ACCESS_SURFACE_FLINGER ignored");
1052 return false;
1053 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001054 mCurrentState.sequence++;
1055 mCurrentState.requested_legacy.transform.set(matrix.dsdx, matrix.dtdy, matrix.dtdx,
1056 matrix.dsdy);
1057 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001058 setTransactionFlags(eTransactionNeeded);
1059 return true;
1060}
Marissa Wall61c58622018-07-18 10:12:20 -07001061
Mathias Agopian13127d82013-03-05 17:47:11 -08001062bool Layer::setTransparentRegionHint(const Region& transparent) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001063 mCurrentState.requestedTransparentRegion_legacy = transparent;
1064 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001065 setTransactionFlags(eTransactionNeeded);
1066 return true;
1067}
1068bool Layer::setFlags(uint8_t flags, uint8_t mask) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001069 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1070 if (mCurrentState.flags == newFlags) return false;
1071 mCurrentState.sequence++;
1072 mCurrentState.flags = newFlags;
1073 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001074 setTransactionFlags(eTransactionNeeded);
1075 return true;
1076}
Robert Carr99e27f02016-06-16 15:18:02 -07001077
Marissa Wallf58c14b2018-07-24 10:50:43 -07001078bool Layer::setCrop_legacy(const Rect& crop, bool immediate) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001079 if (mCurrentState.requestedCrop_legacy == crop) return false;
1080 mCurrentState.sequence++;
1081 mCurrentState.requestedCrop_legacy = crop;
Robert Carr7bf247e2017-05-18 14:02:49 -07001082 if (immediate && !mFreezeGeometryUpdates) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001083 mCurrentState.crop_legacy = crop;
Robert Carr99e27f02016-06-16 15:18:02 -07001084 }
Robert Carr7bf247e2017-05-18 14:02:49 -07001085 mFreezeGeometryUpdates = mFreezeGeometryUpdates || !immediate;
1086
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001087 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001088 setTransactionFlags(eTransactionNeeded);
1089 return true;
1090}
Robert Carr8d5227b2017-03-16 15:41:03 -07001091
Robert Carrc3574f72016-03-24 12:19:32 -07001092bool Layer::setOverrideScalingMode(int32_t scalingMode) {
David Sodman41fdfc92017-11-06 16:09:56 -08001093 if (scalingMode == mOverrideScalingMode) return false;
Robert Carrc3574f72016-03-24 12:19:32 -07001094 mOverrideScalingMode = scalingMode;
Robert Carr82364e32016-05-15 11:27:47 -07001095 setTransactionFlags(eTransactionNeeded);
Robert Carrc3574f72016-03-24 12:19:32 -07001096 return true;
1097}
1098
Evan Roskyef876c92019-01-25 17:46:06 -08001099bool Layer::setMetadata(const LayerMetadata& data) {
1100 if (!mCurrentState.metadata.merge(data, true /* eraseEmpty */)) return false;
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001101 mCurrentState.sequence++;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001102 mCurrentState.modified = true;
David Sodman41fdfc92017-11-06 16:09:56 -08001103 setTransactionFlags(eTransactionNeeded);
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001104 return true;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001105}
1106
Mathias Agopian13127d82013-03-05 17:47:11 -08001107bool Layer::setLayerStack(uint32_t layerStack) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001108 if (mCurrentState.layerStack == layerStack) return false;
1109 mCurrentState.sequence++;
1110 mCurrentState.layerStack = layerStack;
1111 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001112 setTransactionFlags(eTransactionNeeded);
1113 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001114}
1115
Peiyong Linc502cb72019-03-01 15:00:23 -08001116bool Layer::setColorSpaceAgnostic(const bool agnostic) {
1117 if (mCurrentState.colorSpaceAgnostic == agnostic) {
1118 return false;
1119 }
1120 mCurrentState.sequence++;
1121 mCurrentState.colorSpaceAgnostic = agnostic;
1122 mCurrentState.modified = true;
1123 setTransactionFlags(eTransactionNeeded);
1124 return true;
1125}
1126
Robert Carr1f0a16a2016-10-24 16:27:39 -07001127uint32_t Layer::getLayerStack() const {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001128 auto p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001129 if (p == nullptr) {
1130 return getDrawingState().layerStack;
1131 }
1132 return p->getLayerStack();
1133}
1134
Marissa Wallf58c14b2018-07-24 10:50:43 -07001135void Layer::deferTransactionUntil_legacy(const sp<Layer>& barrierLayer, uint64_t frameNumber) {
Alec Mourie60041e2019-06-14 18:59:51 -07001136 ATRACE_CALL();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001137 mCurrentState.barrierLayer_legacy = barrierLayer;
1138 mCurrentState.frameNumber_legacy = frameNumber;
Dan Stoza7dde5992015-05-22 09:51:44 -07001139 // We don't set eTransactionNeeded, because just receiving a deferral
1140 // request without any other state updates shouldn't actually induce a delay
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001141 mCurrentState.modified = true;
1142 pushPendingState();
1143 mCurrentState.barrierLayer_legacy = nullptr;
1144 mCurrentState.frameNumber_legacy = 0;
1145 mCurrentState.modified = false;
Robert Carr0d480722017-01-10 16:42:54 -08001146}
1147
Marissa Wallf58c14b2018-07-24 10:50:43 -07001148void Layer::deferTransactionUntil_legacy(const sp<IBinder>& barrierHandle, uint64_t frameNumber) {
Robert Carr0d480722017-01-10 16:42:54 -08001149 sp<Handle> handle = static_cast<Handle*>(barrierHandle.get());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001150 deferTransactionUntil_legacy(handle->owner.promote(), frameNumber);
Dan Stoza7dde5992015-05-22 09:51:44 -07001151}
1152
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001153// ----------------------------------------------------------------------------
1154// pageflip handling...
1155// ----------------------------------------------------------------------------
1156
Robert Carr1f0a16a2016-10-24 16:27:39 -07001157bool Layer::isHiddenByPolicy() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001158 const State& s(mDrawingState);
Chia-I Wue41dbe62017-06-13 14:10:56 -07001159 const auto& parent = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001160 if (parent != nullptr && parent->isHiddenByPolicy()) {
1161 return true;
1162 }
Robert Carr1c5481e2019-07-01 14:42:27 -07001163 if (usingRelativeZ(LayerVector::StateSet::Drawing)) {
1164 auto zOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
1165 if (zOrderRelativeOf != nullptr) {
1166 if (zOrderRelativeOf->isHiddenByPolicy()) {
1167 return true;
1168 }
1169 }
1170 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001171 return s.flags & layer_state_t::eLayerHidden;
1172}
1173
David Sodman41fdfc92017-11-06 16:09:56 -08001174uint32_t Layer::getEffectiveUsage(uint32_t usage) const {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001175 // TODO: should we do something special if mSecure is set?
1176 if (mProtectedByApp) {
1177 // need a hardware-protected path to external video sink
1178 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07001179 }
Riley Andrews03414a12014-07-01 14:22:59 -07001180 if (mPotentialCursor) {
1181 usage |= GraphicBuffer::USAGE_CURSOR;
1182 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07001183 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001184 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001185}
1186
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001187void Layer::updateTransformHint(const sp<const DisplayDevice>& display) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07001188 uint32_t orientation = 0;
Vishnu Nair5eb3f062019-04-08 08:21:03 -07001189 // Disable setting transform hint if the debug flag is set.
1190 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08001191 // The transform hint is used to improve performance, but we can
1192 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07001193 // apply to all displays.
Peiyong Linefefaac2018-08-17 12:27:51 -07001194 const ui::Transform& planeTransform = display->getTransform();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001195 orientation = planeTransform.getOrientation();
Peiyong Linefefaac2018-08-17 12:27:51 -07001196 if (orientation & ui::Transform::ROT_INVALID) {
Mathias Agopiana4583642011-08-23 18:03:18 -07001197 orientation = 0;
1198 }
1199 }
David Sodmaneb085e02017-10-05 18:49:04 -07001200 setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07001201}
1202
Mathias Agopian13127d82013-03-05 17:47:11 -08001203// ----------------------------------------------------------------------------
1204// debugging
1205// ----------------------------------------------------------------------------
1206
Marissa Wall61c58622018-07-18 10:12:20 -07001207// TODO(marissaw): add new layer state info to layer debugging
Kalle Raitaa099a242017-01-11 11:17:29 -08001208LayerDebugInfo Layer::getLayerDebugInfo() const {
1209 LayerDebugInfo info;
Alec Mourib416efd2018-09-06 21:01:59 +00001210 const State& ds = getDrawingState();
Kalle Raitaa099a242017-01-11 11:17:29 -08001211 info.mName = getName();
chaviw1acbec72017-07-27 15:28:26 -07001212 sp<Layer> parent = getParent();
Kalle Raitaa099a242017-01-11 11:17:29 -08001213 info.mParentName = (parent == nullptr ? std::string("none") : parent->getName().string());
Yiwei Zhang5434a782018-12-05 18:06:32 -08001214 info.mType = std::string(getTypeId());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001215 info.mTransparentRegion = ds.activeTransparentRegion_legacy;
Kalle Raitaa099a242017-01-11 11:17:29 -08001216 info.mVisibleRegion = visibleRegion;
1217 info.mSurfaceDamageRegion = surfaceDamageRegion;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001218 info.mLayerStack = getLayerStack();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001219 info.mX = ds.active_legacy.transform.tx();
1220 info.mY = ds.active_legacy.transform.ty();
Kalle Raitaa099a242017-01-11 11:17:29 -08001221 info.mZ = ds.z;
Marissa Wallf58c14b2018-07-24 10:50:43 -07001222 info.mWidth = ds.active_legacy.w;
1223 info.mHeight = ds.active_legacy.h;
1224 info.mCrop = ds.crop_legacy;
chaviw13fdc492017-06-27 12:40:18 -07001225 info.mColor = ds.color;
Kalle Raitaa099a242017-01-11 11:17:29 -08001226 info.mFlags = ds.flags;
1227 info.mPixelFormat = getPixelFormat();
Chia-I Wu01591c92018-05-22 12:03:00 -07001228 info.mDataSpace = static_cast<android_dataspace>(mCurrentDataSpace);
Marissa Wallf58c14b2018-07-24 10:50:43 -07001229 info.mMatrix[0][0] = ds.active_legacy.transform[0][0];
1230 info.mMatrix[0][1] = ds.active_legacy.transform[0][1];
1231 info.mMatrix[1][0] = ds.active_legacy.transform[1][0];
1232 info.mMatrix[1][1] = ds.active_legacy.transform[1][1];
Kalle Raitaa099a242017-01-11 11:17:29 -08001233 {
David Sodman0cf8f8d2017-12-20 18:19:45 -08001234 sp<const GraphicBuffer> buffer = mActiveBuffer;
David Sodman5b4cffc2017-11-23 13:20:29 -08001235 if (buffer != 0) {
1236 info.mActiveBufferWidth = buffer->getWidth();
1237 info.mActiveBufferHeight = buffer->getHeight();
1238 info.mActiveBufferStride = buffer->getStride();
1239 info.mActiveBufferFormat = buffer->format;
Kalle Raitaa099a242017-01-11 11:17:29 -08001240 } else {
1241 info.mActiveBufferWidth = 0;
1242 info.mActiveBufferHeight = 0;
1243 info.mActiveBufferStride = 0;
1244 info.mActiveBufferFormat = 0;
1245 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001246 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001247 info.mNumQueuedFrames = getQueuedFrameCount();
1248 info.mRefreshPending = isBufferLatched();
1249 info.mIsOpaque = isOpaque(ds);
1250 info.mContentDirty = contentDirty;
1251 return info;
Mathias Agopian13127d82013-03-05 17:47:11 -08001252}
Chia-I Wu83ce7c12017-10-19 15:18:55 -07001253
Yiwei Zhang5434a782018-12-05 18:06:32 -08001254void Layer::miniDumpHeader(std::string& result) {
Yichi Chen6ca35192018-05-29 12:20:43 +08001255 result.append("-------------------------------");
1256 result.append("-------------------------------");
1257 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001258 result.append(" Layer name\n");
1259 result.append(" Z | ");
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001260 result.append(" Window Type | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001261 result.append(" Comp Type | ");
Yichi Chen6ca35192018-05-29 12:20:43 +08001262 result.append(" Transform | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001263 result.append(" Disp Frame (LTRB) | ");
1264 result.append(" Source Crop (LTRB)\n");
Yichi Chen6ca35192018-05-29 12:20:43 +08001265 result.append("-------------------------------");
1266 result.append("-------------------------------");
1267 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001268}
1269
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001270void Layer::miniDump(std::string& result, const sp<DisplayDevice>& displayDevice) const {
1271 auto outputLayer = findOutputLayerForDisplay(displayDevice);
1272 if (!outputLayer) {
Dan Stozae22aec72016-08-01 13:20:59 -07001273 return;
1274 }
1275
Yiwei Zhang5434a782018-12-05 18:06:32 -08001276 std::string name;
Dan Stozae22aec72016-08-01 13:20:59 -07001277 if (mName.length() > 77) {
1278 std::string shortened;
1279 shortened.append(mName.string(), 36);
1280 shortened.append("[...]");
1281 shortened.append(mName.string() + (mName.length() - 36), 36);
Yiwei Zhang5434a782018-12-05 18:06:32 -08001282 name = shortened;
Dan Stozae22aec72016-08-01 13:20:59 -07001283 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001284 name = std::string(mName.string(), mName.size());
Dan Stozae22aec72016-08-01 13:20:59 -07001285 }
1286
Yiwei Zhang5434a782018-12-05 18:06:32 -08001287 StringAppendF(&result, " %s\n", name.c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07001288
Alec Mourib416efd2018-09-06 21:01:59 +00001289 const State& layerState(getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001290 const auto& compositionState = outputLayer->getState();
1291
Chia-I Wu1e043612018-03-01 09:45:09 -08001292 if (layerState.zOrderRelativeOf != nullptr || mDrawingParent != nullptr) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001293 StringAppendF(&result, " rel %6d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001294 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001295 StringAppendF(&result, " %10d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001296 }
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001297 StringAppendF(&result, " %10d | ", mWindowType);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001298 StringAppendF(&result, "%10s | ", toString(getCompositionType(displayDevice)).c_str());
1299 StringAppendF(&result, "%10s | ",
1300 toString(getCompositionLayer() ? compositionState.bufferTransform
1301 : static_cast<Hwc2::Transform>(0))
1302 .c_str());
1303 const Rect& frame = compositionState.displayFrame;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001304 StringAppendF(&result, "%4d %4d %4d %4d | ", frame.left, frame.top, frame.right, frame.bottom);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001305 const FloatRect& crop = compositionState.sourceCrop;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001306 StringAppendF(&result, "%6.1f %6.1f %6.1f %6.1f\n", crop.left, crop.top, crop.right,
1307 crop.bottom);
Dan Stozae22aec72016-08-01 13:20:59 -07001308
Yichi Chen6ca35192018-05-29 12:20:43 +08001309 result.append("- - - - - - - - - - - - - - - -");
1310 result.append("- - - - - - - - - - - - - - - -");
1311 result.append("- - - - - - - - - - - - - - -\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001312}
Dan Stozae22aec72016-08-01 13:20:59 -07001313
Yiwei Zhang5434a782018-12-05 18:06:32 -08001314void Layer::dumpFrameStats(std::string& result) const {
Svetoslavd85084b2014-03-20 10:28:31 -07001315 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08001316}
1317
Svetoslavd85084b2014-03-20 10:28:31 -07001318void Layer::clearFrameStats() {
1319 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08001320}
1321
Jamie Gennis6547ff42013-07-16 20:12:42 -07001322void Layer::logFrameStats() {
1323 mFrameTracker.logAndResetStats(mName);
1324}
1325
Svetoslavd85084b2014-03-20 10:28:31 -07001326void Layer::getFrameStats(FrameStats* outStats) const {
1327 mFrameTracker.getStats(outStats);
1328}
1329
Yiwei Zhang5434a782018-12-05 18:06:32 -08001330void Layer::dumpFrameEvents(std::string& result) {
1331 StringAppendF(&result, "- Layer %s (%s, %p)\n", getName().string(), getTypeId(), this);
Brian Andersond6927fb2016-07-23 23:37:30 -07001332 Mutex::Autolock lock(mFrameEventHistoryMutex);
1333 mFrameEventHistory.checkFencesForCompletion();
1334 mFrameEventHistory.dump(result);
1335}
Pablo Ceballos40845df2016-01-25 17:41:15 -08001336
Brian Anderson5ea5e592016-12-01 16:54:33 -08001337void Layer::onDisconnect() {
1338 Mutex::Autolock lock(mFrameEventHistoryMutex);
1339 mFrameEventHistory.onDisconnect();
Yiwei Zhangaf8ee942018-11-22 00:15:23 -08001340 mFlinger->mTimeStats->onDestroy(getSequence());
Brian Anderson5ea5e592016-12-01 16:54:33 -08001341}
1342
Brian Anderson3890c392016-07-25 12:48:08 -07001343void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
David Sodman41fdfc92017-11-06 16:09:56 -08001344 FrameEventHistoryDelta* outDelta) {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001345 if (newTimestamps) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001346 mFlinger->mTimeStats->setPostTime(getSequence(), newTimestamps->frameNumber,
1347 getName().c_str(), newTimestamps->postedTime);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001348 }
1349
Brian Andersond6927fb2016-07-23 23:37:30 -07001350 Mutex::Autolock lock(mFrameEventHistoryMutex);
1351 if (newTimestamps) {
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001352 // If there are any unsignaled fences in the aquire timeline at this
1353 // point, the previously queued frame hasn't been latched yet. Go ahead
1354 // and try to get the signal time here so the syscall is taken out of
1355 // the main thread's critical path.
1356 mAcquireTimeline.updateSignalTimes();
1357 // Push the new fence after updating since it's likely still pending.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001358 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07001359 mFrameEventHistory.addQueue(*newTimestamps);
1360 }
1361
Brian Anderson3890c392016-07-25 12:48:08 -07001362 if (outDelta) {
1363 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001364 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08001365}
Dan Stozae77c7662016-05-13 11:37:28 -07001366
Chia-I Wu98f1c102017-05-30 14:54:08 -07001367size_t Layer::getChildrenCount() const {
1368 size_t count = 0;
1369 for (const sp<Layer>& child : mCurrentChildren) {
1370 count += 1 + child->getChildrenCount();
1371 }
1372 return count;
1373}
1374
Robert Carr1f0a16a2016-10-24 16:27:39 -07001375void Layer::addChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001376 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001377 setTransactionFlags(eTransactionNeeded);
Robert Carr1323c952019-01-28 18:13:27 -08001378
Robert Carr1f0a16a2016-10-24 16:27:39 -07001379 mCurrentChildren.add(layer);
1380 layer->setParent(this);
1381}
1382
1383ssize_t Layer::removeChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001384 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001385 setTransactionFlags(eTransactionNeeded);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001386
Robert Carr1323c952019-01-28 18:13:27 -08001387 layer->setParent(nullptr);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001388 return mCurrentChildren.remove(layer);
1389}
1390
Robert Carr1db73f62016-12-21 12:58:51 -08001391bool Layer::reparentChildren(const sp<IBinder>& newParentHandle) {
1392 sp<Handle> handle = nullptr;
1393 sp<Layer> newParent = nullptr;
1394 if (newParentHandle == nullptr) {
1395 return false;
1396 }
1397 handle = static_cast<Handle*>(newParentHandle.get());
1398 newParent = handle->owner.promote();
1399 if (newParent == nullptr) {
1400 ALOGE("Unable to promote Layer handle");
1401 return false;
1402 }
1403
chaviw5aedec92018-10-22 10:40:38 -07001404 if (attachChildren()) {
1405 setTransactionFlags(eTransactionNeeded);
1406 }
Robert Carr1db73f62016-12-21 12:58:51 -08001407 for (const sp<Layer>& child : mCurrentChildren) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001408 newParent->addChild(child);
Robert Carr1db73f62016-12-21 12:58:51 -08001409 }
1410 mCurrentChildren.clear();
1411
1412 return true;
1413}
1414
Robert Carr15eae092018-03-23 13:43:53 -07001415void Layer::setChildrenDrawingParent(const sp<Layer>& newParent) {
Robert Carr578038f2018-03-09 12:25:24 -08001416 for (const sp<Layer>& child : mDrawingChildren) {
1417 child->mDrawingParent = newParent;
Vishnu Nairc652ff82019-03-15 12:48:54 -07001418 child->computeBounds(newParent->mBounds,
1419 newParent->getTransformWithScale(
1420 newParent->getBufferScaleTransform()));
Robert Carr578038f2018-03-09 12:25:24 -08001421 }
1422}
1423
chaviwf1961f72017-09-18 16:41:07 -07001424bool Layer::reparent(const sp<IBinder>& newParentHandle) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001425 bool callSetTransactionFlags = false;
chaviw06178942017-07-27 10:25:59 -07001426
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001427 // While layers are detached, we allow most operations
1428 // and simply halt performing the actual transaction. However
1429 // for reparent != null we would enter the mRemovedFromCurrentState
1430 // state, regardless of whether doTransaction was called, and
1431 // so we need to prevent the update here.
1432 if (mLayerDetached && newParentHandle == nullptr) {
chaviw06178942017-07-27 10:25:59 -07001433 return false;
1434 }
1435
Robert Carr54cf5b12019-01-25 14:02:28 -08001436 sp<Layer> newParent;
1437 if (newParentHandle != nullptr) {
1438 auto handle = static_cast<Handle*>(newParentHandle.get());
1439 newParent = handle->owner.promote();
1440 if (newParent == nullptr) {
1441 ALOGE("Unable to promote Layer handle");
1442 return false;
1443 }
1444 if (newParent == this) {
1445 ALOGE("Invalid attempt to reparent Layer (%s) to itself", getName().c_str());
1446 return false;
1447 }
1448 }
1449
chaviwf1961f72017-09-18 16:41:07 -07001450 sp<Layer> parent = getParent();
1451 if (parent != nullptr) {
1452 parent->removeChild(this);
chaviw06178942017-07-27 10:25:59 -07001453 }
1454
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001455 if (newParentHandle != nullptr) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001456 newParent->addChild(this);
1457 if (!newParent->isRemovedFromCurrentState()) {
1458 addToCurrentState();
1459 } else {
1460 onRemovedFromCurrentState();
1461 }
1462
1463 if (mLayerDetached) {
1464 mLayerDetached = false;
1465 callSetTransactionFlags = true;
1466 }
1467 } else {
1468 onRemovedFromCurrentState();
chaviw61626f22018-11-15 16:26:27 -08001469 }
1470
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001471 if (callSetTransactionFlags || attachChildren()) {
chaviw5aedec92018-10-22 10:40:38 -07001472 setTransactionFlags(eTransactionNeeded);
1473 }
chaviw06178942017-07-27 10:25:59 -07001474 return true;
1475}
1476
Robert Carr9524cb32017-02-13 11:32:32 -08001477bool Layer::detachChildren() {
Robert Carr7f619b22017-11-06 12:56:35 -08001478 for (const sp<Layer>& child : mCurrentChildren) {
chaviw161410b02017-07-27 10:46:08 -07001479 sp<Client> parentClient = mClientRef.promote();
Robert Carr9524cb32017-02-13 11:32:32 -08001480 sp<Client> client(child->mClientRef.promote());
chaviw161410b02017-07-27 10:46:08 -07001481 if (client != nullptr && parentClient != client) {
chaviw5aedec92018-10-22 10:40:38 -07001482 child->mLayerDetached = true;
Robert Carr7f619b22017-11-06 12:56:35 -08001483 child->detachChildren();
chaviw43cb3cb2019-05-31 15:23:41 -07001484 child->removeRemoteSyncPoints();
Robert Carr9524cb32017-02-13 11:32:32 -08001485 }
Robert Carr7f619b22017-11-06 12:56:35 -08001486 }
Robert Carr9524cb32017-02-13 11:32:32 -08001487
1488 return true;
1489}
1490
chaviw5aedec92018-10-22 10:40:38 -07001491bool Layer::attachChildren() {
1492 bool changed = false;
1493 for (const sp<Layer>& child : mCurrentChildren) {
1494 sp<Client> parentClient = mClientRef.promote();
1495 sp<Client> client(child->mClientRef.promote());
1496 if (client != nullptr && parentClient != client) {
1497 if (child->mLayerDetached) {
1498 child->mLayerDetached = false;
1499 changed = true;
1500 }
1501 changed |= child->attachChildren();
1502 }
1503 }
1504
1505 return changed;
1506}
1507
Peiyong Lind3788632018-09-18 16:01:31 -07001508bool Layer::setColorTransform(const mat4& matrix) {
Peiyong Lin747321c2018-10-01 10:03:11 -07001509 static const mat4 identityMatrix = mat4();
1510
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001511 if (mCurrentState.colorTransform == matrix) {
Peiyong Lind3788632018-09-18 16:01:31 -07001512 return false;
1513 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001514 ++mCurrentState.sequence;
1515 mCurrentState.colorTransform = matrix;
1516 mCurrentState.hasColorTransform = matrix != identityMatrix;
1517 mCurrentState.modified = true;
Peiyong Lind3788632018-09-18 16:01:31 -07001518 setTransactionFlags(eTransactionNeeded);
1519 return true;
1520}
1521
chaviwf66724d2018-11-28 16:35:21 -08001522mat4 Layer::getColorTransform() const {
1523 mat4 colorTransform = mat4(getDrawingState().colorTransform);
1524 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1525 colorTransform = parent->getColorTransform() * colorTransform;
1526 }
1527 return colorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001528}
1529
1530bool Layer::hasColorTransform() const {
chaviwf66724d2018-11-28 16:35:21 -08001531 bool hasColorTransform = getDrawingState().hasColorTransform;
1532 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1533 hasColorTransform = hasColorTransform || parent->hasColorTransform();
1534 }
1535 return hasColorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001536}
1537
Chia-I Wu11481472018-05-04 10:43:19 -07001538bool Layer::isLegacyDataSpace() const {
1539 // return true when no higher bits are set
Chia-I Wu01591c92018-05-22 12:03:00 -07001540 return !(mCurrentDataSpace & (ui::Dataspace::STANDARD_MASK |
Chia-I Wu11481472018-05-04 10:43:19 -07001541 ui::Dataspace::TRANSFER_MASK | ui::Dataspace::RANGE_MASK));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08001542}
1543
Robert Carr1f0a16a2016-10-24 16:27:39 -07001544void Layer::setParent(const sp<Layer>& layer) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001545 mCurrentParent = layer;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001546}
1547
Robert Carr1f0a16a2016-10-24 16:27:39 -07001548int32_t Layer::getZ() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001549 return mDrawingState.z;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001550}
1551
Robert Carr1c5481e2019-07-01 14:42:27 -07001552bool Layer::usingRelativeZ(LayerVector::StateSet stateSet) const {
Robert Carr29abff82017-12-04 13:51:20 -08001553 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001554 const State& state = useDrawing ? mDrawingState : mCurrentState;
Robert Carr29abff82017-12-04 13:51:20 -08001555 return state.zOrderRelativeOf != nullptr;
1556}
1557
David Sodman41fdfc92017-11-06 16:09:56 -08001558__attribute__((no_sanitize("unsigned-integer-overflow"))) LayerVector Layer::makeTraversalList(
Robert Carr29abff82017-12-04 13:51:20 -08001559 LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers) {
Dan Stoza412903f2017-04-27 13:42:17 -07001560 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1561 "makeTraversalList received invalid stateSet");
1562 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1563 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001564 const State& state = useDrawing ? mDrawingState : mCurrentState;
Dan Stoza412903f2017-04-27 13:42:17 -07001565
Robert Carr29abff82017-12-04 13:51:20 -08001566 if (state.zOrderRelatives.size() == 0) {
1567 *outSkipRelativeZUsers = true;
1568 return children;
1569 }
1570
chaviwfd462612018-05-31 16:11:27 -07001571 LayerVector traverse(stateSet);
Dan Stoza412903f2017-04-27 13:42:17 -07001572 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
Robert Carrdb66e622017-04-10 16:55:57 -07001573 sp<Layer> strongRelative = weakRelative.promote();
1574 if (strongRelative != nullptr) {
1575 traverse.add(strongRelative);
Robert Carrdb66e622017-04-10 16:55:57 -07001576 }
1577 }
1578
Dan Stoza412903f2017-04-27 13:42:17 -07001579 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001580 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
Robert Carr503c7042017-09-27 15:06:08 -07001581 if (childState.zOrderRelativeOf != nullptr) {
1582 continue;
1583 }
Robert Carrdb66e622017-04-10 16:55:57 -07001584 traverse.add(child);
1585 }
1586
1587 return traverse;
1588}
1589
Robert Carr1f0a16a2016-10-24 16:27:39 -07001590/**
Robert Carrdb66e622017-04-10 16:55:57 -07001591 * Negatively signed relatives are before 'this' in Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001592 */
Dan Stoza412903f2017-04-27 13:42:17 -07001593void Layer::traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001594 // In the case we have other layers who are using a relative Z to us, makeTraversalList will
1595 // produce a new list for traversing, including our relatives, and not including our children
1596 // who are relatives of another surface. In the case that there are no relative Z,
1597 // makeTraversalList returns our children directly to avoid significant overhead.
1598 // However in this case we need to take the responsibility for filtering children which
1599 // are relatives of another surface here.
1600 bool skipRelativeZUsers = false;
1601 const LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001602
Robert Carr1f0a16a2016-10-24 16:27:39 -07001603 size_t i = 0;
Robert Carrdb66e622017-04-10 16:55:57 -07001604 for (; i < list.size(); i++) {
1605 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001606 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1607 continue;
1608 }
1609
Robert Carrdb66e622017-04-10 16:55:57 -07001610 if (relative->getZ() >= 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001611 break;
Robert Carrdb66e622017-04-10 16:55:57 -07001612 }
Dan Stoza412903f2017-04-27 13:42:17 -07001613 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001614 }
Robert Carr29abff82017-12-04 13:51:20 -08001615
Dan Stoza412903f2017-04-27 13:42:17 -07001616 visitor(this);
Robert Carrdb66e622017-04-10 16:55:57 -07001617 for (; i < list.size(); i++) {
1618 const auto& relative = list[i];
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001619
Robert Carr29abff82017-12-04 13:51:20 -08001620 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1621 continue;
1622 }
Dan Stoza412903f2017-04-27 13:42:17 -07001623 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001624 }
1625}
1626
1627/**
Robert Carrdb66e622017-04-10 16:55:57 -07001628 * Positively signed relatives are before 'this' in reverse Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001629 */
Dan Stoza412903f2017-04-27 13:42:17 -07001630void Layer::traverseInReverseZOrder(LayerVector::StateSet stateSet,
1631 const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001632 // See traverseInZOrder for documentation.
1633 bool skipRelativeZUsers = false;
1634 LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001635
Robert Carr1f0a16a2016-10-24 16:27:39 -07001636 int32_t i = 0;
Joel Galensonbf324992017-11-06 11:04:12 -08001637 for (i = int32_t(list.size()) - 1; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001638 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001639
1640 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1641 continue;
1642 }
1643
Robert Carrdb66e622017-04-10 16:55:57 -07001644 if (relative->getZ() < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001645 break;
1646 }
Dan Stoza412903f2017-04-27 13:42:17 -07001647 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001648 }
Dan Stoza412903f2017-04-27 13:42:17 -07001649 visitor(this);
David Sodman41fdfc92017-11-06 16:09:56 -08001650 for (; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001651 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001652
1653 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1654 continue;
1655 }
1656
Dan Stoza412903f2017-04-27 13:42:17 -07001657 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001658 }
1659}
1660
chaviw4b129c22018-04-09 16:19:43 -07001661LayerVector Layer::makeChildrenTraversalList(LayerVector::StateSet stateSet,
1662 const std::vector<Layer*>& layersInTree) {
1663 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1664 "makeTraversalList received invalid stateSet");
chaviwa76b2712017-09-20 12:02:26 -07001665 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1666 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001667 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001668
chaviwfd462612018-05-31 16:11:27 -07001669 LayerVector traverse(stateSet);
chaviw4b129c22018-04-09 16:19:43 -07001670 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1671 sp<Layer> strongRelative = weakRelative.promote();
1672 // Only add relative layers that are also descendents of the top most parent of the tree.
1673 // If a relative layer is not a descendent, then it should be ignored.
1674 if (std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
1675 traverse.add(strongRelative);
1676 }
1677 }
1678
1679 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001680 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001681 // If a layer has a relativeOf layer, only ignore if the layer it's relative to is a
1682 // descendent of the top most parent of the tree. If it's not a descendent, then just add
1683 // the child here since it won't be added later as a relative.
1684 if (std::binary_search(layersInTree.begin(), layersInTree.end(),
1685 childState.zOrderRelativeOf.promote().get())) {
1686 continue;
1687 }
1688 traverse.add(child);
1689 }
1690
1691 return traverse;
1692}
1693
1694void Layer::traverseChildrenInZOrderInner(const std::vector<Layer*>& layersInTree,
1695 LayerVector::StateSet stateSet,
1696 const LayerVector::Visitor& visitor) {
1697 const LayerVector list = makeChildrenTraversalList(stateSet, layersInTree);
chaviwa76b2712017-09-20 12:02:26 -07001698
1699 size_t i = 0;
chaviw4b129c22018-04-09 16:19:43 -07001700 for (; i < list.size(); i++) {
1701 const auto& relative = list[i];
chaviwa76b2712017-09-20 12:02:26 -07001702 if (relative->getZ() >= 0) {
1703 break;
1704 }
chaviw4b129c22018-04-09 16:19:43 -07001705 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001706 }
chaviw4b129c22018-04-09 16:19:43 -07001707
chaviwa76b2712017-09-20 12:02:26 -07001708 visitor(this);
chaviw4b129c22018-04-09 16:19:43 -07001709 for (; i < list.size(); i++) {
1710 const auto& relative = list[i];
1711 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001712 }
1713}
1714
chaviw4b129c22018-04-09 16:19:43 -07001715std::vector<Layer*> Layer::getLayersInTree(LayerVector::StateSet stateSet) {
1716 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1717 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
1718
1719 std::vector<Layer*> layersInTree = {this};
1720 for (size_t i = 0; i < children.size(); i++) {
1721 const auto& child = children[i];
1722 std::vector<Layer*> childLayers = child->getLayersInTree(stateSet);
1723 layersInTree.insert(layersInTree.end(), childLayers.cbegin(), childLayers.cend());
1724 }
1725
1726 return layersInTree;
1727}
1728
1729void Layer::traverseChildrenInZOrder(LayerVector::StateSet stateSet,
1730 const LayerVector::Visitor& visitor) {
1731 std::vector<Layer*> layersInTree = getLayersInTree(stateSet);
1732 std::sort(layersInTree.begin(), layersInTree.end());
1733 traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
1734}
1735
Peiyong Linefefaac2018-08-17 12:27:51 -07001736ui::Transform Layer::getTransform() const {
Vishnu Nairf0c28512019-02-08 12:40:28 -08001737 return mEffectiveTransform;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001738}
1739
chaviw13fdc492017-06-27 12:40:18 -07001740half Layer::getAlpha() const {
Ady Abraham83729882018-12-07 12:26:48 -08001741 const auto& p = mDrawingParent.promote();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001742
chaviw13fdc492017-06-27 12:40:18 -07001743 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
1744 return parentAlpha * getDrawingState().color.a;
Robert Carr6452f122017-03-21 10:41:29 -07001745}
Robert Carr6452f122017-03-21 10:41:29 -07001746
chaviw13fdc492017-06-27 12:40:18 -07001747half4 Layer::getColor() const {
1748 const half4 color(getDrawingState().color);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001749 return half4(color.r, color.g, color.b, getAlpha());
Robert Carr6452f122017-03-21 10:41:29 -07001750}
Robert Carr6452f122017-03-21 10:41:29 -07001751
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001752Layer::RoundedCornerState Layer::getRoundedCornerState() const {
1753 const auto& p = mDrawingParent.promote();
1754 if (p != nullptr) {
Peiyong Lin27016a92019-03-29 17:36:08 +00001755 RoundedCornerState parentState = p->getRoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001756 if (parentState.radius > 0) {
1757 ui::Transform t = getActiveTransform(getDrawingState());
1758 t = t.inverse();
1759 parentState.cropRect = t.transform(parentState.cropRect);
1760 // The rounded corners shader only accepts 1 corner radius for performance reasons,
1761 // but a transform matrix can define horizontal and vertical scales.
1762 // Let's take the average between both of them and pass into the shader, practically we
1763 // never do this type of transformation on windows anyway.
1764 parentState.radius *= (t[0][0] + t[1][1]) / 2.0f;
1765 return parentState;
1766 }
1767 }
1768 const float radius = getDrawingState().cornerRadius;
Peiyong Linb9ff23e2019-04-08 11:04:59 -07001769 return radius > 0 && getCrop(getDrawingState()).isValid()
1770 ? RoundedCornerState(getCrop(getDrawingState()).toFloatRect(), radius)
1771 : RoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001772}
1773
Robert Carr1f0a16a2016-10-24 16:27:39 -07001774void Layer::commitChildList() {
1775 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
1776 const auto& child = mCurrentChildren[i];
1777 child->commitChildList();
1778 }
1779 mDrawingChildren = mCurrentChildren;
Chia-I Wue41dbe62017-06-13 14:10:56 -07001780 mDrawingParent = mCurrentParent;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001781}
1782
Vishnu Nair6fabeec2019-03-12 13:42:49 -07001783static wp<Layer> extractLayerFromBinder(const wp<IBinder>& weakBinderHandle) {
1784 if (weakBinderHandle == nullptr) {
1785 return nullptr;
1786 }
1787 sp<IBinder> binderHandle = weakBinderHandle.promote();
1788 if (binderHandle == nullptr) {
1789 return nullptr;
1790 }
1791 sp<Layer::Handle> handle = static_cast<Layer::Handle*>(binderHandle.get());
1792 if (handle == nullptr) {
1793 return nullptr;
1794 }
1795 return handle->owner;
1796}
1797
Robert Carr720e5062018-07-30 17:45:14 -07001798void Layer::setInputInfo(const InputWindowInfo& info) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001799 mCurrentState.inputInfo = info;
Vishnu Nair6fabeec2019-03-12 13:42:49 -07001800 mCurrentState.touchableRegionCrop = extractLayerFromBinder(info.touchableRegionCropHandle);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001801 mCurrentState.modified = true;
1802 mCurrentState.inputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07001803 setTransactionFlags(eTransactionNeeded);
1804}
1805
Vishnu Nair8406fd72019-07-30 11:29:31 -07001806void Layer::writeToProtoDrawingState(LayerProto* layerInfo, uint32_t traceFlags) const {
1807 ui::Transform transform = getTransform();
1808
1809 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
1810 for (const auto& pendingState : mPendingStatesSnapshot) {
1811 auto barrierLayer = pendingState.barrierLayer_legacy.promote();
1812 if (barrierLayer != nullptr) {
1813 BarrierLayerProto* barrierLayerProto = layerInfo->add_barrier_layer();
1814 barrierLayerProto->set_id(barrierLayer->sequence);
1815 barrierLayerProto->set_frame_number(pendingState.frameNumber_legacy);
1816 }
1817 }
1818
1819 auto buffer = mActiveBuffer;
1820 if (buffer != nullptr) {
1821 LayerProtoHelper::writeToProto(buffer,
1822 [&]() { return layerInfo->mutable_active_buffer(); });
1823 LayerProtoHelper::writeToProto(ui::Transform(mCurrentTransform),
1824 layerInfo->mutable_buffer_transform());
1825 }
1826 layerInfo->set_invalidate(contentDirty);
1827 layerInfo->set_is_protected(isProtected());
1828 layerInfo->set_dataspace(
1829 dataspaceDetails(static_cast<android_dataspace>(mCurrentDataSpace)));
1830 layerInfo->set_queued_frames(getQueuedFrameCount());
1831 layerInfo->set_refresh_pending(isBufferLatched());
1832 layerInfo->set_curr_frame(mCurrentFrameNumber);
1833 layerInfo->set_effective_scaling_mode(getEffectiveScalingMode());
1834
1835 layerInfo->set_corner_radius(getRoundedCornerState().radius);
1836 LayerProtoHelper::writeToProto(transform, layerInfo->mutable_transform());
1837 LayerProtoHelper::writePositionToProto(transform.tx(), transform.ty(),
1838 [&]() { return layerInfo->mutable_position(); });
1839 LayerProtoHelper::writeToProto(mBounds, [&]() { return layerInfo->mutable_bounds(); });
1840 LayerProtoHelper::writeToProto(visibleRegion,
1841 [&]() { return layerInfo->mutable_visible_region(); });
1842 LayerProtoHelper::writeToProto(surfaceDamageRegion,
1843 [&]() { return layerInfo->mutable_damage_region(); });
1844 }
1845
1846 if (traceFlags & SurfaceTracing::TRACE_EXTRA) {
1847 LayerProtoHelper::writeToProto(mSourceBounds,
1848 [&]() { return layerInfo->mutable_source_bounds(); });
1849 LayerProtoHelper::writeToProto(mScreenBounds,
1850 [&]() { return layerInfo->mutable_screen_bounds(); });
1851 }
1852}
1853
1854void Layer::writeToProtoCommonState(LayerProto* layerInfo, LayerVector::StateSet stateSet,
1855 uint32_t traceFlags) const {
chaviw1d044282017-09-27 12:19:28 -07001856 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1857 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001858 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw1d044282017-09-27 12:19:28 -07001859
Peiyong Linefefaac2018-08-17 12:27:51 -07001860 ui::Transform requestedTransform = state.active_legacy.transform;
chaviw1d044282017-09-27 12:19:28 -07001861
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001862 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
1863 layerInfo->set_id(sequence);
1864 layerInfo->set_name(getName().c_str());
1865 layerInfo->set_type(String8(getTypeId()));
chaviw1d044282017-09-27 12:19:28 -07001866
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001867 for (const auto& child : children) {
1868 layerInfo->add_children(child->sequence);
chaviw1d044282017-09-27 12:19:28 -07001869 }
chaviw1d044282017-09-27 12:19:28 -07001870
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001871 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1872 sp<Layer> strongRelative = weakRelative.promote();
1873 if (strongRelative != nullptr) {
1874 layerInfo->add_relatives(strongRelative->sequence);
1875 }
chaviwadc40c22018-07-10 16:57:27 -07001876 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001877
1878 LayerProtoHelper::writeToProto(state.activeTransparentRegion_legacy,
1879 [&]() { return layerInfo->mutable_transparent_region(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001880
1881 layerInfo->set_layer_stack(getLayerStack());
1882 layerInfo->set_z(state.z);
1883
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001884 LayerProtoHelper::writePositionToProto(requestedTransform.tx(), requestedTransform.ty(),
1885 [&]() {
1886 return layerInfo->mutable_requested_position();
1887 });
1888
1889 LayerProtoHelper::writeSizeToProto(state.active_legacy.w, state.active_legacy.h,
1890 [&]() { return layerInfo->mutable_size(); });
1891
1892 LayerProtoHelper::writeToProto(state.crop_legacy,
1893 [&]() { return layerInfo->mutable_crop(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001894
1895 layerInfo->set_is_opaque(isOpaque(state));
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001896
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001897
1898 layerInfo->set_pixel_format(decodePixelFormat(getPixelFormat()));
1899 LayerProtoHelper::writeToProto(getColor(), [&]() { return layerInfo->mutable_color(); });
1900 LayerProtoHelper::writeToProto(state.color,
1901 [&]() { return layerInfo->mutable_requested_color(); });
1902 layerInfo->set_flags(state.flags);
1903
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001904 LayerProtoHelper::writeToProto(requestedTransform,
1905 layerInfo->mutable_requested_transform());
1906
1907 auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
1908 if (parent != nullptr) {
1909 layerInfo->set_parent(parent->sequence);
1910 } else {
1911 layerInfo->set_parent(-1);
1912 }
1913
1914 auto zOrderRelativeOf = state.zOrderRelativeOf.promote();
1915 if (zOrderRelativeOf != nullptr) {
1916 layerInfo->set_z_order_relative_of(zOrderRelativeOf->sequence);
1917 } else {
1918 layerInfo->set_z_order_relative_of(-1);
1919 }
chaviwadc40c22018-07-10 16:57:27 -07001920 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001921
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001922 if (traceFlags & SurfaceTracing::TRACE_INPUT) {
1923 LayerProtoHelper::writeToProto(state.inputInfo, state.touchableRegionCrop,
1924 [&]() { return layerInfo->mutable_input_window_info(); });
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001925 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001926
1927 if (traceFlags & SurfaceTracing::TRACE_EXTRA) {
1928 auto protoMap = layerInfo->mutable_metadata();
1929 for (const auto& entry : state.metadata.mMap) {
1930 (*protoMap)[entry.first] = std::string(entry.second.cbegin(), entry.second.cend());
1931 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001932 }
chaviw1d044282017-09-27 12:19:28 -07001933}
1934
Vishnu Nair8406fd72019-07-30 11:29:31 -07001935void Layer::writeToProtoCompositionState(LayerProto* layerInfo,
1936 const sp<DisplayDevice>& displayDevice,
1937 uint32_t traceFlags) const {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001938 auto outputLayer = findOutputLayerForDisplay(displayDevice);
1939 if (!outputLayer) {
Peiyong Lin91b1df22018-06-18 18:00:16 -07001940 return;
1941 }
1942
Vishnu Nair8406fd72019-07-30 11:29:31 -07001943 writeToProtoDrawingState(layerInfo, traceFlags);
1944 writeToProtoCommonState(layerInfo, LayerVector::StateSet::Drawing, traceFlags);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001945
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001946 const auto& compositionState = outputLayer->getState();
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001947
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001948 const Rect& frame = compositionState.displayFrame;
Nataniel Borges797b0e42019-02-15 14:11:58 -08001949 LayerProtoHelper::writeToProto(frame, [&]() { return layerInfo->mutable_hwc_frame(); });
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001950
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001951 const FloatRect& crop = compositionState.sourceCrop;
Nataniel Borges797b0e42019-02-15 14:11:58 -08001952 LayerProtoHelper::writeToProto(crop, [&]() { return layerInfo->mutable_hwc_crop(); });
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001953
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001954 const int32_t transform =
1955 getCompositionLayer() ? static_cast<int32_t>(compositionState.bufferTransform) : 0;
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001956 layerInfo->set_hwc_transform(transform);
Yiwei Zhang60d1a192018-03-07 14:52:28 -08001957
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001958 const int32_t compositionType =
1959 static_cast<int32_t>(compositionState.hwc ? (*compositionState.hwc).hwcCompositionType
1960 : Hwc2::IComposerClient::Composition::CLIENT);
Yiwei Zhang60d1a192018-03-07 14:52:28 -08001961 layerInfo->set_hwc_composition_type(compositionType);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08001962}
1963
Robert Carr2e102c92018-10-23 12:11:15 -07001964bool Layer::isRemovedFromCurrentState() const {
1965 return mRemovedFromCurrentState;
1966}
1967
Arthur Hungd20b2702019-01-14 18:16:16 +08001968InputWindowInfo Layer::fillInputInfo() {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001969 InputWindowInfo info = mDrawingState.inputInfo;
Robert Carr720e5062018-07-30 17:45:14 -07001970
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001971 if (info.displayId == ADISPLAY_ID_NONE) {
1972 info.displayId = mDrawingState.layerStack;
1973 }
1974
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001975 ui::Transform t = getTransform();
1976 const float xScale = t.sx();
1977 const float yScale = t.sy();
Ady Abraham282f1d72019-07-24 18:05:56 -07001978 int32_t xSurfaceInset = info.surfaceInset;
1979 int32_t ySurfaceInset = info.surfaceInset;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001980 if (xScale != 1.0f || yScale != 1.0f) {
Ady Abraham282f1d72019-07-24 18:05:56 -07001981 info.windowXScale *= (xScale != 0.0f) ? 1.0f / xScale : 0.0f;
1982 info.windowYScale *= (yScale != 0.0f) ? 1.0f / yScale : 0.0f;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001983 info.touchableRegion.scaleSelf(xScale, yScale);
Ady Abraham282f1d72019-07-24 18:05:56 -07001984 xSurfaceInset = std::round(xSurfaceInset * xScale);
1985 ySurfaceInset = std::round(ySurfaceInset * yScale);
Riddle Hsu39d4aa52018-11-30 20:46:53 +08001986 }
Robert Carre07e1032018-11-26 12:55:53 -08001987
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001988 // Transform layer size to screen space and inset it by surface insets.
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001989 // If this is a portal window, set the touchableRegion to the layerBounds.
1990 Rect layerBounds = info.portalToDisplayId == ADISPLAY_ID_NONE
1991 ? getBufferSize(getDrawingState())
1992 : info.touchableRegion.getBounds();
Arthur Hungd20b2702019-01-14 18:16:16 +08001993 if (!layerBounds.isValid()) {
1994 layerBounds = getCroppedBufferSize(getDrawingState());
1995 }
Vishnu Nair8033a492018-12-05 07:27:23 -08001996 layerBounds = t.transform(layerBounds);
Ady Abraham282f1d72019-07-24 18:05:56 -07001997
1998 // clamp inset to layer bounds
1999 xSurfaceInset = (xSurfaceInset >= 0) ? std::min(xSurfaceInset, layerBounds.getWidth() / 2) : 0;
2000 ySurfaceInset = (ySurfaceInset >= 0) ? std::min(ySurfaceInset, layerBounds.getHeight() / 2) : 0;
2001
Arthur Hung118b1142019-05-08 21:25:59 +08002002 layerBounds.inset(xSurfaceInset, ySurfaceInset, xSurfaceInset, ySurfaceInset);
Vishnu Nair8033a492018-12-05 07:27:23 -08002003
Arthur Hungd20b2702019-01-14 18:16:16 +08002004 // Input coordinate should match the layer bounds.
2005 info.frameLeft = layerBounds.left;
2006 info.frameTop = layerBounds.top;
2007 info.frameRight = layerBounds.right;
2008 info.frameBottom = layerBounds.bottom;
Vishnu Nair8033a492018-12-05 07:27:23 -08002009
2010 // Position the touchable region relative to frame screen location and restrict it to frame
2011 // bounds.
2012 info.touchableRegion = info.touchableRegion.translate(info.frameLeft, info.frameTop);
chaviw3e727cd2019-01-31 13:41:05 -08002013 info.visible = canReceiveInput();
Vishnu Nair6fabeec2019-03-12 13:42:49 -07002014
2015 auto cropLayer = mDrawingState.touchableRegionCrop.promote();
2016 if (info.replaceTouchableRegionWithCrop) {
2017 if (cropLayer == nullptr) {
2018 info.touchableRegion = Region(Rect{mScreenBounds});
2019 } else {
2020 info.touchableRegion = Region(Rect{cropLayer->mScreenBounds});
2021 }
2022 } else if (cropLayer != nullptr) {
2023 info.touchableRegion = info.touchableRegion.intersect(Rect{cropLayer->mScreenBounds});
2024 }
2025
Robert Carr720e5062018-07-30 17:45:14 -07002026 return info;
2027}
2028
2029bool Layer::hasInput() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002030 return mDrawingState.inputInfo.token != nullptr;
Robert Carr720e5062018-07-30 17:45:14 -07002031}
2032
Lloyd Piquefeb73d72018-12-04 17:23:44 -08002033std::shared_ptr<compositionengine::Layer> Layer::getCompositionLayer() const {
2034 return nullptr;
2035}
2036
chaviw3e727cd2019-01-31 13:41:05 -08002037bool Layer::canReceiveInput() const {
2038 return isVisible();
2039}
2040
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08002041compositionengine::OutputLayer* Layer::findOutputLayerForDisplay(
2042 const sp<const DisplayDevice>& display) const {
2043 return display->getCompositionDisplay()->getOutputLayerForLayer(getCompositionLayer().get());
2044}
2045
Mathias Agopian13127d82013-03-05 17:47:11 -08002046// ---------------------------------------------------------------------------
2047
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002048}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002049
2050#if defined(__gl_h_)
2051#error "don't include gl/gl.h in this file"
2052#endif
2053
2054#if defined(__gl2_h_)
2055#error "don't include gl2/gl2.h in this file"
2056#endif