blob: 4c8a6bf46595e8a6f850c31095a170101ec0edbc [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;
Marissa Wall7e0a01f2019-08-14 14:29:25 -0700108 mCurrentState.surfaceDamageRegion = Region::INVALID_REGION;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800109 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 {
Lloyd Pique688abd42019-02-15 15:42:24 -0800443 const auto& drawingState{getDrawingState()};
Lloyd Piquef5275482019-01-29 18:42:42 -0800444 compositionState.forceClientComposition = false;
445
446 // TODO(lpique): b/121291683 Remove this one we are sure we don't need the
447 // value recomputed / set every frame.
448 compositionState.geomVisibleRegion = visibleRegion;
449
450 compositionState.isColorspaceAgnostic = isColorSpaceAgnostic();
451 compositionState.dataspace = mCurrentDataSpace;
452 compositionState.colorTransform = getColorTransform();
453 compositionState.colorTransformIsIdentity = !hasColorTransform();
454 compositionState.surfaceDamage = surfaceDamageRegion;
Lloyd Pique688abd42019-02-15 15:42:24 -0800455 compositionState.hasProtectedContent = isProtected();
456
457 const bool usesRoundedCorners = getRoundedCornerState().radius != 0.f;
458 compositionState.isOpaque =
459 isOpaque(drawingState) && !usesRoundedCorners && getAlpha() == 1.0_hf;
Lloyd Piquef5275482019-01-29 18:42:42 -0800460
461 // Force client composition for special cases known only to the front-end.
Lloyd Pique688abd42019-02-15 15:42:24 -0800462 if (isHdrY410() || usesRoundedCorners) {
Lloyd Piquef5275482019-01-29 18:42:42 -0800463 compositionState.forceClientComposition = true;
464 }
465}
466
Lloyd Piquef16688f2019-02-19 17:47:57 -0800467bool Layer::onPreComposition(nsecs_t) {
468 return false;
469}
470
Lloyd Piquea83776c2019-01-29 18:42:32 -0800471void Layer::latchCompositionState(compositionengine::LayerFECompositionState& compositionState,
472 bool includeGeometry) const {
473 if (includeGeometry) {
474 latchGeometry(compositionState);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700475 }
Lloyd Piquef5275482019-01-29 18:42:42 -0800476
477 latchPerFrameState(compositionState);
Lloyd Piquea83776c2019-01-29 18:42:32 -0800478}
Mathias Agopian29a367b2011-07-12 14:51:45 -0700479
Lloyd Piquea83776c2019-01-29 18:42:32 -0800480const char* Layer::getDebugName() const {
481 return mName.string();
David Sodman4b7c4bc2017-11-17 12:13:59 -0800482}
483
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700484void Layer::updateCursorPosition(const sp<const DisplayDevice>& display) {
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800485 const auto outputLayer = findOutputLayerForDisplay(display);
486 LOG_FATAL_IF(!outputLayer);
487
488 if (!outputLayer->getState().hwc ||
489 (*outputLayer->getState().hwc).hwcCompositionType !=
490 Hwc2::IComposerClient::Composition::CURSOR) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800491 return;
492 }
493
494 // This gives us only the "orientation" component of the transform
Vishnu Nair33a6eee2019-02-06 13:48:06 -0800495 const State& s(getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800496
497 // Apply the layer's transform, followed by the display's global transform
498 // Here we're guaranteed that the layer's transform preserves rects
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800499 Rect win = getCroppedBufferSize(s);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800500 // Subtract the transparent region and snap to the bounds
Marissa Wall61c58622018-07-18 10:12:20 -0700501 Rect bounds = reduce(win, getActiveTransparentRegion(s));
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800502 Rect frame(getTransform().transform(bounds));
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700503 frame.intersect(display->getViewport(), &frame);
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700504 auto& displayTransform = display->getTransform();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800505 auto position = displayTransform.transform(frame);
506
Dominik Laskowski7e045462018-05-30 13:02:02 -0700507 auto error =
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800508 (*outputLayer->getState().hwc).hwcLayer->setCursorPosition(position.left, position.top);
David Sodman41fdfc92017-11-06 16:09:56 -0800509 ALOGE_IF(error != HWC2::Error::None,
510 "[%s] Failed to set cursor position "
511 "to (%d, %d): %s (%d)",
512 mName.string(), position.left, position.top, to_string(error).c_str(),
513 static_cast<int32_t>(error));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800514}
Riley Andrews03414a12014-07-01 14:22:59 -0700515
Mathias Agopian13127d82013-03-05 17:47:11 -0800516// ---------------------------------------------------------------------------
517// drawing...
518// ---------------------------------------------------------------------------
519
Lloyd Piquef16688f2019-02-19 17:47:57 -0800520std::optional<renderengine::LayerSettings> Layer::prepareClientComposition(
521 compositionengine::LayerFE::ClientCompositionTargetSettings& targetSettings) {
522 if (!getCompositionLayer()) {
523 return {};
524 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800525
Vishnu Nair4351ad52019-02-11 14:13:02 -0800526 FloatRect bounds = getBounds();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000527 half alpha = getAlpha();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800528 renderengine::LayerSettings layerSettings;
529 layerSettings.geometry.boundaries = bounds;
530 if (targetSettings.useIdentityTransform) {
531 layerSettings.geometry.positionTransform = mat4();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000532 } else {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800533 layerSettings.geometry.positionTransform = getTransform().asMatrix4();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000534 }
535
536 if (hasColorTransform()) {
Lloyd Piquef16688f2019-02-19 17:47:57 -0800537 layerSettings.colorTransform = getColorTransform();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000538 }
539
540 const auto roundedCornerState = getRoundedCornerState();
Lloyd Piquef16688f2019-02-19 17:47:57 -0800541 layerSettings.geometry.roundedCornersRadius = roundedCornerState.radius;
542 layerSettings.geometry.roundedCornersCrop = roundedCornerState.cropRect;
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000543
Lloyd Piquef16688f2019-02-19 17:47:57 -0800544 layerSettings.alpha = alpha;
545 layerSettings.sourceDataspace = mCurrentDataSpace;
546 return layerSettings;
Mathias Agopian13127d82013-03-05 17:47:11 -0800547}
548
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800549Hwc2::IComposerClient::Composition Layer::getCompositionType(
550 const sp<const DisplayDevice>& display) const {
551 const auto outputLayer = findOutputLayerForDisplay(display);
552 LOG_FATAL_IF(!outputLayer);
553 return outputLayer->getState().hwc ? (*outputLayer->getState().hwc).hwcCompositionType
554 : Hwc2::IComposerClient::Composition::CLIENT;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800555}
556
Lloyd Pique37c2c9b2018-12-04 17:25:10 -0800557bool Layer::getClearClientTarget(const sp<const DisplayDevice>& display) const {
558 const auto outputLayer = findOutputLayerForDisplay(display);
559 LOG_FATAL_IF(!outputLayer);
560 return outputLayer->getState().clearClientTarget;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800561}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800562
Dan Stozacac35382016-01-27 12:21:06 -0800563bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
564 if (point->getFrameNumber() <= mCurrentFrameNumber) {
565 // Don't bother with a SyncPoint, since we've already latched the
566 // relevant frame
567 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700568 }
Robert Carr2e102c92018-10-23 12:11:15 -0700569 if (isRemovedFromCurrentState()) {
570 return false;
571 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700572
Dan Stozacac35382016-01-27 12:21:06 -0800573 Mutex::Autolock lock(mLocalSyncPointMutex);
574 mLocalSyncPoints.push_back(point);
575 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -0700576}
577
Mathias Agopian13127d82013-03-05 17:47:11 -0800578// ----------------------------------------------------------------------------
579// local state
580// ----------------------------------------------------------------------------
581
David Sodman41fdfc92017-11-06 16:09:56 -0800582bool Layer::isSecure() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800583 const State& s(mDrawingState);
Dan Stoza23116082015-06-18 14:58:39 -0700584 return (s.flags & layer_state_t::eLayerSecure);
585}
586
Mathias Agopian13127d82013-03-05 17:47:11 -0800587void Layer::setVisibleRegion(const Region& visibleRegion) {
588 // always called from main thread
589 this->visibleRegion = visibleRegion;
590}
591
592void Layer::setCoveredRegion(const Region& coveredRegion) {
593 // always called from main thread
594 this->coveredRegion = coveredRegion;
595}
596
David Sodman41fdfc92017-11-06 16:09:56 -0800597void Layer::setVisibleNonTransparentRegion(const Region& setVisibleNonTransparentRegion) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800598 // always called from main thread
599 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
600}
601
Robert Carre5f4f692018-01-12 13:12:28 -0800602void Layer::clearVisibilityRegions() {
603 visibleRegion.clear();
604 visibleNonTransparentRegion.clear();
605 coveredRegion.clear();
606}
607
Mathias Agopian13127d82013-03-05 17:47:11 -0800608// ----------------------------------------------------------------------------
609// transaction
610// ----------------------------------------------------------------------------
Ady Abraham83729882018-12-07 12:26:48 -0800611
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800612void Layer::pushPendingState() {
613 if (!mCurrentState.modified) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700614 return;
615 }
Alec Mourie60041e2019-06-14 18:59:51 -0700616 ATRACE_CALL();
Dan Stoza7dde5992015-05-22 09:51:44 -0700617
Dan Stoza7dde5992015-05-22 09:51:44 -0700618 // If this transaction is waiting on the receipt of a frame, generate a sync
619 // point and send it to the remote layer.
Robert Carr2e102c92018-10-23 12:11:15 -0700620 // We don't allow installing sync points after we are removed from the current state
621 // as we won't be able to signal our end.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800622 if (mCurrentState.barrierLayer_legacy != nullptr && !isRemovedFromCurrentState()) {
623 sp<Layer> barrierLayer = mCurrentState.barrierLayer_legacy.promote();
Robert Carr0d480722017-01-10 16:42:54 -0800624 if (barrierLayer == nullptr) {
625 ALOGE("[%s] Unable to promote barrier Layer.", mName.string());
Dan Stoza7dde5992015-05-22 09:51:44 -0700626 // If we can't promote the layer we are intended to wait on,
627 // then it is expired or otherwise invalid. Allow this transaction
628 // to be applied as per normal (no synchronization).
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800629 mCurrentState.barrierLayer_legacy = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -0800630 } else {
chaviw43cb3cb2019-05-31 15:23:41 -0700631 auto syncPoint = std::make_shared<SyncPoint>(mCurrentState.frameNumber_legacy, this);
Robert Carr0d480722017-01-10 16:42:54 -0800632 if (barrierLayer->addSyncPoint(syncPoint)) {
Alec Mourie60041e2019-06-14 18:59:51 -0700633 std::stringstream ss;
634 ss << "Adding sync point " << mCurrentState.frameNumber_legacy;
635 ATRACE_NAME(ss.str().c_str());
Dan Stozacac35382016-01-27 12:21:06 -0800636 mRemoteSyncPoints.push_back(std::move(syncPoint));
637 } else {
638 // We already missed the frame we're supposed to synchronize
639 // on, so go ahead and apply the state update
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800640 mCurrentState.barrierLayer_legacy = nullptr;
Dan Stozacac35382016-01-27 12:21:06 -0800641 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700642 }
643
Dan Stoza7dde5992015-05-22 09:51:44 -0700644 // Wake us up to check if the frame has been received
645 setTransactionFlags(eTransactionNeeded);
Dan Stozaf5702ff2016-11-02 16:27:47 -0700646 mFlinger->setTransactionFlags(eTraversalNeeded);
Dan Stoza7dde5992015-05-22 09:51:44 -0700647 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800648 mPendingStates.push_back(mCurrentState);
649 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700650}
651
Pablo Ceballos05289c22016-04-14 15:49:55 -0700652void Layer::popPendingState(State* stateToCommit) {
Alec Mourie60041e2019-06-14 18:59:51 -0700653 ATRACE_CALL();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800654 *stateToCommit = mPendingStates[0];
Dan Stoza7dde5992015-05-22 09:51:44 -0700655
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800656 mPendingStates.removeAt(0);
657 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700658}
659
Pablo Ceballos05289c22016-04-14 15:49:55 -0700660bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700661 bool stateUpdateAvailable = false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800662 while (!mPendingStates.empty()) {
663 if (mPendingStates[0].barrierLayer_legacy != nullptr) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700664 if (mRemoteSyncPoints.empty()) {
665 // If we don't have a sync point for this, apply it anyway. It
666 // will be visually wrong, but it should keep us from getting
667 // into too much trouble.
668 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -0700669 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700670 stateUpdateAvailable = true;
671 continue;
672 }
673
Marissa Wallf58c14b2018-07-24 10:50:43 -0700674 if (mRemoteSyncPoints.front()->getFrameNumber() !=
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800675 mPendingStates[0].frameNumber_legacy) {
David Sodman41fdfc92017-11-06 16:09:56 -0800676 ALOGE("[%s] Unexpected sync point frame number found", mName.string());
Dan Stozacac35382016-01-27 12:21:06 -0800677
678 // Signal our end of the sync point and then dispose of it
679 mRemoteSyncPoints.front()->setTransactionApplied();
680 mRemoteSyncPoints.pop_front();
681 continue;
682 }
683
Dan Stoza7dde5992015-05-22 09:51:44 -0700684 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
Alec Mourie60041e2019-06-14 18:59:51 -0700685 ATRACE_NAME("frameIsAvailable");
Dan Stoza7dde5992015-05-22 09:51:44 -0700686 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -0700687 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700688 stateUpdateAvailable = true;
689
690 // Signal our end of the sync point and then dispose of it
691 mRemoteSyncPoints.front()->setTransactionApplied();
692 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -0800693 } else {
Alec Mourie60041e2019-06-14 18:59:51 -0700694 ATRACE_NAME("!frameIsAvailable");
Dan Stoza792e5292016-02-11 11:43:58 -0800695 break;
Dan Stoza7dde5992015-05-22 09:51:44 -0700696 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700697 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -0700698 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700699 stateUpdateAvailable = true;
700 }
701 }
702
703 // If we still have pending updates, wake SurfaceFlinger back up and point
704 // it at this layer so we can process them
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800705 if (!mPendingStates.empty()) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700706 setTransactionFlags(eTransactionNeeded);
707 mFlinger->setTransactionFlags(eTraversalNeeded);
708 }
709
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800710 mCurrentState.modified = false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700711 return stateUpdateAvailable;
712}
713
Marissa Wall61c58622018-07-18 10:12:20 -0700714uint32_t Layer::doTransactionResize(uint32_t flags, State* stateToCommit) {
Alec Mourib416efd2018-09-06 21:01:59 +0000715 const State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800716
Marissa Wall61c58622018-07-18 10:12:20 -0700717 const bool sizeChanged = (stateToCommit->requested_legacy.w != s.requested_legacy.w) ||
718 (stateToCommit->requested_legacy.h != s.requested_legacy.h);
Mathias Agopiana138f892010-05-21 17:24:35 -0700719
David Sodmaneb085e02017-10-05 18:49:04 -0700720 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700721 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +0000722 ALOGD_IF(DEBUG_RESIZE,
David Sodman41fdfc92017-11-06 16:09:56 -0800723 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
724 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
725 " requested={ wh={%4u,%4u} }}\n"
726 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
727 " requested={ wh={%4u,%4u} }}\n",
Marissa Wallf58c14b2018-07-24 10:50:43 -0700728 this, getName().string(), mCurrentTransform, getEffectiveScalingMode(),
Marissa Wall61c58622018-07-18 10:12:20 -0700729 stateToCommit->active_legacy.w, stateToCommit->active_legacy.h,
730 stateToCommit->crop_legacy.left, stateToCommit->crop_legacy.top,
731 stateToCommit->crop_legacy.right, stateToCommit->crop_legacy.bottom,
732 stateToCommit->crop_legacy.getWidth(), stateToCommit->crop_legacy.getHeight(),
733 stateToCommit->requested_legacy.w, stateToCommit->requested_legacy.h,
Marissa Wallf58c14b2018-07-24 10:50:43 -0700734 s.active_legacy.w, s.active_legacy.h, s.crop_legacy.left, s.crop_legacy.top,
735 s.crop_legacy.right, s.crop_legacy.bottom, s.crop_legacy.getWidth(),
736 s.crop_legacy.getHeight(), s.requested_legacy.w, s.requested_legacy.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800737 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700738
Robert Carre392b552017-09-19 12:16:05 -0700739 // Don't let Layer::doTransaction update the drawing state
740 // if we have a pending resize, unless we are in fixed-size mode.
741 // the drawing state will be updated only once we receive a buffer
742 // with the correct size.
743 //
744 // In particular, we want to make sure the clip (which is part
745 // of the geometry state) is latched together with the size but is
746 // latched immediately when no resizing is involved.
747 //
748 // If a sideband stream is attached, however, we want to skip this
749 // optimization so that transactions aren't missed when a buffer
750 // never arrives
751 //
752 // In the case that we don't have a buffer we ignore other factors
753 // and avoid entering the resizePending state. At a high level the
754 // resizePending state is to avoid applying the state of the new buffer
755 // to the old buffer. However in the state where we don't have an old buffer
756 // there is no such concern but we may still be being used as a parent layer.
Marissa Wall61c58622018-07-18 10:12:20 -0700757 const bool resizePending =
758 ((stateToCommit->requested_legacy.w != stateToCommit->active_legacy.w) ||
759 (stateToCommit->requested_legacy.h != stateToCommit->active_legacy.h)) &&
Lloyd Pique0b785d82018-12-04 17:25:27 -0800760 (mActiveBuffer != nullptr);
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700761 if (!isFixedSize()) {
Lloyd Pique0b785d82018-12-04 17:25:27 -0800762 if (resizePending && mSidebandStream == nullptr) {
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700763 flags |= eDontUpdateGeometryState;
764 }
765 }
766
Robert Carr7bf247e2017-05-18 14:02:49 -0700767 // Here we apply various requested geometry states, depending on our
768 // latching configuration. See Layer.h for a detailed discussion of
769 // how geometry latching is controlled.
770 if (!(flags & eDontUpdateGeometryState)) {
Alec Mourib416efd2018-09-06 21:01:59 +0000771 State& editCurrentState(getCurrentState());
Robert Carr7bf247e2017-05-18 14:02:49 -0700772
Robert Carr7bf247e2017-05-18 14:02:49 -0700773 // There is an awkward asymmetry in the handling of the crop states in the position
774 // states, as can be seen below. Largely this arises from position and transform
775 // being stored in the same data structure while having different latching rules.
776 // b/38182305
777 //
Marissa Wall61c58622018-07-18 10:12:20 -0700778 // Careful that "stateToCommit" and editCurrentState may not begin as equivalent due to
Robert Carr7bf247e2017-05-18 14:02:49 -0700779 // applyPendingStates in the presence of deferred transactions.
chaviw214c89d2019-09-04 16:03:53 -0700780 editCurrentState.active_legacy = editCurrentState.requested_legacy;
781 stateToCommit->active_legacy = stateToCommit->requested_legacy;
Mathias Agopian13127d82013-03-05 17:47:11 -0800782 }
783
Marissa Wall61c58622018-07-18 10:12:20 -0700784 return flags;
785}
786
787uint32_t Layer::doTransaction(uint32_t flags) {
788 ATRACE_CALL();
789
chaviw5aedec92018-10-22 10:40:38 -0700790 if (mLayerDetached) {
Robert Carr7f2ed8b2019-02-07 14:45:11 -0800791 return flags;
792 }
793
794 if (mChildrenChanged) {
795 flags |= eVisibleRegion;
796 mChildrenChanged = false;
chaviw5aedec92018-10-22 10:40:38 -0700797 }
798
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800799 pushPendingState();
Alec Mourib416efd2018-09-06 21:01:59 +0000800 State c = getCurrentState();
Marissa Wall61c58622018-07-18 10:12:20 -0700801 if (!applyPendingStates(&c)) {
Robert Carr7f2ed8b2019-02-07 14:45:11 -0800802 return flags;
Marissa Wall61c58622018-07-18 10:12:20 -0700803 }
804
805 flags = doTransactionResize(flags, &c);
806
Alec Mourib416efd2018-09-06 21:01:59 +0000807 const State& s(getDrawingState());
Marissa Wall61c58622018-07-18 10:12:20 -0700808
809 if (getActiveGeometry(c) != getActiveGeometry(s)) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800810 // invalidate and recompute the visible regions if needed
811 flags |= Layer::eVisibleRegion;
812 }
813
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700814 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800815 // invalidate and recompute the visible regions if needed
816 flags |= eVisibleRegion;
817 this->contentDirty = true;
818
819 // we may use linear filtering, if the matrix scales us
Marissa Wall61c58622018-07-18 10:12:20 -0700820 const uint8_t type = getActiveTransform(c).getType();
Peiyong Linefefaac2018-08-17 12:27:51 -0700821 mNeedsFiltering = (!getActiveTransform(c).preserveRects() || type >= ui::Transform::SCALE);
Mathias Agopian13127d82013-03-05 17:47:11 -0800822 }
823
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800824 if (mCurrentState.inputInfoChanged) {
Robert Carr720e5062018-07-30 17:45:14 -0700825 flags |= eInputInfoChanged;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800826 mCurrentState.inputInfoChanged = false;
Robert Carr720e5062018-07-30 17:45:14 -0700827 }
828
Mathias Agopian13127d82013-03-05 17:47:11 -0800829 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -0700830 commitTransaction(c);
Vishnu Nair8406fd72019-07-30 11:29:31 -0700831 mPendingStatesSnapshot = mPendingStates;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800832 mCurrentState.callbackHandles = {};
Mathias Agopian13127d82013-03-05 17:47:11 -0800833 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800834}
835
Pablo Ceballos05289c22016-04-14 15:49:55 -0700836void Layer::commitTransaction(const State& stateToCommit) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800837 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700838}
839
Mathias Agopian13127d82013-03-05 17:47:11 -0800840uint32_t Layer::getTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800841 return mTransactionFlags.fetch_and(~flags) & flags;
Mathias Agopian13127d82013-03-05 17:47:11 -0800842}
843
844uint32_t Layer::setTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800845 return mTransactionFlags.fetch_or(flags);
Mathias Agopian13127d82013-03-05 17:47:11 -0800846}
847
chaviw214c89d2019-09-04 16:03:53 -0700848bool Layer::setPosition(float x, float y) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800849 if (mCurrentState.requested_legacy.transform.tx() == x &&
850 mCurrentState.requested_legacy.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -0800851 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800852 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -0700853
854 // We update the requested and active position simultaneously because
855 // we want to apply the position portion of the transform matrix immediately,
856 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800857 mCurrentState.requested_legacy.transform.set(x, y);
chaviw214c89d2019-09-04 16:03:53 -0700858 // Here we directly update the active state
859 // unlike other setters, because we store it within
860 // the transform, but use different latching rules.
861 // b/38182305
862 mCurrentState.active_legacy.transform.set(x, y);
Robert Carr69663fb2016-03-27 19:59:19 -0700863
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800864 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800865 setTransactionFlags(eTransactionNeeded);
866 return true;
867}
Robert Carr82364e32016-05-15 11:27:47 -0700868
Robert Carr1f0a16a2016-10-24 16:27:39 -0700869bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
870 ssize_t idx = mCurrentChildren.indexOf(childLayer);
871 if (idx < 0) {
872 return false;
873 }
874 if (childLayer->setLayer(z)) {
875 mCurrentChildren.removeAt(idx);
876 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800877 return true;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700878 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800879 return false;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700880}
881
Robert Carr503c7042017-09-27 15:06:08 -0700882bool Layer::setChildRelativeLayer(const sp<Layer>& childLayer,
883 const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
884 ssize_t idx = mCurrentChildren.indexOf(childLayer);
885 if (idx < 0) {
886 return false;
887 }
888 if (childLayer->setRelativeLayer(relativeToHandle, relativeZ)) {
889 mCurrentChildren.removeAt(idx);
890 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -0800891 return true;
Robert Carr503c7042017-09-27 15:06:08 -0700892 }
Robert Carr503d2bd2017-12-04 15:49:47 -0800893 return false;
Robert Carr503c7042017-09-27 15:06:08 -0700894}
895
Robert Carrae060832016-11-28 10:51:00 -0800896bool Layer::setLayer(int32_t z) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800897 if (mCurrentState.z == z && !usingRelativeZ(LayerVector::StateSet::Current)) return false;
898 mCurrentState.sequence++;
899 mCurrentState.z = z;
900 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700901
902 // Discard all relative layering.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800903 if (mCurrentState.zOrderRelativeOf != nullptr) {
904 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
Robert Carrdb66e622017-04-10 16:55:57 -0700905 if (strongRelative != nullptr) {
906 strongRelative->removeZOrderRelative(this);
907 }
chaviw606e5cf2019-03-01 10:12:10 -0800908 setZOrderRelativeOf(nullptr);
Robert Carrdb66e622017-04-10 16:55:57 -0700909 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800910 setTransactionFlags(eTransactionNeeded);
911 return true;
912}
Robert Carr1f0a16a2016-10-24 16:27:39 -0700913
Robert Carrdb66e622017-04-10 16:55:57 -0700914void Layer::removeZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800915 mCurrentState.zOrderRelatives.remove(relative);
916 mCurrentState.sequence++;
917 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -0700918 setTransactionFlags(eTransactionNeeded);
919}
920
921void Layer::addZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800922 mCurrentState.zOrderRelatives.add(relative);
923 mCurrentState.modified = true;
924 mCurrentState.sequence++;
Robert Carrdb66e622017-04-10 16:55:57 -0700925 setTransactionFlags(eTransactionNeeded);
926}
927
chaviw606e5cf2019-03-01 10:12:10 -0800928void Layer::setZOrderRelativeOf(const wp<Layer>& relativeOf) {
929 mCurrentState.zOrderRelativeOf = relativeOf;
930 mCurrentState.sequence++;
931 mCurrentState.modified = true;
932 setTransactionFlags(eTransactionNeeded);
933}
934
Robert Carr503d2bd2017-12-04 15:49:47 -0800935bool Layer::setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
Robert Carrdb66e622017-04-10 16:55:57 -0700936 sp<Handle> handle = static_cast<Handle*>(relativeToHandle.get());
937 if (handle == nullptr) {
938 return false;
939 }
940 sp<Layer> relative = handle->owner.promote();
941 if (relative == nullptr) {
942 return false;
943 }
944
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800945 if (mCurrentState.z == relativeZ && usingRelativeZ(LayerVector::StateSet::Current) &&
946 mCurrentState.zOrderRelativeOf == relative) {
Robert Carr503d2bd2017-12-04 15:49:47 -0800947 return false;
948 }
949
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800950 mCurrentState.sequence++;
951 mCurrentState.modified = true;
952 mCurrentState.z = relativeZ;
Robert Carrdb66e622017-04-10 16:55:57 -0700953
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800954 auto oldZOrderRelativeOf = mCurrentState.zOrderRelativeOf.promote();
chaviw9ab4bd12017-11-03 13:11:00 -0700955 if (oldZOrderRelativeOf != nullptr) {
956 oldZOrderRelativeOf->removeZOrderRelative(this);
957 }
chaviw606e5cf2019-03-01 10:12:10 -0800958 setZOrderRelativeOf(relative);
Robert Carrdb66e622017-04-10 16:55:57 -0700959 relative->addZOrderRelative(this);
960
961 setTransactionFlags(eTransactionNeeded);
962
963 return true;
964}
965
Mathias Agopian13127d82013-03-05 17:47:11 -0800966bool Layer::setSize(uint32_t w, uint32_t h) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800967 if (mCurrentState.requested_legacy.w == w && mCurrentState.requested_legacy.h == h)
Marissa Wallf58c14b2018-07-24 10:50:43 -0700968 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800969 mCurrentState.requested_legacy.w = w;
970 mCurrentState.requested_legacy.h = h;
971 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800972 setTransactionFlags(eTransactionNeeded);
Vishnu Naird01c4432018-08-13 10:38:47 -0700973
974 // record the new size, from this point on, when the client request
975 // a buffer, it'll get the new size.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800976 setDefaultBufferSize(mCurrentState.requested_legacy.w, mCurrentState.requested_legacy.h);
Mathias Agopian13127d82013-03-05 17:47:11 -0800977 return true;
978}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800979bool Layer::setAlpha(float alpha) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800980 if (mCurrentState.color.a == alpha) return false;
981 mCurrentState.sequence++;
982 mCurrentState.color.a = alpha;
983 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -0800984 setTransactionFlags(eTransactionNeeded);
985 return true;
986}
chaviw13fdc492017-06-27 12:40:18 -0700987
Valerie Haudd0b7572019-01-29 14:59:27 -0800988bool Layer::setBackgroundColor(const half3& color, float alpha, ui::Dataspace dataspace) {
989 if (!mCurrentState.bgColorLayer && alpha == 0) {
chaviw13fdc492017-06-27 12:40:18 -0700990 return false;
Valerie Hauaa194562019-02-05 16:21:38 -0800991 }
992 mCurrentState.sequence++;
993 mCurrentState.modified = true;
994 setTransactionFlags(eTransactionNeeded);
995
996 if (!mCurrentState.bgColorLayer && alpha != 0) {
Valerie Haudd0b7572019-01-29 14:59:27 -0800997 // create background color layer if one does not yet exist
998 uint32_t flags = ISurfaceComposerClient::eFXSurfaceColor;
999 const String8& name = mName + "BackgroundColorLayer";
Evan Roskya1f1e152019-01-24 16:17:46 -08001000 mCurrentState.bgColorLayer = new ColorLayer(
1001 LayerCreationArgs(mFlinger.get(), nullptr, name, 0, 0, flags, LayerMetadata()));
chaviw13fdc492017-06-27 12:40:18 -07001002
Valerie Haudd0b7572019-01-29 14:59:27 -08001003 // add to child list
1004 addChild(mCurrentState.bgColorLayer);
1005 mFlinger->mLayersAdded = true;
1006 // set up SF to handle added color layer
1007 if (isRemovedFromCurrentState()) {
1008 mCurrentState.bgColorLayer->onRemovedFromCurrentState();
1009 }
1010 mFlinger->setTransactionFlags(eTransactionNeeded);
1011 } else if (mCurrentState.bgColorLayer && alpha == 0) {
1012 mCurrentState.bgColorLayer->reparent(nullptr);
1013 mCurrentState.bgColorLayer = nullptr;
1014 return true;
1015 }
1016
1017 mCurrentState.bgColorLayer->setColor(color);
1018 mCurrentState.bgColorLayer->setLayer(std::numeric_limits<int32_t>::min());
1019 mCurrentState.bgColorLayer->setAlpha(alpha);
1020 mCurrentState.bgColorLayer->setDataspace(dataspace);
1021
chaviw13fdc492017-06-27 12:40:18 -07001022 return true;
1023}
1024
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001025bool Layer::setCornerRadius(float cornerRadius) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001026 if (mCurrentState.cornerRadius == cornerRadius) return false;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001027
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001028 mCurrentState.sequence++;
1029 mCurrentState.cornerRadius = cornerRadius;
1030 mCurrentState.modified = true;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001031 setTransactionFlags(eTransactionNeeded);
1032 return true;
1033}
1034
Robert Carrd4ae7f32018-06-07 16:10:57 -07001035bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix,
1036 bool allowNonRectPreservingTransforms) {
Peiyong Linefefaac2018-08-17 12:27:51 -07001037 ui::Transform t;
Robert Carrd4ae7f32018-06-07 16:10:57 -07001038 t.set(matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
1039
1040 if (!allowNonRectPreservingTransforms && !t.preserveRects()) {
1041 ALOGW("Attempt to set rotation matrix without permission ACCESS_SURFACE_FLINGER ignored");
1042 return false;
1043 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001044 mCurrentState.sequence++;
1045 mCurrentState.requested_legacy.transform.set(matrix.dsdx, matrix.dtdy, matrix.dtdx,
1046 matrix.dsdy);
1047 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001048 setTransactionFlags(eTransactionNeeded);
1049 return true;
1050}
Marissa Wall61c58622018-07-18 10:12:20 -07001051
Mathias Agopian13127d82013-03-05 17:47:11 -08001052bool Layer::setTransparentRegionHint(const Region& transparent) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001053 mCurrentState.requestedTransparentRegion_legacy = transparent;
1054 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001055 setTransactionFlags(eTransactionNeeded);
1056 return true;
1057}
1058bool Layer::setFlags(uint8_t flags, uint8_t mask) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001059 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1060 if (mCurrentState.flags == newFlags) return false;
1061 mCurrentState.sequence++;
1062 mCurrentState.flags = newFlags;
1063 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001064 setTransactionFlags(eTransactionNeeded);
1065 return true;
1066}
Robert Carr99e27f02016-06-16 15:18:02 -07001067
chaviw214c89d2019-09-04 16:03:53 -07001068bool Layer::setCrop_legacy(const Rect& crop) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001069 if (mCurrentState.requestedCrop_legacy == crop) return false;
1070 mCurrentState.sequence++;
1071 mCurrentState.requestedCrop_legacy = crop;
chaviw214c89d2019-09-04 16:03:53 -07001072 mCurrentState.crop_legacy = crop;
Robert Carr7bf247e2017-05-18 14:02:49 -07001073
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001074 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001075 setTransactionFlags(eTransactionNeeded);
1076 return true;
1077}
Robert Carr8d5227b2017-03-16 15:41:03 -07001078
Robert Carrc3574f72016-03-24 12:19:32 -07001079bool Layer::setOverrideScalingMode(int32_t scalingMode) {
David Sodman41fdfc92017-11-06 16:09:56 -08001080 if (scalingMode == mOverrideScalingMode) return false;
Robert Carrc3574f72016-03-24 12:19:32 -07001081 mOverrideScalingMode = scalingMode;
Robert Carr82364e32016-05-15 11:27:47 -07001082 setTransactionFlags(eTransactionNeeded);
Robert Carrc3574f72016-03-24 12:19:32 -07001083 return true;
1084}
1085
Evan Roskyef876c92019-01-25 17:46:06 -08001086bool Layer::setMetadata(const LayerMetadata& data) {
1087 if (!mCurrentState.metadata.merge(data, true /* eraseEmpty */)) return false;
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001088 mCurrentState.sequence++;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001089 mCurrentState.modified = true;
David Sodman41fdfc92017-11-06 16:09:56 -08001090 setTransactionFlags(eTransactionNeeded);
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001091 return true;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001092}
1093
Mathias Agopian13127d82013-03-05 17:47:11 -08001094bool Layer::setLayerStack(uint32_t layerStack) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001095 if (mCurrentState.layerStack == layerStack) return false;
1096 mCurrentState.sequence++;
1097 mCurrentState.layerStack = layerStack;
1098 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001099 setTransactionFlags(eTransactionNeeded);
1100 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001101}
1102
Peiyong Linc502cb72019-03-01 15:00:23 -08001103bool Layer::setColorSpaceAgnostic(const bool agnostic) {
1104 if (mCurrentState.colorSpaceAgnostic == agnostic) {
1105 return false;
1106 }
1107 mCurrentState.sequence++;
1108 mCurrentState.colorSpaceAgnostic = agnostic;
1109 mCurrentState.modified = true;
1110 setTransactionFlags(eTransactionNeeded);
1111 return true;
1112}
1113
Robert Carr1f0a16a2016-10-24 16:27:39 -07001114uint32_t Layer::getLayerStack() const {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001115 auto p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001116 if (p == nullptr) {
1117 return getDrawingState().layerStack;
1118 }
1119 return p->getLayerStack();
1120}
1121
Marissa Wallf58c14b2018-07-24 10:50:43 -07001122void Layer::deferTransactionUntil_legacy(const sp<Layer>& barrierLayer, uint64_t frameNumber) {
Alec Mourie60041e2019-06-14 18:59:51 -07001123 ATRACE_CALL();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001124 mCurrentState.barrierLayer_legacy = barrierLayer;
1125 mCurrentState.frameNumber_legacy = frameNumber;
Dan Stoza7dde5992015-05-22 09:51:44 -07001126 // We don't set eTransactionNeeded, because just receiving a deferral
1127 // request without any other state updates shouldn't actually induce a delay
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001128 mCurrentState.modified = true;
1129 pushPendingState();
1130 mCurrentState.barrierLayer_legacy = nullptr;
1131 mCurrentState.frameNumber_legacy = 0;
1132 mCurrentState.modified = false;
Robert Carr0d480722017-01-10 16:42:54 -08001133}
1134
Marissa Wallf58c14b2018-07-24 10:50:43 -07001135void Layer::deferTransactionUntil_legacy(const sp<IBinder>& barrierHandle, uint64_t frameNumber) {
Robert Carr0d480722017-01-10 16:42:54 -08001136 sp<Handle> handle = static_cast<Handle*>(barrierHandle.get());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001137 deferTransactionUntil_legacy(handle->owner.promote(), frameNumber);
Dan Stoza7dde5992015-05-22 09:51:44 -07001138}
1139
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001140// ----------------------------------------------------------------------------
1141// pageflip handling...
1142// ----------------------------------------------------------------------------
1143
Robert Carr1f0a16a2016-10-24 16:27:39 -07001144bool Layer::isHiddenByPolicy() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001145 const State& s(mDrawingState);
Chia-I Wue41dbe62017-06-13 14:10:56 -07001146 const auto& parent = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001147 if (parent != nullptr && parent->isHiddenByPolicy()) {
1148 return true;
1149 }
Robert Carr1c5481e2019-07-01 14:42:27 -07001150 if (usingRelativeZ(LayerVector::StateSet::Drawing)) {
1151 auto zOrderRelativeOf = mDrawingState.zOrderRelativeOf.promote();
1152 if (zOrderRelativeOf != nullptr) {
1153 if (zOrderRelativeOf->isHiddenByPolicy()) {
1154 return true;
1155 }
1156 }
1157 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001158 return s.flags & layer_state_t::eLayerHidden;
1159}
1160
David Sodman41fdfc92017-11-06 16:09:56 -08001161uint32_t Layer::getEffectiveUsage(uint32_t usage) const {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001162 // TODO: should we do something special if mSecure is set?
1163 if (mProtectedByApp) {
1164 // need a hardware-protected path to external video sink
1165 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07001166 }
Riley Andrews03414a12014-07-01 14:22:59 -07001167 if (mPotentialCursor) {
1168 usage |= GraphicBuffer::USAGE_CURSOR;
1169 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07001170 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001171 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001172}
1173
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001174void Layer::updateTransformHint(const sp<const DisplayDevice>& display) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07001175 uint32_t orientation = 0;
Vishnu Nair5eb3f062019-04-08 08:21:03 -07001176 // Disable setting transform hint if the debug flag is set.
1177 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08001178 // The transform hint is used to improve performance, but we can
1179 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07001180 // apply to all displays.
Peiyong Linefefaac2018-08-17 12:27:51 -07001181 const ui::Transform& planeTransform = display->getTransform();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001182 orientation = planeTransform.getOrientation();
Peiyong Linefefaac2018-08-17 12:27:51 -07001183 if (orientation & ui::Transform::ROT_INVALID) {
Mathias Agopiana4583642011-08-23 18:03:18 -07001184 orientation = 0;
1185 }
1186 }
David Sodmaneb085e02017-10-05 18:49:04 -07001187 setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07001188}
1189
Mathias Agopian13127d82013-03-05 17:47:11 -08001190// ----------------------------------------------------------------------------
1191// debugging
1192// ----------------------------------------------------------------------------
1193
Marissa Wall61c58622018-07-18 10:12:20 -07001194// TODO(marissaw): add new layer state info to layer debugging
Kalle Raitaa099a242017-01-11 11:17:29 -08001195LayerDebugInfo Layer::getLayerDebugInfo() const {
1196 LayerDebugInfo info;
Alec Mourib416efd2018-09-06 21:01:59 +00001197 const State& ds = getDrawingState();
Kalle Raitaa099a242017-01-11 11:17:29 -08001198 info.mName = getName();
chaviw1acbec72017-07-27 15:28:26 -07001199 sp<Layer> parent = getParent();
Kalle Raitaa099a242017-01-11 11:17:29 -08001200 info.mParentName = (parent == nullptr ? std::string("none") : parent->getName().string());
chaviw8a01fa42019-08-19 12:39:31 -07001201 info.mType = getType();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001202 info.mTransparentRegion = ds.activeTransparentRegion_legacy;
Kalle Raitaa099a242017-01-11 11:17:29 -08001203 info.mVisibleRegion = visibleRegion;
1204 info.mSurfaceDamageRegion = surfaceDamageRegion;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001205 info.mLayerStack = getLayerStack();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001206 info.mX = ds.active_legacy.transform.tx();
1207 info.mY = ds.active_legacy.transform.ty();
Kalle Raitaa099a242017-01-11 11:17:29 -08001208 info.mZ = ds.z;
Marissa Wallf58c14b2018-07-24 10:50:43 -07001209 info.mWidth = ds.active_legacy.w;
1210 info.mHeight = ds.active_legacy.h;
1211 info.mCrop = ds.crop_legacy;
chaviw13fdc492017-06-27 12:40:18 -07001212 info.mColor = ds.color;
Kalle Raitaa099a242017-01-11 11:17:29 -08001213 info.mFlags = ds.flags;
1214 info.mPixelFormat = getPixelFormat();
Chia-I Wu01591c92018-05-22 12:03:00 -07001215 info.mDataSpace = static_cast<android_dataspace>(mCurrentDataSpace);
Marissa Wallf58c14b2018-07-24 10:50:43 -07001216 info.mMatrix[0][0] = ds.active_legacy.transform[0][0];
1217 info.mMatrix[0][1] = ds.active_legacy.transform[0][1];
1218 info.mMatrix[1][0] = ds.active_legacy.transform[1][0];
1219 info.mMatrix[1][1] = ds.active_legacy.transform[1][1];
Kalle Raitaa099a242017-01-11 11:17:29 -08001220 {
David Sodman0cf8f8d2017-12-20 18:19:45 -08001221 sp<const GraphicBuffer> buffer = mActiveBuffer;
David Sodman5b4cffc2017-11-23 13:20:29 -08001222 if (buffer != 0) {
1223 info.mActiveBufferWidth = buffer->getWidth();
1224 info.mActiveBufferHeight = buffer->getHeight();
1225 info.mActiveBufferStride = buffer->getStride();
1226 info.mActiveBufferFormat = buffer->format;
Kalle Raitaa099a242017-01-11 11:17:29 -08001227 } else {
1228 info.mActiveBufferWidth = 0;
1229 info.mActiveBufferHeight = 0;
1230 info.mActiveBufferStride = 0;
1231 info.mActiveBufferFormat = 0;
1232 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001233 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001234 info.mNumQueuedFrames = getQueuedFrameCount();
1235 info.mRefreshPending = isBufferLatched();
1236 info.mIsOpaque = isOpaque(ds);
1237 info.mContentDirty = contentDirty;
1238 return info;
Mathias Agopian13127d82013-03-05 17:47:11 -08001239}
Chia-I Wu83ce7c12017-10-19 15:18:55 -07001240
Yiwei Zhang5434a782018-12-05 18:06:32 -08001241void Layer::miniDumpHeader(std::string& result) {
Yichi Chen6ca35192018-05-29 12:20:43 +08001242 result.append("-------------------------------");
1243 result.append("-------------------------------");
1244 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001245 result.append(" Layer name\n");
1246 result.append(" Z | ");
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001247 result.append(" Window Type | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001248 result.append(" Comp Type | ");
Yichi Chen6ca35192018-05-29 12:20:43 +08001249 result.append(" Transform | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001250 result.append(" Disp Frame (LTRB) | ");
1251 result.append(" Source Crop (LTRB)\n");
Yichi Chen6ca35192018-05-29 12:20:43 +08001252 result.append("-------------------------------");
1253 result.append("-------------------------------");
1254 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001255}
1256
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001257void Layer::miniDump(std::string& result, const sp<DisplayDevice>& displayDevice) const {
1258 auto outputLayer = findOutputLayerForDisplay(displayDevice);
1259 if (!outputLayer) {
Dan Stozae22aec72016-08-01 13:20:59 -07001260 return;
1261 }
1262
Yiwei Zhang5434a782018-12-05 18:06:32 -08001263 std::string name;
Dan Stozae22aec72016-08-01 13:20:59 -07001264 if (mName.length() > 77) {
1265 std::string shortened;
1266 shortened.append(mName.string(), 36);
1267 shortened.append("[...]");
1268 shortened.append(mName.string() + (mName.length() - 36), 36);
Yiwei Zhang5434a782018-12-05 18:06:32 -08001269 name = shortened;
Dan Stozae22aec72016-08-01 13:20:59 -07001270 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001271 name = std::string(mName.string(), mName.size());
Dan Stozae22aec72016-08-01 13:20:59 -07001272 }
1273
Yiwei Zhang5434a782018-12-05 18:06:32 -08001274 StringAppendF(&result, " %s\n", name.c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07001275
Alec Mourib416efd2018-09-06 21:01:59 +00001276 const State& layerState(getDrawingState());
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001277 const auto& compositionState = outputLayer->getState();
1278
Chia-I Wu1e043612018-03-01 09:45:09 -08001279 if (layerState.zOrderRelativeOf != nullptr || mDrawingParent != nullptr) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001280 StringAppendF(&result, " rel %6d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001281 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001282 StringAppendF(&result, " %10d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001283 }
Ady Abraham8f1ee7f2019-04-05 10:32:50 -07001284 StringAppendF(&result, " %10d | ", mWindowType);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001285 StringAppendF(&result, "%10s | ", toString(getCompositionType(displayDevice)).c_str());
1286 StringAppendF(&result, "%10s | ",
1287 toString(getCompositionLayer() ? compositionState.bufferTransform
1288 : static_cast<Hwc2::Transform>(0))
1289 .c_str());
1290 const Rect& frame = compositionState.displayFrame;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001291 StringAppendF(&result, "%4d %4d %4d %4d | ", frame.left, frame.top, frame.right, frame.bottom);
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001292 const FloatRect& crop = compositionState.sourceCrop;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001293 StringAppendF(&result, "%6.1f %6.1f %6.1f %6.1f\n", crop.left, crop.top, crop.right,
1294 crop.bottom);
Dan Stozae22aec72016-08-01 13:20:59 -07001295
Yichi Chen6ca35192018-05-29 12:20:43 +08001296 result.append("- - - - - - - - - - - - - - - -");
1297 result.append("- - - - - - - - - - - - - - - -");
1298 result.append("- - - - - - - - - - - - - - -\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001299}
Dan Stozae22aec72016-08-01 13:20:59 -07001300
Yiwei Zhang5434a782018-12-05 18:06:32 -08001301void Layer::dumpFrameStats(std::string& result) const {
Svetoslavd85084b2014-03-20 10:28:31 -07001302 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08001303}
1304
Svetoslavd85084b2014-03-20 10:28:31 -07001305void Layer::clearFrameStats() {
1306 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08001307}
1308
Jamie Gennis6547ff42013-07-16 20:12:42 -07001309void Layer::logFrameStats() {
1310 mFrameTracker.logAndResetStats(mName);
1311}
1312
Svetoslavd85084b2014-03-20 10:28:31 -07001313void Layer::getFrameStats(FrameStats* outStats) const {
1314 mFrameTracker.getStats(outStats);
1315}
1316
Yiwei Zhang5434a782018-12-05 18:06:32 -08001317void Layer::dumpFrameEvents(std::string& result) {
chaviw8a01fa42019-08-19 12:39:31 -07001318 StringAppendF(&result, "- Layer %s (%s, %p)\n", getName().string(), getType(), this);
Brian Andersond6927fb2016-07-23 23:37:30 -07001319 Mutex::Autolock lock(mFrameEventHistoryMutex);
1320 mFrameEventHistory.checkFencesForCompletion();
1321 mFrameEventHistory.dump(result);
1322}
Pablo Ceballos40845df2016-01-25 17:41:15 -08001323
Brian Anderson5ea5e592016-12-01 16:54:33 -08001324void Layer::onDisconnect() {
1325 Mutex::Autolock lock(mFrameEventHistoryMutex);
1326 mFrameEventHistory.onDisconnect();
Yiwei Zhangaf8ee942018-11-22 00:15:23 -08001327 mFlinger->mTimeStats->onDestroy(getSequence());
Brian Anderson5ea5e592016-12-01 16:54:33 -08001328}
1329
Brian Anderson3890c392016-07-25 12:48:08 -07001330void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
David Sodman41fdfc92017-11-06 16:09:56 -08001331 FrameEventHistoryDelta* outDelta) {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001332 if (newTimestamps) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001333 mFlinger->mTimeStats->setPostTime(getSequence(), newTimestamps->frameNumber,
1334 getName().c_str(), newTimestamps->postedTime);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001335 }
1336
Brian Andersond6927fb2016-07-23 23:37:30 -07001337 Mutex::Autolock lock(mFrameEventHistoryMutex);
1338 if (newTimestamps) {
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001339 // If there are any unsignaled fences in the aquire timeline at this
1340 // point, the previously queued frame hasn't been latched yet. Go ahead
1341 // and try to get the signal time here so the syscall is taken out of
1342 // the main thread's critical path.
1343 mAcquireTimeline.updateSignalTimes();
1344 // Push the new fence after updating since it's likely still pending.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001345 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07001346 mFrameEventHistory.addQueue(*newTimestamps);
1347 }
1348
Brian Anderson3890c392016-07-25 12:48:08 -07001349 if (outDelta) {
1350 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001351 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08001352}
Dan Stozae77c7662016-05-13 11:37:28 -07001353
Chia-I Wu98f1c102017-05-30 14:54:08 -07001354size_t Layer::getChildrenCount() const {
1355 size_t count = 0;
1356 for (const sp<Layer>& child : mCurrentChildren) {
1357 count += 1 + child->getChildrenCount();
1358 }
1359 return count;
1360}
1361
Robert Carr1f0a16a2016-10-24 16:27:39 -07001362void Layer::addChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001363 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001364 setTransactionFlags(eTransactionNeeded);
Robert Carr1323c952019-01-28 18:13:27 -08001365
Robert Carr1f0a16a2016-10-24 16:27:39 -07001366 mCurrentChildren.add(layer);
1367 layer->setParent(this);
1368}
1369
1370ssize_t Layer::removeChild(const sp<Layer>& layer) {
Robert Carr1323c952019-01-28 18:13:27 -08001371 mChildrenChanged = true;
Robert Carr7f2ed8b2019-02-07 14:45:11 -08001372 setTransactionFlags(eTransactionNeeded);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001373
Robert Carr1323c952019-01-28 18:13:27 -08001374 layer->setParent(nullptr);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001375 return mCurrentChildren.remove(layer);
1376}
1377
Robert Carr1db73f62016-12-21 12:58:51 -08001378bool Layer::reparentChildren(const sp<IBinder>& newParentHandle) {
1379 sp<Handle> handle = nullptr;
1380 sp<Layer> newParent = nullptr;
1381 if (newParentHandle == nullptr) {
1382 return false;
1383 }
1384 handle = static_cast<Handle*>(newParentHandle.get());
1385 newParent = handle->owner.promote();
1386 if (newParent == nullptr) {
1387 ALOGE("Unable to promote Layer handle");
1388 return false;
1389 }
1390
chaviw5aedec92018-10-22 10:40:38 -07001391 if (attachChildren()) {
1392 setTransactionFlags(eTransactionNeeded);
1393 }
Robert Carr1db73f62016-12-21 12:58:51 -08001394 for (const sp<Layer>& child : mCurrentChildren) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001395 newParent->addChild(child);
Robert Carr1db73f62016-12-21 12:58:51 -08001396 }
1397 mCurrentChildren.clear();
1398
1399 return true;
1400}
1401
Robert Carr15eae092018-03-23 13:43:53 -07001402void Layer::setChildrenDrawingParent(const sp<Layer>& newParent) {
Robert Carr578038f2018-03-09 12:25:24 -08001403 for (const sp<Layer>& child : mDrawingChildren) {
1404 child->mDrawingParent = newParent;
Vishnu Nairc652ff82019-03-15 12:48:54 -07001405 child->computeBounds(newParent->mBounds,
1406 newParent->getTransformWithScale(
1407 newParent->getBufferScaleTransform()));
Robert Carr578038f2018-03-09 12:25:24 -08001408 }
1409}
1410
chaviwf1961f72017-09-18 16:41:07 -07001411bool Layer::reparent(const sp<IBinder>& newParentHandle) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001412 bool callSetTransactionFlags = false;
chaviw06178942017-07-27 10:25:59 -07001413
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001414 // While layers are detached, we allow most operations
1415 // and simply halt performing the actual transaction. However
1416 // for reparent != null we would enter the mRemovedFromCurrentState
1417 // state, regardless of whether doTransaction was called, and
1418 // so we need to prevent the update here.
1419 if (mLayerDetached && newParentHandle == nullptr) {
chaviw06178942017-07-27 10:25:59 -07001420 return false;
1421 }
1422
Robert Carr54cf5b12019-01-25 14:02:28 -08001423 sp<Layer> newParent;
1424 if (newParentHandle != nullptr) {
1425 auto handle = static_cast<Handle*>(newParentHandle.get());
1426 newParent = handle->owner.promote();
1427 if (newParent == nullptr) {
1428 ALOGE("Unable to promote Layer handle");
1429 return false;
1430 }
1431 if (newParent == this) {
1432 ALOGE("Invalid attempt to reparent Layer (%s) to itself", getName().c_str());
1433 return false;
1434 }
1435 }
1436
chaviwf1961f72017-09-18 16:41:07 -07001437 sp<Layer> parent = getParent();
1438 if (parent != nullptr) {
1439 parent->removeChild(this);
chaviw06178942017-07-27 10:25:59 -07001440 }
1441
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001442 if (newParentHandle != nullptr) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001443 newParent->addChild(this);
1444 if (!newParent->isRemovedFromCurrentState()) {
1445 addToCurrentState();
1446 } else {
1447 onRemovedFromCurrentState();
1448 }
1449
1450 if (mLayerDetached) {
1451 mLayerDetached = false;
1452 callSetTransactionFlags = true;
1453 }
1454 } else {
1455 onRemovedFromCurrentState();
chaviw61626f22018-11-15 16:26:27 -08001456 }
1457
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001458 if (callSetTransactionFlags || attachChildren()) {
chaviw5aedec92018-10-22 10:40:38 -07001459 setTransactionFlags(eTransactionNeeded);
1460 }
chaviw06178942017-07-27 10:25:59 -07001461 return true;
1462}
1463
Robert Carr9524cb32017-02-13 11:32:32 -08001464bool Layer::detachChildren() {
Robert Carr7f619b22017-11-06 12:56:35 -08001465 for (const sp<Layer>& child : mCurrentChildren) {
chaviw161410b02017-07-27 10:46:08 -07001466 sp<Client> parentClient = mClientRef.promote();
Robert Carr9524cb32017-02-13 11:32:32 -08001467 sp<Client> client(child->mClientRef.promote());
chaviw161410b02017-07-27 10:46:08 -07001468 if (client != nullptr && parentClient != client) {
chaviw5aedec92018-10-22 10:40:38 -07001469 child->mLayerDetached = true;
Robert Carr7f619b22017-11-06 12:56:35 -08001470 child->detachChildren();
chaviw43cb3cb2019-05-31 15:23:41 -07001471 child->removeRemoteSyncPoints();
Robert Carr9524cb32017-02-13 11:32:32 -08001472 }
Robert Carr7f619b22017-11-06 12:56:35 -08001473 }
Robert Carr9524cb32017-02-13 11:32:32 -08001474
1475 return true;
1476}
1477
chaviw5aedec92018-10-22 10:40:38 -07001478bool Layer::attachChildren() {
1479 bool changed = false;
1480 for (const sp<Layer>& child : mCurrentChildren) {
1481 sp<Client> parentClient = mClientRef.promote();
1482 sp<Client> client(child->mClientRef.promote());
1483 if (client != nullptr && parentClient != client) {
1484 if (child->mLayerDetached) {
1485 child->mLayerDetached = false;
1486 changed = true;
1487 }
1488 changed |= child->attachChildren();
1489 }
1490 }
1491
1492 return changed;
1493}
1494
Peiyong Lind3788632018-09-18 16:01:31 -07001495bool Layer::setColorTransform(const mat4& matrix) {
Peiyong Lin747321c2018-10-01 10:03:11 -07001496 static const mat4 identityMatrix = mat4();
1497
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001498 if (mCurrentState.colorTransform == matrix) {
Peiyong Lind3788632018-09-18 16:01:31 -07001499 return false;
1500 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001501 ++mCurrentState.sequence;
1502 mCurrentState.colorTransform = matrix;
1503 mCurrentState.hasColorTransform = matrix != identityMatrix;
1504 mCurrentState.modified = true;
Peiyong Lind3788632018-09-18 16:01:31 -07001505 setTransactionFlags(eTransactionNeeded);
1506 return true;
1507}
1508
chaviwf66724d2018-11-28 16:35:21 -08001509mat4 Layer::getColorTransform() const {
1510 mat4 colorTransform = mat4(getDrawingState().colorTransform);
1511 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1512 colorTransform = parent->getColorTransform() * colorTransform;
1513 }
1514 return colorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001515}
1516
1517bool Layer::hasColorTransform() const {
chaviwf66724d2018-11-28 16:35:21 -08001518 bool hasColorTransform = getDrawingState().hasColorTransform;
1519 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1520 hasColorTransform = hasColorTransform || parent->hasColorTransform();
1521 }
1522 return hasColorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001523}
1524
Chia-I Wu11481472018-05-04 10:43:19 -07001525bool Layer::isLegacyDataSpace() const {
1526 // return true when no higher bits are set
Chia-I Wu01591c92018-05-22 12:03:00 -07001527 return !(mCurrentDataSpace & (ui::Dataspace::STANDARD_MASK |
Chia-I Wu11481472018-05-04 10:43:19 -07001528 ui::Dataspace::TRANSFER_MASK | ui::Dataspace::RANGE_MASK));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08001529}
1530
Robert Carr1f0a16a2016-10-24 16:27:39 -07001531void Layer::setParent(const sp<Layer>& layer) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001532 mCurrentParent = layer;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001533}
1534
Robert Carr1f0a16a2016-10-24 16:27:39 -07001535int32_t Layer::getZ() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001536 return mDrawingState.z;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001537}
1538
Robert Carr1c5481e2019-07-01 14:42:27 -07001539bool Layer::usingRelativeZ(LayerVector::StateSet stateSet) const {
Robert Carr29abff82017-12-04 13:51:20 -08001540 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001541 const State& state = useDrawing ? mDrawingState : mCurrentState;
Robert Carr29abff82017-12-04 13:51:20 -08001542 return state.zOrderRelativeOf != nullptr;
1543}
1544
David Sodman41fdfc92017-11-06 16:09:56 -08001545__attribute__((no_sanitize("unsigned-integer-overflow"))) LayerVector Layer::makeTraversalList(
Robert Carr29abff82017-12-04 13:51:20 -08001546 LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers) {
Dan Stoza412903f2017-04-27 13:42:17 -07001547 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1548 "makeTraversalList received invalid stateSet");
1549 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1550 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001551 const State& state = useDrawing ? mDrawingState : mCurrentState;
Dan Stoza412903f2017-04-27 13:42:17 -07001552
Robert Carr29abff82017-12-04 13:51:20 -08001553 if (state.zOrderRelatives.size() == 0) {
1554 *outSkipRelativeZUsers = true;
1555 return children;
1556 }
1557
chaviwfd462612018-05-31 16:11:27 -07001558 LayerVector traverse(stateSet);
Dan Stoza412903f2017-04-27 13:42:17 -07001559 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
Robert Carrdb66e622017-04-10 16:55:57 -07001560 sp<Layer> strongRelative = weakRelative.promote();
1561 if (strongRelative != nullptr) {
1562 traverse.add(strongRelative);
Robert Carrdb66e622017-04-10 16:55:57 -07001563 }
1564 }
1565
Dan Stoza412903f2017-04-27 13:42:17 -07001566 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001567 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
Robert Carr503c7042017-09-27 15:06:08 -07001568 if (childState.zOrderRelativeOf != nullptr) {
1569 continue;
1570 }
Robert Carrdb66e622017-04-10 16:55:57 -07001571 traverse.add(child);
1572 }
1573
1574 return traverse;
1575}
1576
Robert Carr1f0a16a2016-10-24 16:27:39 -07001577/**
Robert Carrdb66e622017-04-10 16:55:57 -07001578 * Negatively signed relatives are before 'this' in Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001579 */
Dan Stoza412903f2017-04-27 13:42:17 -07001580void Layer::traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001581 // In the case we have other layers who are using a relative Z to us, makeTraversalList will
1582 // produce a new list for traversing, including our relatives, and not including our children
1583 // who are relatives of another surface. In the case that there are no relative Z,
1584 // makeTraversalList returns our children directly to avoid significant overhead.
1585 // However in this case we need to take the responsibility for filtering children which
1586 // are relatives of another surface here.
1587 bool skipRelativeZUsers = false;
1588 const LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001589
Robert Carr1f0a16a2016-10-24 16:27:39 -07001590 size_t i = 0;
Robert Carrdb66e622017-04-10 16:55:57 -07001591 for (; i < list.size(); i++) {
1592 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001593 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1594 continue;
1595 }
1596
Robert Carrdb66e622017-04-10 16:55:57 -07001597 if (relative->getZ() >= 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001598 break;
Robert Carrdb66e622017-04-10 16:55:57 -07001599 }
Dan Stoza412903f2017-04-27 13:42:17 -07001600 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001601 }
Robert Carr29abff82017-12-04 13:51:20 -08001602
Dan Stoza412903f2017-04-27 13:42:17 -07001603 visitor(this);
Robert Carrdb66e622017-04-10 16:55:57 -07001604 for (; i < list.size(); i++) {
1605 const auto& relative = list[i];
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001606
Robert Carr29abff82017-12-04 13:51:20 -08001607 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1608 continue;
1609 }
Dan Stoza412903f2017-04-27 13:42:17 -07001610 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001611 }
1612}
1613
1614/**
Robert Carrdb66e622017-04-10 16:55:57 -07001615 * Positively signed relatives are before 'this' in reverse Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001616 */
Dan Stoza412903f2017-04-27 13:42:17 -07001617void Layer::traverseInReverseZOrder(LayerVector::StateSet stateSet,
1618 const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001619 // See traverseInZOrder for documentation.
1620 bool skipRelativeZUsers = false;
1621 LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001622
Robert Carr1f0a16a2016-10-24 16:27:39 -07001623 int32_t i = 0;
Joel Galensonbf324992017-11-06 11:04:12 -08001624 for (i = int32_t(list.size()) - 1; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001625 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001626
1627 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1628 continue;
1629 }
1630
Robert Carrdb66e622017-04-10 16:55:57 -07001631 if (relative->getZ() < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001632 break;
1633 }
Dan Stoza412903f2017-04-27 13:42:17 -07001634 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001635 }
Dan Stoza412903f2017-04-27 13:42:17 -07001636 visitor(this);
David Sodman41fdfc92017-11-06 16:09:56 -08001637 for (; 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
Dan Stoza412903f2017-04-27 13:42:17 -07001644 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001645 }
1646}
1647
chaviw4b129c22018-04-09 16:19:43 -07001648LayerVector Layer::makeChildrenTraversalList(LayerVector::StateSet stateSet,
1649 const std::vector<Layer*>& layersInTree) {
1650 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1651 "makeTraversalList received invalid stateSet");
chaviwa76b2712017-09-20 12:02:26 -07001652 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1653 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001654 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001655
chaviwfd462612018-05-31 16:11:27 -07001656 LayerVector traverse(stateSet);
chaviw4b129c22018-04-09 16:19:43 -07001657 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1658 sp<Layer> strongRelative = weakRelative.promote();
1659 // Only add relative layers that are also descendents of the top most parent of the tree.
1660 // If a relative layer is not a descendent, then it should be ignored.
1661 if (std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
1662 traverse.add(strongRelative);
1663 }
1664 }
1665
1666 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001667 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001668 // If a layer has a relativeOf layer, only ignore if the layer it's relative to is a
1669 // descendent of the top most parent of the tree. If it's not a descendent, then just add
1670 // the child here since it won't be added later as a relative.
1671 if (std::binary_search(layersInTree.begin(), layersInTree.end(),
1672 childState.zOrderRelativeOf.promote().get())) {
1673 continue;
1674 }
1675 traverse.add(child);
1676 }
1677
1678 return traverse;
1679}
1680
1681void Layer::traverseChildrenInZOrderInner(const std::vector<Layer*>& layersInTree,
1682 LayerVector::StateSet stateSet,
1683 const LayerVector::Visitor& visitor) {
1684 const LayerVector list = makeChildrenTraversalList(stateSet, layersInTree);
chaviwa76b2712017-09-20 12:02:26 -07001685
1686 size_t i = 0;
chaviw4b129c22018-04-09 16:19:43 -07001687 for (; i < list.size(); i++) {
1688 const auto& relative = list[i];
chaviwa76b2712017-09-20 12:02:26 -07001689 if (relative->getZ() >= 0) {
1690 break;
1691 }
chaviw4b129c22018-04-09 16:19:43 -07001692 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001693 }
chaviw4b129c22018-04-09 16:19:43 -07001694
chaviwa76b2712017-09-20 12:02:26 -07001695 visitor(this);
chaviw4b129c22018-04-09 16:19:43 -07001696 for (; i < list.size(); i++) {
1697 const auto& relative = list[i];
1698 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001699 }
1700}
1701
chaviw4b129c22018-04-09 16:19:43 -07001702std::vector<Layer*> Layer::getLayersInTree(LayerVector::StateSet stateSet) {
1703 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1704 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
1705
1706 std::vector<Layer*> layersInTree = {this};
1707 for (size_t i = 0; i < children.size(); i++) {
1708 const auto& child = children[i];
1709 std::vector<Layer*> childLayers = child->getLayersInTree(stateSet);
1710 layersInTree.insert(layersInTree.end(), childLayers.cbegin(), childLayers.cend());
1711 }
1712
1713 return layersInTree;
1714}
1715
1716void Layer::traverseChildrenInZOrder(LayerVector::StateSet stateSet,
1717 const LayerVector::Visitor& visitor) {
1718 std::vector<Layer*> layersInTree = getLayersInTree(stateSet);
1719 std::sort(layersInTree.begin(), layersInTree.end());
1720 traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
1721}
1722
Peiyong Linefefaac2018-08-17 12:27:51 -07001723ui::Transform Layer::getTransform() const {
Vishnu Nairf0c28512019-02-08 12:40:28 -08001724 return mEffectiveTransform;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001725}
1726
chaviw13fdc492017-06-27 12:40:18 -07001727half Layer::getAlpha() const {
Ady Abraham83729882018-12-07 12:26:48 -08001728 const auto& p = mDrawingParent.promote();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001729
chaviw13fdc492017-06-27 12:40:18 -07001730 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
1731 return parentAlpha * getDrawingState().color.a;
Robert Carr6452f122017-03-21 10:41:29 -07001732}
Robert Carr6452f122017-03-21 10:41:29 -07001733
chaviw13fdc492017-06-27 12:40:18 -07001734half4 Layer::getColor() const {
1735 const half4 color(getDrawingState().color);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001736 return half4(color.r, color.g, color.b, getAlpha());
Robert Carr6452f122017-03-21 10:41:29 -07001737}
Robert Carr6452f122017-03-21 10:41:29 -07001738
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001739Layer::RoundedCornerState Layer::getRoundedCornerState() const {
1740 const auto& p = mDrawingParent.promote();
1741 if (p != nullptr) {
Peiyong Lin27016a92019-03-29 17:36:08 +00001742 RoundedCornerState parentState = p->getRoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001743 if (parentState.radius > 0) {
1744 ui::Transform t = getActiveTransform(getDrawingState());
1745 t = t.inverse();
1746 parentState.cropRect = t.transform(parentState.cropRect);
1747 // The rounded corners shader only accepts 1 corner radius for performance reasons,
1748 // but a transform matrix can define horizontal and vertical scales.
1749 // Let's take the average between both of them and pass into the shader, practically we
1750 // never do this type of transformation on windows anyway.
1751 parentState.radius *= (t[0][0] + t[1][1]) / 2.0f;
1752 return parentState;
1753 }
1754 }
1755 const float radius = getDrawingState().cornerRadius;
Peiyong Linb9ff23e2019-04-08 11:04:59 -07001756 return radius > 0 && getCrop(getDrawingState()).isValid()
1757 ? RoundedCornerState(getCrop(getDrawingState()).toFloatRect(), radius)
1758 : RoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001759}
1760
Robert Carr1f0a16a2016-10-24 16:27:39 -07001761void Layer::commitChildList() {
1762 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
1763 const auto& child = mCurrentChildren[i];
1764 child->commitChildList();
1765 }
1766 mDrawingChildren = mCurrentChildren;
Chia-I Wue41dbe62017-06-13 14:10:56 -07001767 mDrawingParent = mCurrentParent;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001768}
1769
Vishnu Nair6fabeec2019-03-12 13:42:49 -07001770static wp<Layer> extractLayerFromBinder(const wp<IBinder>& weakBinderHandle) {
1771 if (weakBinderHandle == nullptr) {
1772 return nullptr;
1773 }
1774 sp<IBinder> binderHandle = weakBinderHandle.promote();
1775 if (binderHandle == nullptr) {
1776 return nullptr;
1777 }
1778 sp<Layer::Handle> handle = static_cast<Layer::Handle*>(binderHandle.get());
1779 if (handle == nullptr) {
1780 return nullptr;
1781 }
1782 return handle->owner;
1783}
1784
Robert Carr720e5062018-07-30 17:45:14 -07001785void Layer::setInputInfo(const InputWindowInfo& info) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001786 mCurrentState.inputInfo = info;
Vishnu Nair6fabeec2019-03-12 13:42:49 -07001787 mCurrentState.touchableRegionCrop = extractLayerFromBinder(info.touchableRegionCropHandle);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001788 mCurrentState.modified = true;
1789 mCurrentState.inputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07001790 setTransactionFlags(eTransactionNeeded);
1791}
1792
Vishnu Nair8406fd72019-07-30 11:29:31 -07001793void Layer::writeToProtoDrawingState(LayerProto* layerInfo, uint32_t traceFlags) const {
1794 ui::Transform transform = getTransform();
1795
1796 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
1797 for (const auto& pendingState : mPendingStatesSnapshot) {
1798 auto barrierLayer = pendingState.barrierLayer_legacy.promote();
1799 if (barrierLayer != nullptr) {
1800 BarrierLayerProto* barrierLayerProto = layerInfo->add_barrier_layer();
1801 barrierLayerProto->set_id(barrierLayer->sequence);
1802 barrierLayerProto->set_frame_number(pendingState.frameNumber_legacy);
1803 }
1804 }
1805
1806 auto buffer = mActiveBuffer;
1807 if (buffer != nullptr) {
1808 LayerProtoHelper::writeToProto(buffer,
1809 [&]() { return layerInfo->mutable_active_buffer(); });
1810 LayerProtoHelper::writeToProto(ui::Transform(mCurrentTransform),
1811 layerInfo->mutable_buffer_transform());
1812 }
1813 layerInfo->set_invalidate(contentDirty);
1814 layerInfo->set_is_protected(isProtected());
1815 layerInfo->set_dataspace(
1816 dataspaceDetails(static_cast<android_dataspace>(mCurrentDataSpace)));
1817 layerInfo->set_queued_frames(getQueuedFrameCount());
1818 layerInfo->set_refresh_pending(isBufferLatched());
1819 layerInfo->set_curr_frame(mCurrentFrameNumber);
1820 layerInfo->set_effective_scaling_mode(getEffectiveScalingMode());
1821
1822 layerInfo->set_corner_radius(getRoundedCornerState().radius);
1823 LayerProtoHelper::writeToProto(transform, layerInfo->mutable_transform());
1824 LayerProtoHelper::writePositionToProto(transform.tx(), transform.ty(),
1825 [&]() { return layerInfo->mutable_position(); });
1826 LayerProtoHelper::writeToProto(mBounds, [&]() { return layerInfo->mutable_bounds(); });
1827 LayerProtoHelper::writeToProto(visibleRegion,
1828 [&]() { return layerInfo->mutable_visible_region(); });
1829 LayerProtoHelper::writeToProto(surfaceDamageRegion,
1830 [&]() { return layerInfo->mutable_damage_region(); });
1831 }
1832
1833 if (traceFlags & SurfaceTracing::TRACE_EXTRA) {
1834 LayerProtoHelper::writeToProto(mSourceBounds,
1835 [&]() { return layerInfo->mutable_source_bounds(); });
1836 LayerProtoHelper::writeToProto(mScreenBounds,
1837 [&]() { return layerInfo->mutable_screen_bounds(); });
1838 }
1839}
1840
1841void Layer::writeToProtoCommonState(LayerProto* layerInfo, LayerVector::StateSet stateSet,
1842 uint32_t traceFlags) const {
chaviw1d044282017-09-27 12:19:28 -07001843 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1844 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001845 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw1d044282017-09-27 12:19:28 -07001846
Peiyong Linefefaac2018-08-17 12:27:51 -07001847 ui::Transform requestedTransform = state.active_legacy.transform;
chaviw1d044282017-09-27 12:19:28 -07001848
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001849 if (traceFlags & SurfaceTracing::TRACE_CRITICAL) {
1850 layerInfo->set_id(sequence);
1851 layerInfo->set_name(getName().c_str());
chaviw8a01fa42019-08-19 12:39:31 -07001852 layerInfo->set_type(getType());
chaviw1d044282017-09-27 12:19:28 -07001853
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001854 for (const auto& child : children) {
1855 layerInfo->add_children(child->sequence);
chaviw1d044282017-09-27 12:19:28 -07001856 }
chaviw1d044282017-09-27 12:19:28 -07001857
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001858 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1859 sp<Layer> strongRelative = weakRelative.promote();
1860 if (strongRelative != nullptr) {
1861 layerInfo->add_relatives(strongRelative->sequence);
1862 }
chaviwadc40c22018-07-10 16:57:27 -07001863 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001864
1865 LayerProtoHelper::writeToProto(state.activeTransparentRegion_legacy,
1866 [&]() { return layerInfo->mutable_transparent_region(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001867
1868 layerInfo->set_layer_stack(getLayerStack());
1869 layerInfo->set_z(state.z);
1870
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001871 LayerProtoHelper::writePositionToProto(requestedTransform.tx(), requestedTransform.ty(),
1872 [&]() {
1873 return layerInfo->mutable_requested_position();
1874 });
1875
1876 LayerProtoHelper::writeSizeToProto(state.active_legacy.w, state.active_legacy.h,
1877 [&]() { return layerInfo->mutable_size(); });
1878
1879 LayerProtoHelper::writeToProto(state.crop_legacy,
1880 [&]() { return layerInfo->mutable_crop(); });
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001881
1882 layerInfo->set_is_opaque(isOpaque(state));
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001883
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001884
1885 layerInfo->set_pixel_format(decodePixelFormat(getPixelFormat()));
1886 LayerProtoHelper::writeToProto(getColor(), [&]() { return layerInfo->mutable_color(); });
1887 LayerProtoHelper::writeToProto(state.color,
1888 [&]() { return layerInfo->mutable_requested_color(); });
1889 layerInfo->set_flags(state.flags);
1890
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001891 LayerProtoHelper::writeToProto(requestedTransform,
1892 layerInfo->mutable_requested_transform());
1893
1894 auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
1895 if (parent != nullptr) {
1896 layerInfo->set_parent(parent->sequence);
1897 } else {
1898 layerInfo->set_parent(-1);
1899 }
1900
1901 auto zOrderRelativeOf = state.zOrderRelativeOf.promote();
1902 if (zOrderRelativeOf != nullptr) {
1903 layerInfo->set_z_order_relative_of(zOrderRelativeOf->sequence);
1904 } else {
1905 layerInfo->set_z_order_relative_of(-1);
1906 }
chaviwadc40c22018-07-10 16:57:27 -07001907 }
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001908
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001909 if (traceFlags & SurfaceTracing::TRACE_INPUT) {
1910 LayerProtoHelper::writeToProto(state.inputInfo, state.touchableRegionCrop,
1911 [&]() { return layerInfo->mutable_input_window_info(); });
Evan Rosky1f6d6d52018-12-06 10:47:26 -08001912 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001913
1914 if (traceFlags & SurfaceTracing::TRACE_EXTRA) {
1915 auto protoMap = layerInfo->mutable_metadata();
1916 for (const auto& entry : state.metadata.mMap) {
1917 (*protoMap)[entry.first] = std::string(entry.second.cbegin(), entry.second.cend());
1918 }
Vishnu Nair9245d3b2019-03-22 13:38:56 -07001919 }
chaviw1d044282017-09-27 12:19:28 -07001920}
1921
Robert Carr2e102c92018-10-23 12:11:15 -07001922bool Layer::isRemovedFromCurrentState() const {
1923 return mRemovedFromCurrentState;
1924}
1925
Arthur Hungd20b2702019-01-14 18:16:16 +08001926InputWindowInfo Layer::fillInputInfo() {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001927 InputWindowInfo info = mDrawingState.inputInfo;
Robert Carr720e5062018-07-30 17:45:14 -07001928
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001929 if (info.displayId == ADISPLAY_ID_NONE) {
1930 info.displayId = mDrawingState.layerStack;
1931 }
1932
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001933 ui::Transform t = getTransform();
1934 const float xScale = t.sx();
1935 const float yScale = t.sy();
Ady Abraham282f1d72019-07-24 18:05:56 -07001936 int32_t xSurfaceInset = info.surfaceInset;
1937 int32_t ySurfaceInset = info.surfaceInset;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001938 if (xScale != 1.0f || yScale != 1.0f) {
Ady Abraham282f1d72019-07-24 18:05:56 -07001939 info.windowXScale *= (xScale != 0.0f) ? 1.0f / xScale : 0.0f;
1940 info.windowYScale *= (yScale != 0.0f) ? 1.0f / yScale : 0.0f;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001941 info.touchableRegion.scaleSelf(xScale, yScale);
Ady Abraham282f1d72019-07-24 18:05:56 -07001942 xSurfaceInset = std::round(xSurfaceInset * xScale);
1943 ySurfaceInset = std::round(ySurfaceInset * yScale);
Riddle Hsu39d4aa52018-11-30 20:46:53 +08001944 }
Robert Carre07e1032018-11-26 12:55:53 -08001945
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001946 // Transform layer size to screen space and inset it by surface insets.
Tiger Huang85b8c5e2019-01-17 18:34:54 +08001947 // If this is a portal window, set the touchableRegion to the layerBounds.
1948 Rect layerBounds = info.portalToDisplayId == ADISPLAY_ID_NONE
1949 ? getBufferSize(getDrawingState())
1950 : info.touchableRegion.getBounds();
Arthur Hungd20b2702019-01-14 18:16:16 +08001951 if (!layerBounds.isValid()) {
1952 layerBounds = getCroppedBufferSize(getDrawingState());
1953 }
Vishnu Nair8033a492018-12-05 07:27:23 -08001954 layerBounds = t.transform(layerBounds);
Ady Abraham282f1d72019-07-24 18:05:56 -07001955
1956 // clamp inset to layer bounds
1957 xSurfaceInset = (xSurfaceInset >= 0) ? std::min(xSurfaceInset, layerBounds.getWidth() / 2) : 0;
1958 ySurfaceInset = (ySurfaceInset >= 0) ? std::min(ySurfaceInset, layerBounds.getHeight() / 2) : 0;
1959
Arthur Hung118b1142019-05-08 21:25:59 +08001960 layerBounds.inset(xSurfaceInset, ySurfaceInset, xSurfaceInset, ySurfaceInset);
Vishnu Nair8033a492018-12-05 07:27:23 -08001961
Arthur Hungd20b2702019-01-14 18:16:16 +08001962 // Input coordinate should match the layer bounds.
1963 info.frameLeft = layerBounds.left;
1964 info.frameTop = layerBounds.top;
1965 info.frameRight = layerBounds.right;
1966 info.frameBottom = layerBounds.bottom;
Vishnu Nair8033a492018-12-05 07:27:23 -08001967
1968 // Position the touchable region relative to frame screen location and restrict it to frame
1969 // bounds.
1970 info.touchableRegion = info.touchableRegion.translate(info.frameLeft, info.frameTop);
chaviw3e727cd2019-01-31 13:41:05 -08001971 info.visible = canReceiveInput();
Vishnu Nair6fabeec2019-03-12 13:42:49 -07001972
1973 auto cropLayer = mDrawingState.touchableRegionCrop.promote();
1974 if (info.replaceTouchableRegionWithCrop) {
1975 if (cropLayer == nullptr) {
1976 info.touchableRegion = Region(Rect{mScreenBounds});
1977 } else {
1978 info.touchableRegion = Region(Rect{cropLayer->mScreenBounds});
1979 }
1980 } else if (cropLayer != nullptr) {
1981 info.touchableRegion = info.touchableRegion.intersect(Rect{cropLayer->mScreenBounds});
1982 }
1983
Robert Carr720e5062018-07-30 17:45:14 -07001984 return info;
1985}
1986
1987bool Layer::hasInput() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001988 return mDrawingState.inputInfo.token != nullptr;
Robert Carr720e5062018-07-30 17:45:14 -07001989}
1990
Lloyd Piquefeb73d72018-12-04 17:23:44 -08001991std::shared_ptr<compositionengine::Layer> Layer::getCompositionLayer() const {
1992 return nullptr;
1993}
1994
chaviw3e727cd2019-01-31 13:41:05 -08001995bool Layer::canReceiveInput() const {
1996 return isVisible();
1997}
1998
Lloyd Pique37c2c9b2018-12-04 17:25:10 -08001999compositionengine::OutputLayer* Layer::findOutputLayerForDisplay(
2000 const sp<const DisplayDevice>& display) const {
2001 return display->getCompositionDisplay()->getOutputLayerForLayer(getCompositionLayer().get());
2002}
2003
Mathias Agopian13127d82013-03-05 17:47:11 -08002004// ---------------------------------------------------------------------------
2005
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002006}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002007
2008#if defined(__gl_h_)
2009#error "don't include gl/gl.h in this file"
2010#endif
2011
2012#if defined(__gl2_h_)
2013#error "don't include gl2/gl2.h in this file"
2014#endif