blob: 3f2d10a45b5f8b16c34f4f4be810140cecb25ef9 [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
Mathias Agopian13127d82013-03-05 17:47:11 -080022#include <math.h>
David Sodman41fdfc92017-11-06 16:09:56 -080023#include <stdint.h>
24#include <stdlib.h>
25#include <sys/types.h>
chaviw4b129c22018-04-09 16:19:43 -070026#include <algorithm>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080027
Yiwei Zhang5434a782018-12-05 18:06:32 -080028#include <android-base/stringprintf.h>
29
Mathias Agopiana67932f2011-04-20 14:20:59 -070030#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070031#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070032#include <cutils/properties.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
34#include <utils/Errors.h>
35#include <utils/Log.h>
Jesse Hall399184a2014-03-03 15:42:54 -080036#include <utils/NativeHandle.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080037#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080038#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080039
Courtney Goeltzenleuchter36c44dc2017-04-14 09:33:16 -060040#include <ui/DebugUtils.h>
Mathias Agopian3330b202009-10-05 17:07:12 -070041#include <ui/GraphicBuffer.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042#include <ui/PixelFormat.h>
Mathias Agopian9cce3252010-02-09 17:46:37 -080043
Dan Stoza6b9454d2014-11-07 16:00:59 -080044#include <gui/BufferItem.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080045#include <gui/LayerDebugInfo.h>
Mathias Agopian90ac7992012-02-25 18:48:35 -080046#include <gui/Surface.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047
Yiwei Zhang60d1a192018-03-07 14:52:28 -080048#include "BufferLayer.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020049#include "Colorizer.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070050#include "DisplayDevice.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051#include "Layer.h"
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070052#include "LayerRejecter.h"
Dan Stozab9b08832014-03-13 11:55:57 -070053#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055
Mathias Agopian1b031492012-06-20 17:51:20 -070056#include "DisplayHardware/HWComposer.h"
Yiwei Zhang7e666a52018-11-15 13:33:42 -080057#include "TimeStats/TimeStats.h"
Mathias Agopian1b031492012-06-20 17:51:20 -070058
Peiyong Lincbc184f2018-08-22 13:24:10 -070059#include <renderengine/RenderEngine.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070060
Dan Stozac5da2712016-07-20 15:38:12 -070061#include <mutex>
chaviw1d044282017-09-27 12:19:28 -070062#include "LayerProtoHelper.h"
Dan Stozac5da2712016-07-20 15:38:12 -070063
David Sodman41fdfc92017-11-06 16:09:56 -080064#define DEBUG_RESIZE 0
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066namespace android {
67
Yiwei Zhang5434a782018-12-05 18:06:32 -080068using base::StringAppendF;
69
Lloyd Piquef1c675b2018-09-12 20:45:39 -070070std::atomic<int32_t> Layer::sSequence{1};
Mathias Agopian13127d82013-03-05 17:47:11 -080071
Lloyd Pique42ab75e2018-09-12 20:46:03 -070072Layer::Layer(const LayerCreationArgs& args)
73 : mFlinger(args.flinger),
74 mName(args.name),
75 mClientRef(args.client),
76 mBE{this, args.name.string()} {
Mathias Agopiana67932f2011-04-20 14:20:59 -070077 mCurrentCrop.makeInvalid();
Mathias Agopian4d9b8222013-03-12 17:11:48 -070078
79 uint32_t layerFlags = 0;
Lloyd Pique42ab75e2018-09-12 20:46:03 -070080 if (args.flags & ISurfaceComposerClient::eHidden) layerFlags |= layer_state_t::eLayerHidden;
81 if (args.flags & ISurfaceComposerClient::eOpaque) layerFlags |= layer_state_t::eLayerOpaque;
82 if (args.flags & ISurfaceComposerClient::eSecure) layerFlags |= layer_state_t::eLayerSecure;
Mathias Agopian4d9b8222013-03-12 17:11:48 -070083
Dan Stozaf7ba41a2017-05-10 15:11:11 -070084 mTransactionName = String8("TX - ") + mName;
Mathias Agopian4d9b8222013-03-12 17:11:48 -070085
Lloyd Pique0449b0f2018-12-20 16:23:45 -080086 mCurrentState.active_legacy.w = args.w;
87 mCurrentState.active_legacy.h = args.h;
88 mCurrentState.flags = layerFlags;
89 mCurrentState.active_legacy.transform.set(0, 0);
90 mCurrentState.crop_legacy.makeInvalid();
91 mCurrentState.requestedCrop_legacy = mCurrentState.crop_legacy;
92 mCurrentState.z = 0;
93 mCurrentState.color.a = 1.0f;
94 mCurrentState.layerStack = 0;
95 mCurrentState.sequence = 0;
96 mCurrentState.requested_legacy = mCurrentState.active_legacy;
97 mCurrentState.appId = 0;
98 mCurrentState.type = 0;
99 mCurrentState.active.w = UINT32_MAX;
100 mCurrentState.active.h = UINT32_MAX;
101 mCurrentState.active.transform.set(0, 0);
102 mCurrentState.transform = 0;
103 mCurrentState.transformToDisplayInverse = false;
104 mCurrentState.crop.makeInvalid();
105 mCurrentState.acquireFence = new Fence(-1);
106 mCurrentState.dataspace = ui::Dataspace::UNKNOWN;
107 mCurrentState.hdrMetadata.validTypes = 0;
108 mCurrentState.surfaceDamageRegion.clear();
109 mCurrentState.cornerRadius = 0.0f;
110 mCurrentState.api = -1;
111 mCurrentState.hasColorTransform = false;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700112
113 // drawing state & current state are identical
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800114 mDrawingState = mCurrentState;
Jamie Gennis6547ff42013-07-16 20:12:42 -0700115
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800116 CompositorTiming compositorTiming;
Lloyd Pique42ab75e2018-09-12 20:46:03 -0700117 args.flinger->getCompositorTiming(&compositorTiming);
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800118 mFrameEventHistory.initializeCompositorTiming(compositorTiming);
Jorim Jaggibd6480f2018-08-10 14:37:31 +0200119 mFrameTracker.setDisplayRefreshPeriod(compositorTiming.interval);
Robert Carr2e102c92018-10-23 12:11:15 -0700120
121 mFlinger->onLayerCreated();
Dan Stoza436ccf32018-06-21 12:10:12 -0700122}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700123
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700124Layer::~Layer() {
David Sodman577c8962017-12-08 14:50:53 -0800125 sp<Client> c(mClientRef.promote());
126 if (c != 0) {
127 c->detachLayer(this);
128 }
129
Jorim Jaggi10c985e2018-10-23 11:17:45 +0000130 mFrameTracker.logAndResetStats(mName);
Robert Carr2e102c92018-10-23 12:11:15 -0700131
chaviw61626f22018-11-15 16:26:27 -0800132 destroyAllHwcLayersPlusChildren();
Robert Carr2e102c92018-10-23 12:11:15 -0700133
134 mFlinger->onLayerDestroyed();
Mathias Agopian96f08192010-06-02 23:28:45 -0700135}
136
Mathias Agopian13127d82013-03-05 17:47:11 -0800137// ---------------------------------------------------------------------------
138// callbacks
139// ---------------------------------------------------------------------------
140
David Sodmaneb085e02017-10-05 18:49:04 -0700141/*
142 * onLayerDisplayed is only meaningful for BufferLayer, but, is called through
143 * Layer. So, the implementation is done in BufferLayer. When called on a
144 * ColorLayer object, it's essentially a NOP.
145 */
David Sodmaneb085e02017-10-05 18:49:04 -0700146void Layer::onLayerDisplayed(const sp<Fence>& /*releaseFence*/) {}
Mathias Agopian13127d82013-03-05 17:47:11 -0800147
Chia-I Wuc6657022017-08-15 11:18:17 -0700148void Layer::onRemovedFromCurrentState() {
Robert Carr2e102c92018-10-23 12:11:15 -0700149 mRemovedFromCurrentState = true;
150
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800151 // the layer is removed from SF mCurrentState to mLayersPendingRemoval
152 if (mCurrentState.zOrderRelativeOf != nullptr) {
153 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
154 if (strongRelative != nullptr) {
155 strongRelative->removeZOrderRelative(this);
156 mFlinger->setTransactionFlags(eTraversalNeeded);
Robert Carr5edb1ad2017-04-25 10:54:24 -0700157 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800158 mCurrentState.zOrderRelativeOf = nullptr;
Robert Carr5edb1ad2017-04-25 10:54:24 -0700159 }
Rob Carr4bba3702018-10-08 21:53:30 +0000160
Robert Carr2e102c92018-10-23 12:11:15 -0700161 // Since we are no longer reachable from CurrentState SurfaceFlinger
162 // will no longer invoke doTransaction for us, and so we will
163 // never finish applying transactions. We signal the sync point
164 // now so that another layer will not become indefinitely
165 // blocked.
166 for (auto& point: mRemoteSyncPoints) {
167 point->setTransactionApplied();
168 }
169 mRemoteSyncPoints.clear();
170
171 {
172 Mutex::Autolock syncLock(mLocalSyncPointMutex);
173 for (auto& point : mLocalSyncPoints) {
174 point->setFrameAvailable();
175 }
176 mLocalSyncPoints.clear();
177 }
178
Chia-I Wuc6657022017-08-15 11:18:17 -0700179 for (const auto& child : mCurrentChildren) {
180 child->onRemovedFromCurrentState();
181 }
Robert Carr6fb1a7e2018-12-11 12:07:25 -0800182
183 mFlinger->markLayerPendingRemovalLocked(this);
Chia-I Wuc6657022017-08-15 11:18:17 -0700184}
Chia-I Wu38512252017-05-17 14:36:16 -0700185
chaviw61626f22018-11-15 16:26:27 -0800186void Layer::addToCurrentState() {
187 mRemovedFromCurrentState = false;
188
189 for (const auto& child : mCurrentChildren) {
190 child->addToCurrentState();
191 }
192}
193
Mathias Agopian13127d82013-03-05 17:47:11 -0800194// ---------------------------------------------------------------------------
195// set-up
196// ---------------------------------------------------------------------------
197
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700198const String8& Layer::getName() const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800199 return mName;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800200}
201
chaviw13fdc492017-06-27 12:40:18 -0700202bool Layer::getPremultipledAlpha() const {
203 return mPremultipliedAlpha;
204}
205
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700206sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800207 Mutex::Autolock _l(mLock);
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700208 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800209}
210
211// ---------------------------------------------------------------------------
212// h/w composer set-up
213// ---------------------------------------------------------------------------
214
Dominik Laskowski075d3172018-05-24 15:50:06 -0700215bool Layer::createHwcLayer(HWComposer* hwc, DisplayId displayId) {
Dominik Laskowski34157762018-10-31 13:07:19 -0700216 LOG_ALWAYS_FATAL_IF(hasHwcLayer(displayId), "Already have a layer for display %s",
217 to_string(displayId).c_str());
David Sodmanb8aaea12017-12-14 15:54:51 -0800218 auto layer = std::shared_ptr<HWC2::Layer>(
219 hwc->createLayer(displayId),
220 [hwc, displayId](HWC2::Layer* layer) {
221 hwc->destroyLayer(displayId, layer); });
Steven Thomasb02664d2017-07-26 18:48:28 -0700222 if (!layer) {
223 return false;
224 }
Dominik Laskowski7e045462018-05-30 13:02:02 -0700225 LayerBE::HWCInfo& hwcInfo = getBE().mHwcLayers[displayId];
Steven Thomasb02664d2017-07-26 18:48:28 -0700226 hwcInfo.hwc = hwc;
227 hwcInfo.layer = layer;
David Sodmanf6a38932018-05-25 15:27:50 -0700228 layer->setLayerDestroyedListener(
Dominik Laskowski7e045462018-05-30 13:02:02 -0700229 [this, displayId](HWC2::Layer* /*layer*/) { getBE().mHwcLayers.erase(displayId); });
Steven Thomasb02664d2017-07-26 18:48:28 -0700230 return true;
231}
232
Dominik Laskowski075d3172018-05-24 15:50:06 -0700233bool Layer::destroyHwcLayer(DisplayId displayId) {
Dominik Laskowski34157762018-10-31 13:07:19 -0700234 if (!hasHwcLayer(displayId)) {
Chia-I Wu83806892017-11-16 10:50:20 -0800235 return false;
Steven Thomasb02664d2017-07-26 18:48:28 -0700236 }
Dominik Laskowski7e045462018-05-30 13:02:02 -0700237 auto& hwcInfo = getBE().mHwcLayers[displayId];
David Sodman41fdfc92017-11-06 16:09:56 -0800238 LOG_ALWAYS_FATAL_IF(hwcInfo.layer == nullptr, "Attempt to destroy null layer");
Steven Thomasb02664d2017-07-26 18:48:28 -0700239 LOG_ALWAYS_FATAL_IF(hwcInfo.hwc == nullptr, "Missing HWComposer");
David Sodmanb8aaea12017-12-14 15:54:51 -0800240 hwcInfo.layer = nullptr;
241
Chia-I Wu83806892017-11-16 10:50:20 -0800242 return true;
Steven Thomasb02664d2017-07-26 18:48:28 -0700243}
244
chaviw61626f22018-11-15 16:26:27 -0800245void Layer::destroyHwcLayersForAllDisplays() {
David Sodman6f65f3e2017-11-03 14:28:09 -0700246 size_t numLayers = getBE().mHwcLayers.size();
Steven Thomasb02664d2017-07-26 18:48:28 -0700247 for (size_t i = 0; i < numLayers; ++i) {
David Sodman6f65f3e2017-11-03 14:28:09 -0700248 LOG_ALWAYS_FATAL_IF(getBE().mHwcLayers.empty(), "destroyAllHwcLayers failed");
249 destroyHwcLayer(getBE().mHwcLayers.begin()->first);
Steven Thomasb02664d2017-07-26 18:48:28 -0700250 }
chaviw61626f22018-11-15 16:26:27 -0800251}
252
253void Layer::destroyAllHwcLayersPlusChildren() {
254 destroyHwcLayersForAllDisplays();
David Sodman6f65f3e2017-11-03 14:28:09 -0700255 LOG_ALWAYS_FATAL_IF(!getBE().mHwcLayers.empty(),
David Sodman41fdfc92017-11-06 16:09:56 -0800256 "All hardware composer layers should have been destroyed");
Robert Carr2e102c92018-10-23 12:11:15 -0700257
258 for (const sp<Layer>& child : mDrawingChildren) {
chaviw61626f22018-11-15 16:26:27 -0800259 child->destroyAllHwcLayersPlusChildren();
Robert Carr2e102c92018-10-23 12:11:15 -0700260 }
Steven Thomasb02664d2017-07-26 18:48:28 -0700261}
Steven Thomasb02664d2017-07-26 18:48:28 -0700262
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800263Rect Layer::getContentCrop() const {
264 // this is the crop rectangle that applies to the buffer
265 // itself (as opposed to the window)
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700266 Rect crop;
267 if (!mCurrentCrop.isEmpty()) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800268 // if the buffer crop is defined, we use that
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700269 crop = mCurrentCrop;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800270 } else if (getBE().compositionInfo.mBuffer != nullptr) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800271 // otherwise we use the whole buffer
David Sodman0cc69182017-11-17 12:12:07 -0800272 crop = getBE().compositionInfo.mBuffer->getBounds();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700273 } else {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800274 // if we don't have a buffer yet, we use an empty/invalid crop
Mathias Agopian4fec8732012-06-29 14:12:52 -0700275 crop.makeInvalid();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700276 }
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700277 return crop;
278}
279
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700280static Rect reduce(const Rect& win, const Region& exclude) {
281 if (CC_LIKELY(exclude.isEmpty())) {
282 return win;
283 }
284 if (exclude.isRect()) {
285 return win.reduce(exclude.getBounds());
286 }
287 return Region(win).subtract(exclude).getBounds();
288}
289
Dan Stoza80d61162017-12-20 15:57:52 -0800290static FloatRect reduce(const FloatRect& win, const Region& exclude) {
291 if (CC_LIKELY(exclude.isEmpty())) {
292 return win;
293 }
294 // Convert through Rect (by rounding) for lack of FloatRegion
295 return Region(Rect{win}).subtract(exclude).getBounds().toFloatRect();
296}
297
Vishnu Nair51625fa2018-12-06 13:54:33 -0800298Rect Layer::computeScreenBounds(bool reduceTransparentRegion) const {
299 const State& s(getDrawingState());
300 Region transparentRegion = reduceTransparentRegion ? getActiveTransparentRegion(s) : Region();
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800301 FloatRect bounds = computeBounds(transparentRegion);
302 ui::Transform t = getTransform();
Vishnu Nair60356342018-11-13 13:00:45 -0800303 // Transform to screen space.
304 bounds = t.transform(bounds);
305 return Rect{bounds};
Robert Carr1f0a16a2016-10-24 16:27:39 -0700306}
307
Dan Stoza80d61162017-12-20 15:57:52 -0800308FloatRect Layer::computeBounds() const {
Alec Mourib416efd2018-09-06 21:01:59 +0000309 const State& s(getDrawingState());
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800310 return computeBounds(getActiveTransparentRegion(s));
Michael Lentine6c925ed2014-09-26 17:55:01 -0700311}
312
Dan Stoza80d61162017-12-20 15:57:52 -0800313FloatRect Layer::computeBounds(const Region& activeTransparentRegion) const {
Alec Mourib416efd2018-09-06 21:01:59 +0000314 const State& s(getDrawingState());
Vishnu Nair60356342018-11-13 13:00:45 -0800315 Rect bounds = getCroppedBufferSize(s);
316 FloatRect floatBounds = bounds.toFloatRect();
317 if (bounds.isValid()) {
318 // Layer has bounds. Pass in our bounds as a special case. Then pass on to our parents so
319 // that they can clip it.
320 floatBounds = cropChildBounds(floatBounds);
321 } else {
322 // Layer does not have bounds, so we fill to our parent bounds. This is done by getting our
323 // parent bounds and inverting the transform to get the maximum bounds we can have that
324 // will fit within our parent bounds.
325 const auto& p = mDrawingParent.promote();
326 if (p != nullptr) {
327 ui::Transform t = s.active_legacy.transform;
328 // When calculating the parent bounds for purposes of clipping, we don't need to
329 // constrain the parent to its transparent region. The transparent region is an
330 // optimization based on the buffer contents of the layer, but does not affect the
331 // space allocated to it by policy, and thus children should be allowed to extend into
332 // the parent's transparent region.
333 // One of the main uses is a parent window with a child sitting behind the parent
334 // window, marked by a transparent region. When computing the parent bounds from the
335 // parent's perspective we pass in the transparent region to reduce buffer allocation
336 // size. When computing the parent bounds from the child's perspective, we pass in an
337 // empty transparent region in order to extend into the the parent bounds.
338 floatBounds = p->computeBounds(Region());
339 // Transform back to layer space.
340 floatBounds = t.inverse().transform(floatBounds);
341 }
342 }
Robert Carrb5d3d262016-03-25 15:08:13 -0700343
Vishnu Nair60356342018-11-13 13:00:45 -0800344 // Subtract the transparent region and snap to the bounds.
345 return reduce(floatBounds, activeTransparentRegion);
346}
347
348FloatRect Layer::cropChildBounds(const FloatRect& childBounds) const {
349 const State& s(getDrawingState());
350 Rect bounds = getCroppedBufferSize(s);
351 FloatRect croppedBounds = childBounds;
352
353 // If the layer has bounds, then crop the passed in child bounds and pass
354 // it to our parents so they can crop it as well. If the layer has no bounds,
355 // then pass on the child bounds.
356 if (bounds.isValid()) {
357 croppedBounds = croppedBounds.intersect(bounds.toFloatRect());
Mathias Agopian13127d82013-03-05 17:47:11 -0800358 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700359
Chia-I Wue41dbe62017-06-13 14:10:56 -0700360 const auto& p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -0700361 if (p != nullptr) {
Vishnu Nair60356342018-11-13 13:00:45 -0800362 // Transform to parent space and allow parent layer to crop the
363 // child bounds as well.
364 ui::Transform t = s.active_legacy.transform;
365 croppedBounds = t.transform(croppedBounds);
366 croppedBounds = p->cropChildBounds(croppedBounds);
367 croppedBounds = t.inverse().transform(croppedBounds);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700368 }
Vishnu Nair60356342018-11-13 13:00:45 -0800369 return croppedBounds;
370}
Robert Carr1f0a16a2016-10-24 16:27:39 -0700371
Vishnu Nair60356342018-11-13 13:00:45 -0800372Rect Layer::getCroppedBufferSize(const State& s) const {
373 Rect size = getBufferSize(s);
374 Rect crop = getCrop(s);
375 if (!crop.isEmpty() && size.isValid()) {
376 size.intersect(crop, &size);
377 } else if (!crop.isEmpty()) {
378 size = crop;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700379 }
Vishnu Nair60356342018-11-13 13:00:45 -0800380 return size;
Mathias Agopian13127d82013-03-05 17:47:11 -0800381}
382
Dominik Laskowskia2edf612018-06-01 13:15:16 -0700383Rect Layer::computeInitialCrop(const sp<const DisplayDevice>& display) const {
Robert Carrb5d3d262016-03-25 15:08:13 -0700384 // the crop is the area of the window that gets cropped, but not
Mathias Agopian13127d82013-03-05 17:47:11 -0800385 // scaled in any ways.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700386 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800387
388 // apply the projection's clipping to the window crop in
389 // layerstack space, and convert-back to layer space.
Mathias Agopian6b442672013-07-09 21:24:52 -0700390 // if there are no window scaling involved, this operation will map to full
391 // pixels in the buffer.
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700392
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800393 FloatRect activeCropFloat = computeBounds();
394 ui::Transform t = getTransform();
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800395 // Transform to screen space.
396 activeCropFloat = t.transform(activeCropFloat);
397 activeCropFloat = activeCropFloat.intersect(display->getViewport().toFloatRect());
398 // Back to layer space to work with the content crop.
399 activeCropFloat = t.inverse().transform(activeCropFloat);
400 // This needs to be here as transform.transform(Rect) computes the
401 // transformed rect and then takes the bounding box of the result before
402 // returning. This means
403 // transform.inverse().transform(transform.transform(Rect)) != Rect
404 // in which case we need to make sure the final rect is clipped to the
405 // display bounds.
406 Rect activeCrop{activeCropFloat};
407 if (!activeCrop.intersect(getBufferSize(s), &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000408 activeCrop.clear();
409 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700410 return activeCrop;
411}
412
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700413void Layer::setupRoundedCornersCropCoordinates(Rect win,
414 const FloatRect& roundedCornersCrop) const {
415 // Translate win by the rounded corners rect coordinates, to have all values in
416 // layer coordinate space.
417 win.left -= roundedCornersCrop.left;
418 win.right -= roundedCornersCrop.left;
419 win.top -= roundedCornersCrop.top;
420 win.bottom -= roundedCornersCrop.top;
421
422 renderengine::Mesh::VertexArray<vec2> cropCoords(getBE().mMesh.getCropCoordArray<vec2>());
423 cropCoords[0] = vec2(win.left, win.top);
424 cropCoords[1] = vec2(win.left, win.top + win.getHeight());
425 cropCoords[2] = vec2(win.right, win.top + win.getHeight());
426 cropCoords[3] = vec2(win.right, win.top);
Lucas Dupin1b6531c2018-07-05 17:18:21 -0700427}
428
Dominik Laskowskia2edf612018-06-01 13:15:16 -0700429FloatRect Layer::computeCrop(const sp<const DisplayDevice>& display) const {
Robert Carr1f0a16a2016-10-24 16:27:39 -0700430 // the content crop is the area of the content that gets scaled to the
431 // layer's size. This is in buffer space.
Dan Stoza5a423ea2017-02-16 14:10:39 -0800432 FloatRect crop = getContentCrop().toFloatRect();
Robert Carr1f0a16a2016-10-24 16:27:39 -0700433
434 // In addition there is a WM-specified crop we pull from our drawing state.
435 const State& s(getDrawingState());
436
Dominik Laskowskia2edf612018-06-01 13:15:16 -0700437 Rect activeCrop = computeInitialCrop(display);
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800438 Rect bufferSize = getBufferSize(s);
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700439
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000440 // Transform the window crop to match the buffer coordinate system,
441 // which means using the inverse of the current transform set on the
442 // SurfaceFlingerConsumer.
443 uint32_t invTransform = mCurrentTransform;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800444 if (getTransformToDisplayInverse()) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000445 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700446 * the code below applies the primary display's inverse transform to the
447 * buffer
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000448 */
David Sodman41fdfc92017-11-06 16:09:56 -0800449 uint32_t invTransformOrient = DisplayDevice::getPrimaryDisplayOrientationTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000450 // calculate the inverse transform
451 if (invTransformOrient & NATIVE_WINDOW_TRANSFORM_ROT_90) {
David Sodman41fdfc92017-11-06 16:09:56 -0800452 invTransformOrient ^= NATIVE_WINDOW_TRANSFORM_FLIP_V | NATIVE_WINDOW_TRANSFORM_FLIP_H;
Mathias Agopian13127d82013-03-05 17:47:11 -0800453 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000454 // and apply to the current transform
Peiyong Linefefaac2018-08-17 12:27:51 -0700455 invTransform = (ui::Transform(invTransformOrient) *
456 ui::Transform(invTransform)).getOrientation();
Mathias Agopian13127d82013-03-05 17:47:11 -0800457 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000458
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800459 int winWidth = bufferSize.getWidth();
460 int winHeight = bufferSize.getHeight();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000461 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
462 // If the activeCrop has been rotate the ends are rotated but not
463 // the space itself so when transforming ends back we can't rely on
464 // a modification of the axes of rotation. To account for this we
465 // need to reorient the inverse rotation in terms of the current
466 // axes of rotation.
467 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
468 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
469 if (is_h_flipped == is_v_flipped) {
David Sodman41fdfc92017-11-06 16:09:56 -0800470 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V | NATIVE_WINDOW_TRANSFORM_FLIP_H;
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000471 }
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800472 std::swap(winWidth, winHeight);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000473 }
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800474 const Rect winCrop =
475 activeCrop.transform(invTransform, bufferSize.getWidth(), bufferSize.getHeight());
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000476
477 // below, crop is intersected with winCrop expressed in crop's coordinate space
David Sodman41fdfc92017-11-06 16:09:56 -0800478 float xScale = crop.getWidth() / float(winWidth);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000479 float yScale = crop.getHeight() / float(winHeight);
480
David Sodman41fdfc92017-11-06 16:09:56 -0800481 float insetL = winCrop.left * xScale;
482 float insetT = winCrop.top * yScale;
483 float insetR = (winWidth - winCrop.right) * xScale;
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000484 float insetB = (winHeight - winCrop.bottom) * yScale;
485
David Sodman41fdfc92017-11-06 16:09:56 -0800486 crop.left += insetL;
487 crop.top += insetT;
488 crop.right -= insetR;
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000489 crop.bottom -= insetB;
490
Mathias Agopian13127d82013-03-05 17:47:11 -0800491 return crop;
492}
493
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700494void Layer::setGeometry(const sp<const DisplayDevice>& display, uint32_t z) {
Dominik Laskowski7e045462018-05-30 13:02:02 -0700495 const auto displayId = display->getId();
Dominik Laskowski075d3172018-05-24 15:50:06 -0700496 LOG_ALWAYS_FATAL_IF(!displayId);
Dominik Laskowski34157762018-10-31 13:07:19 -0700497 RETURN_IF_NO_HWC_LAYER(*displayId);
Dominik Laskowski075d3172018-05-24 15:50:06 -0700498 auto& hwcInfo = getBE().mHwcLayers[*displayId];
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700499
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700500 // enable this layer
Dan Stoza9e56aa02015-11-02 13:00:03 -0800501 hwcInfo.forceClientComposition = false;
502
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800503 if (isSecure() && !display->isSecure()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800504 hwcInfo.forceClientComposition = true;
505 }
506
David Sodman15094112018-10-11 09:39:37 -0700507 auto& hwcLayer = hwcInfo.layer;
508
Mathias Agopian13127d82013-03-05 17:47:11 -0800509 // this gives us only the "orientation" component of the transform
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700510 const State& s(getDrawingState());
Vishnu Naira6733b32018-12-06 18:13:16 -0800511 const Rect bufferSize = getBufferSize(s);
David Revemanecf0fa52017-03-03 11:32:44 -0500512 auto blendMode = HWC2::BlendMode::None;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800513 if (!isOpaque(s) || getAlpha() != 1.0f) {
David Sodman41fdfc92017-11-06 16:09:56 -0800514 blendMode =
515 mPremultipliedAlpha ? HWC2::BlendMode::Premultiplied : HWC2::BlendMode::Coverage;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800516 }
David Sodman15094112018-10-11 09:39:37 -0700517 auto error = hwcLayer->setBlendMode(blendMode);
518 ALOGE_IF(error != HWC2::Error::None,
519 "[%s] Failed to set blend mode %s:"
520 " %s (%d)",
521 mName.string(), to_string(blendMode).c_str(), to_string(error).c_str(),
522 static_cast<int32_t>(error));
David Sodmanba340492018-08-05 21:51:33 -0700523 getBE().compositionInfo.hwc.blendMode = blendMode;
Mathias Agopian13127d82013-03-05 17:47:11 -0800524
525 // apply the layer's transform, followed by the display's global transform
526 // here we're guaranteed that the layer's transform preserves rects
Marissa Wall61c58622018-07-18 10:12:20 -0700527 Region activeTransparentRegion(getActiveTransparentRegion(s));
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800528 ui::Transform t = getTransform();
Marissa Wall61c58622018-07-18 10:12:20 -0700529 Rect activeCrop = getCrop(s);
Vishnu Naira6733b32018-12-06 18:13:16 -0800530 if (!activeCrop.isEmpty() && bufferSize.isValid()) {
Robert Carr1f0a16a2016-10-24 16:27:39 -0700531 activeCrop = t.transform(activeCrop);
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700532 if (!activeCrop.intersect(display->getViewport(), &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000533 activeCrop.clear();
534 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700535 activeCrop = t.inverse().transform(activeCrop, true);
Michael Lentine28ea2172014-11-19 18:32:37 -0800536 // This needs to be here as transform.transform(Rect) computes the
537 // transformed rect and then takes the bounding box of the result before
538 // returning. This means
539 // transform.inverse().transform(transform.transform(Rect)) != Rect
540 // in which case we need to make sure the final rect is clipped to the
541 // display bounds.
Vishnu Naira6733b32018-12-06 18:13:16 -0800542 if (!activeCrop.intersect(bufferSize, &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000543 activeCrop.clear();
544 }
Michael Lentine6c925ed2014-09-26 17:55:01 -0700545 // mark regions outside the crop as transparent
Vishnu Naira6733b32018-12-06 18:13:16 -0800546 activeTransparentRegion.orSelf(Rect(0, 0, bufferSize.getWidth(), activeCrop.top));
547 activeTransparentRegion.orSelf(
548 Rect(0, activeCrop.bottom, bufferSize.getWidth(), bufferSize.getHeight()));
David Sodman41fdfc92017-11-06 16:09:56 -0800549 activeTransparentRegion.orSelf(Rect(0, activeCrop.top, activeCrop.left, activeCrop.bottom));
550 activeTransparentRegion.orSelf(
Vishnu Naira6733b32018-12-06 18:13:16 -0800551 Rect(activeCrop.right, activeCrop.top, bufferSize.getWidth(), activeCrop.bottom));
Michael Lentine6c925ed2014-09-26 17:55:01 -0700552 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700553
Dan Stoza80d61162017-12-20 15:57:52 -0800554 // computeBounds returns a FloatRect to provide more accuracy during the
555 // transformation. We then round upon constructing 'frame'.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800556 Rect frame{t.transform(computeBounds(activeTransparentRegion))};
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700557 if (!frame.intersect(display->getViewport(), &frame)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000558 frame.clear();
559 }
Peiyong Linefefaac2018-08-17 12:27:51 -0700560 const ui::Transform& tr = display->getTransform();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800561 Rect transformedFrame = tr.transform(frame);
David Sodman15094112018-10-11 09:39:37 -0700562 error = hwcLayer->setDisplayFrame(transformedFrame);
563 if (error != HWC2::Error::None) {
564 ALOGE("[%s] Failed to set display frame [%d, %d, %d, %d]: %s (%d)", mName.string(),
565 transformedFrame.left, transformedFrame.top, transformedFrame.right,
566 transformedFrame.bottom, to_string(error).c_str(), static_cast<int32_t>(error));
567 } else {
568 hwcInfo.displayFrame = transformedFrame;
569 }
David Sodmanba340492018-08-05 21:51:33 -0700570 getBE().compositionInfo.hwc.displayFrame = transformedFrame;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800571
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700572 FloatRect sourceCrop = computeCrop(display);
David Sodman15094112018-10-11 09:39:37 -0700573 error = hwcLayer->setSourceCrop(sourceCrop);
574 if (error != HWC2::Error::None) {
575 ALOGE("[%s] Failed to set source crop [%.3f, %.3f, %.3f, %.3f]: "
576 "%s (%d)",
577 mName.string(), sourceCrop.left, sourceCrop.top, sourceCrop.right, sourceCrop.bottom,
578 to_string(error).c_str(), static_cast<int32_t>(error));
579 } else {
580 hwcInfo.sourceCrop = sourceCrop;
581 }
David Sodmanba340492018-08-05 21:51:33 -0700582 getBE().compositionInfo.hwc.sourceCrop = sourceCrop;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800583
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800584 float alpha = static_cast<float>(getAlpha());
David Sodman15094112018-10-11 09:39:37 -0700585 error = hwcLayer->setPlaneAlpha(alpha);
586 ALOGE_IF(error != HWC2::Error::None,
587 "[%s] Failed to set plane alpha %.3f: "
588 "%s (%d)",
589 mName.string(), alpha, to_string(error).c_str(), static_cast<int32_t>(error));
David Sodmanba340492018-08-05 21:51:33 -0700590 getBE().compositionInfo.hwc.alpha = alpha;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800591
David Sodman15094112018-10-11 09:39:37 -0700592 error = hwcLayer->setZOrder(z);
593 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set Z %u: %s (%d)", mName.string(), z,
594 to_string(error).c_str(), static_cast<int32_t>(error));
David Sodmanba340492018-08-05 21:51:33 -0700595 getBE().compositionInfo.hwc.z = z;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500596
Albert Chaulk2a589632017-05-04 16:59:44 -0400597 int type = s.type;
598 int appId = s.appId;
Chia-I Wue41dbe62017-06-13 14:10:56 -0700599 sp<Layer> parent = mDrawingParent.promote();
Albert Chaulk2a589632017-05-04 16:59:44 -0400600 if (parent.get()) {
601 auto& parentState = parent->getDrawingState();
rongliucfb187b2018-03-14 12:26:23 -0700602 if (parentState.type >= 0 || parentState.appId >= 0) {
603 type = parentState.type;
604 appId = parentState.appId;
605 }
Albert Chaulk2a589632017-05-04 16:59:44 -0400606 }
607
David Sodman15094112018-10-11 09:39:37 -0700608 error = hwcLayer->setInfo(type, appId);
609 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set info (%d)", mName.string(),
610 static_cast<int32_t>(error));
611
David Sodmanba340492018-08-05 21:51:33 -0700612 getBE().compositionInfo.hwc.type = type;
613 getBE().compositionInfo.hwc.appId = appId;
614
Mathias Agopian29a367b2011-07-12 14:51:45 -0700615 /*
616 * Transformations are applied in this order:
617 * 1) buffer orientation/flip/mirror
618 * 2) state transformation (window manager)
619 * 3) layer orientation (screen orientation)
620 * (NOTE: the matrices are multiplied in reverse order)
621 */
622
Peiyong Linefefaac2018-08-17 12:27:51 -0700623 const ui::Transform bufferOrientation(mCurrentTransform);
624 ui::Transform transform(tr * t * bufferOrientation);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700625
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800626 if (getTransformToDisplayInverse()) {
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700627 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700628 * the code below applies the primary display's inverse transform to the
629 * buffer
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700630 */
David Sodman41fdfc92017-11-06 16:09:56 -0800631 uint32_t invTransform = DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700632 // calculate the inverse transform
633 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
David Sodman41fdfc92017-11-06 16:09:56 -0800634 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V | NATIVE_WINDOW_TRANSFORM_FLIP_H;
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700635 }
Robert Carrcae605c2017-03-29 12:10:31 -0700636
637 /*
638 * Here we cancel out the orientation component of the WM transform.
639 * The scaling and translate components are already included in our bounds
640 * computation so it's enough to just omit it in the composition.
641 * See comment in onDraw with ref to b/36727915 for why.
642 */
Peiyong Linefefaac2018-08-17 12:27:51 -0700643 transform = ui::Transform(invTransform) * tr * bufferOrientation;
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700644 }
Mathias Agopian29a367b2011-07-12 14:51:45 -0700645
646 // this gives us only the "orientation" component of the transform
Mathias Agopian13127d82013-03-05 17:47:11 -0800647 const uint32_t orientation = transform.getOrientation();
Peiyong Linefefaac2018-08-17 12:27:51 -0700648 if (orientation & ui::Transform::ROT_INVALID) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800649 // we can only handle simple transformation
Lloyd Pique074e8122018-07-26 12:57:23 -0700650 hwcInfo.forceClientComposition = true;
Dominik Laskowski075d3172018-05-24 15:50:06 -0700651 getBE().mHwcLayers[*displayId].compositionType = HWC2::Composition::Client;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800652 } else {
653 auto transform = static_cast<HWC2::Transform>(orientation);
Yiwei Zhang7124ad32018-02-21 13:02:45 -0800654 hwcInfo.transform = transform;
David Sodman15094112018-10-11 09:39:37 -0700655 auto error = hwcLayer->setTransform(transform);
656 ALOGE_IF(error != HWC2::Error::None,
657 "[%s] Failed to set transform %s: "
658 "%s (%d)",
659 mName.string(), to_string(transform).c_str(), to_string(error).c_str(),
660 static_cast<int32_t>(error));
David Sodmanba340492018-08-05 21:51:33 -0700661 getBE().compositionInfo.hwc.transform = transform;
David Sodman4b7c4bc2017-11-17 12:13:59 -0800662 }
663}
664
Dominik Laskowski075d3172018-05-24 15:50:06 -0700665void Layer::forceClientComposition(DisplayId displayId) {
Dominik Laskowski34157762018-10-31 13:07:19 -0700666 RETURN_IF_NO_HWC_LAYER(displayId);
Dominik Laskowski7e045462018-05-30 13:02:02 -0700667 getBE().mHwcLayers[displayId].forceClientComposition = true;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800668}
Dan Stozaee44edd2015-03-23 15:50:23 -0700669
Dominik Laskowski075d3172018-05-24 15:50:06 -0700670bool Layer::getForceClientComposition(DisplayId displayId) {
Dominik Laskowski34157762018-10-31 13:07:19 -0700671 RETURN_IF_NO_HWC_LAYER(displayId, false);
Dominik Laskowski7e045462018-05-30 13:02:02 -0700672 return getBE().mHwcLayers[displayId].forceClientComposition;
chaviwc9232ed2017-11-14 15:31:15 -0800673}
674
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700675void Layer::updateCursorPosition(const sp<const DisplayDevice>& display) {
Dominik Laskowski7e045462018-05-30 13:02:02 -0700676 const auto displayId = display->getId();
Dominik Laskowski34157762018-10-31 13:07:19 -0700677 LOG_ALWAYS_FATAL_IF(!displayId);
678 if (!hasHwcLayer(*displayId) || getCompositionType(displayId) != HWC2::Composition::Cursor) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800679 return;
680 }
681
682 // This gives us only the "orientation" component of the transform
683 const State& s(getCurrentState());
684
685 // Apply the layer's transform, followed by the display's global transform
686 // Here we're guaranteed that the layer's transform preserves rects
Vishnu Nairfb5594c2018-11-28 12:38:35 -0800687 Rect win = getCroppedBufferSize(s);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800688 // Subtract the transparent region and snap to the bounds
Marissa Wall61c58622018-07-18 10:12:20 -0700689 Rect bounds = reduce(win, getActiveTransparentRegion(s));
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800690 Rect frame(getTransform().transform(bounds));
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700691 frame.intersect(display->getViewport(), &frame);
Dominik Laskowskieecd6592018-05-29 10:25:41 -0700692 auto& displayTransform = display->getTransform();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800693 auto position = displayTransform.transform(frame);
694
Dominik Laskowski7e045462018-05-30 13:02:02 -0700695 auto error =
Dominik Laskowski075d3172018-05-24 15:50:06 -0700696 getBE().mHwcLayers[*displayId].layer->setCursorPosition(position.left, position.top);
697
David Sodman41fdfc92017-11-06 16:09:56 -0800698 ALOGE_IF(error != HWC2::Error::None,
699 "[%s] Failed to set cursor position "
700 "to (%d, %d): %s (%d)",
701 mName.string(), position.left, position.top, to_string(error).c_str(),
702 static_cast<int32_t>(error));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800703}
Riley Andrews03414a12014-07-01 14:22:59 -0700704
Mathias Agopian13127d82013-03-05 17:47:11 -0800705// ---------------------------------------------------------------------------
706// drawing...
707// ---------------------------------------------------------------------------
708
Marissa Wall61c58622018-07-18 10:12:20 -0700709void Layer::draw(const RenderArea& renderArea, const Region& clip) {
chaviwa76b2712017-09-20 12:02:26 -0700710 onDraw(renderArea, clip, false);
Mathias Agopian13127d82013-03-05 17:47:11 -0800711}
712
Marissa Wall61c58622018-07-18 10:12:20 -0700713void Layer::draw(const RenderArea& renderArea, bool useIdentityTransform) {
chaviwa76b2712017-09-20 12:02:26 -0700714 onDraw(renderArea, Region(renderArea.getBounds()), useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -0800715}
716
David Sodman41fdfc92017-11-06 16:09:56 -0800717void Layer::clearWithOpenGL(const RenderArea& renderArea, float red, float green, float blue,
718 float alpha) const {
Lloyd Pique144e1162017-12-20 16:44:52 -0800719 auto& engine(mFlinger->getRenderEngine());
David Sodman9eeae692017-11-02 10:53:32 -0700720 computeGeometry(renderArea, getBE().mMesh, false);
Mathias Agopian19733a32013-08-28 18:13:56 -0700721 engine.setupFillWithColor(red, green, blue, alpha);
David Sodman9eeae692017-11-02 10:53:32 -0700722 engine.drawMesh(getBE().mMesh);
Mathias Agopian13127d82013-03-05 17:47:11 -0800723}
724
David Sodmanc1498e62018-09-12 14:36:26 -0700725void Layer::clearWithOpenGL(const RenderArea& renderArea) const {
726 clearWithOpenGL(renderArea, 0, 0, 0, 0);
727}
728
Dominik Laskowski075d3172018-05-24 15:50:06 -0700729void Layer::setCompositionType(DisplayId displayId, HWC2::Composition type, bool callIntoHwc) {
Dominik Laskowski7e045462018-05-30 13:02:02 -0700730 if (getBE().mHwcLayers.count(displayId) == 0) {
Chia-I Wu30505fb2018-03-26 16:20:31 -0700731 ALOGE("setCompositionType called without a valid HWC layer");
732 return;
David Sodman15094112018-10-11 09:39:37 -0700733 }
734 auto& hwcInfo = getBE().mHwcLayers[displayId];
735 auto& hwcLayer = hwcInfo.layer;
736 ALOGV("setCompositionType(%" PRIx64 ", %s, %d)", (hwcLayer)->getId(), to_string(type).c_str(),
737 static_cast<int>(callIntoHwc));
738 if (hwcInfo.compositionType != type) {
739 ALOGV(" actually setting");
740 hwcInfo.compositionType = type;
741 if (callIntoHwc) {
742 auto error = (hwcLayer)->setCompositionType(type);
743 ALOGE_IF(error != HWC2::Error::None,
744 "[%s] Failed to set "
745 "composition type %s: %s (%d)",
746 mName.string(), to_string(type).c_str(), to_string(error).c_str(),
747 static_cast<int32_t>(error));
Chia-I Wu30505fb2018-03-26 16:20:31 -0700748 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800749 }
750}
751
Dominik Laskowski075d3172018-05-24 15:50:06 -0700752HWC2::Composition Layer::getCompositionType(const std::optional<DisplayId>& displayId) const {
753 if (!displayId) {
Dan Stozaec0f7172016-07-21 11:09:40 -0700754 // If we're querying the composition type for a display that does not
755 // have a HWC counterpart, then it will always be Client
756 return HWC2::Composition::Client;
757 }
Dominik Laskowski075d3172018-05-24 15:50:06 -0700758 if (getBE().mHwcLayers.count(*displayId) == 0) {
759 ALOGE("getCompositionType called with an invalid HWC layer");
760 return HWC2::Composition::Invalid;
761 }
762 return getBE().mHwcLayers.at(*displayId).compositionType;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800763}
764
Dominik Laskowski075d3172018-05-24 15:50:06 -0700765void Layer::setClearClientTarget(DisplayId displayId, bool clear) {
Dominik Laskowski7e045462018-05-30 13:02:02 -0700766 if (getBE().mHwcLayers.count(displayId) == 0) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800767 ALOGE("setClearClientTarget called without a valid HWC layer");
768 return;
769 }
Dominik Laskowski7e045462018-05-30 13:02:02 -0700770 getBE().mHwcLayers[displayId].clearClientTarget = clear;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800771}
772
Dominik Laskowski075d3172018-05-24 15:50:06 -0700773bool Layer::getClearClientTarget(DisplayId displayId) const {
Dominik Laskowski7e045462018-05-30 13:02:02 -0700774 if (getBE().mHwcLayers.count(displayId) == 0) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800775 ALOGE("getClearClientTarget called without a valid HWC layer");
776 return false;
777 }
Dominik Laskowski7e045462018-05-30 13:02:02 -0700778 return getBE().mHwcLayers.at(displayId).clearClientTarget;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800779}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800780
Dan Stozacac35382016-01-27 12:21:06 -0800781bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
782 if (point->getFrameNumber() <= mCurrentFrameNumber) {
783 // Don't bother with a SyncPoint, since we've already latched the
784 // relevant frame
785 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700786 }
Robert Carr2e102c92018-10-23 12:11:15 -0700787 if (isRemovedFromCurrentState()) {
788 return false;
789 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700790
Dan Stozacac35382016-01-27 12:21:06 -0800791 Mutex::Autolock lock(mLocalSyncPointMutex);
792 mLocalSyncPoints.push_back(point);
793 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -0700794}
795
Mathias Agopian13127d82013-03-05 17:47:11 -0800796// ----------------------------------------------------------------------------
797// local state
798// ----------------------------------------------------------------------------
799
Peiyong Lin833074a2018-08-28 11:53:54 -0700800void Layer::computeGeometry(const RenderArea& renderArea,
801 renderengine::Mesh& mesh,
chaviwa76b2712017-09-20 12:02:26 -0700802 bool useIdentityTransform) const {
Peiyong Linefefaac2018-08-17 12:27:51 -0700803 const ui::Transform renderAreaTransform(renderArea.getTransform());
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800804 FloatRect win = computeBounds();
Mathias Agopian3f844832013-08-07 21:24:32 -0700805
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000806 vec2 lt = vec2(win.left, win.top);
807 vec2 lb = vec2(win.left, win.bottom);
808 vec2 rb = vec2(win.right, win.bottom);
809 vec2 rt = vec2(win.right, win.top);
810
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800811 ui::Transform layerTransform = getTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000812 if (!useIdentityTransform) {
Robert Carr1f0a16a2016-10-24 16:27:39 -0700813 lt = layerTransform.transform(lt);
814 lb = layerTransform.transform(lb);
815 rb = layerTransform.transform(rb);
816 rt = layerTransform.transform(rt);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000817 }
818
Peiyong Lin833074a2018-08-28 11:53:54 -0700819 renderengine::Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>());
chaviwa76b2712017-09-20 12:02:26 -0700820 position[0] = renderAreaTransform.transform(lt);
821 position[1] = renderAreaTransform.transform(lb);
822 position[2] = renderAreaTransform.transform(rb);
823 position[3] = renderAreaTransform.transform(rt);
Mathias Agopian13127d82013-03-05 17:47:11 -0800824}
Eric Hassoldac45e6b2011-02-10 14:41:26 -0800825
David Sodman41fdfc92017-11-06 16:09:56 -0800826bool Layer::isSecure() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800827 const State& s(mDrawingState);
Dan Stoza23116082015-06-18 14:58:39 -0700828 return (s.flags & layer_state_t::eLayerSecure);
829}
830
Mathias Agopian13127d82013-03-05 17:47:11 -0800831void Layer::setVisibleRegion(const Region& visibleRegion) {
832 // always called from main thread
833 this->visibleRegion = visibleRegion;
834}
835
836void Layer::setCoveredRegion(const Region& coveredRegion) {
837 // always called from main thread
838 this->coveredRegion = coveredRegion;
839}
840
David Sodman41fdfc92017-11-06 16:09:56 -0800841void Layer::setVisibleNonTransparentRegion(const Region& setVisibleNonTransparentRegion) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800842 // always called from main thread
843 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
844}
845
Robert Carre5f4f692018-01-12 13:12:28 -0800846void Layer::clearVisibilityRegions() {
847 visibleRegion.clear();
848 visibleNonTransparentRegion.clear();
849 coveredRegion.clear();
850}
851
Mathias Agopian13127d82013-03-05 17:47:11 -0800852// ----------------------------------------------------------------------------
853// transaction
854// ----------------------------------------------------------------------------
Ady Abraham83729882018-12-07 12:26:48 -0800855
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800856void Layer::pushPendingState() {
857 if (!mCurrentState.modified) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700858 return;
859 }
860
Dan Stoza7dde5992015-05-22 09:51:44 -0700861 // If this transaction is waiting on the receipt of a frame, generate a sync
862 // point and send it to the remote layer.
Robert Carr2e102c92018-10-23 12:11:15 -0700863 // We don't allow installing sync points after we are removed from the current state
864 // as we won't be able to signal our end.
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800865 if (mCurrentState.barrierLayer_legacy != nullptr && !isRemovedFromCurrentState()) {
866 sp<Layer> barrierLayer = mCurrentState.barrierLayer_legacy.promote();
Robert Carr0d480722017-01-10 16:42:54 -0800867 if (barrierLayer == nullptr) {
868 ALOGE("[%s] Unable to promote barrier Layer.", mName.string());
Dan Stoza7dde5992015-05-22 09:51:44 -0700869 // If we can't promote the layer we are intended to wait on,
870 // then it is expired or otherwise invalid. Allow this transaction
871 // to be applied as per normal (no synchronization).
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800872 mCurrentState.barrierLayer_legacy = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -0800873 } else {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800874 auto syncPoint = std::make_shared<SyncPoint>(mCurrentState.frameNumber_legacy);
Robert Carr0d480722017-01-10 16:42:54 -0800875 if (barrierLayer->addSyncPoint(syncPoint)) {
Dan Stozacac35382016-01-27 12:21:06 -0800876 mRemoteSyncPoints.push_back(std::move(syncPoint));
877 } else {
878 // We already missed the frame we're supposed to synchronize
879 // on, so go ahead and apply the state update
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800880 mCurrentState.barrierLayer_legacy = nullptr;
Dan Stozacac35382016-01-27 12:21:06 -0800881 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700882 }
883
Dan Stoza7dde5992015-05-22 09:51:44 -0700884 // Wake us up to check if the frame has been received
885 setTransactionFlags(eTransactionNeeded);
Dan Stozaf5702ff2016-11-02 16:27:47 -0700886 mFlinger->setTransactionFlags(eTraversalNeeded);
Dan Stoza7dde5992015-05-22 09:51:44 -0700887 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800888 mPendingStates.push_back(mCurrentState);
889 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700890}
891
Pablo Ceballos05289c22016-04-14 15:49:55 -0700892void Layer::popPendingState(State* stateToCommit) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800893 *stateToCommit = mPendingStates[0];
Dan Stoza7dde5992015-05-22 09:51:44 -0700894
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800895 mPendingStates.removeAt(0);
896 ATRACE_INT(mTransactionName.string(), mPendingStates.size());
Dan Stoza7dde5992015-05-22 09:51:44 -0700897}
898
Pablo Ceballos05289c22016-04-14 15:49:55 -0700899bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700900 bool stateUpdateAvailable = false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800901 while (!mPendingStates.empty()) {
902 if (mPendingStates[0].barrierLayer_legacy != nullptr) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700903 if (mRemoteSyncPoints.empty()) {
904 // If we don't have a sync point for this, apply it anyway. It
905 // will be visually wrong, but it should keep us from getting
906 // into too much trouble.
907 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -0700908 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700909 stateUpdateAvailable = true;
910 continue;
911 }
912
Marissa Wallf58c14b2018-07-24 10:50:43 -0700913 if (mRemoteSyncPoints.front()->getFrameNumber() !=
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800914 mPendingStates[0].frameNumber_legacy) {
David Sodman41fdfc92017-11-06 16:09:56 -0800915 ALOGE("[%s] Unexpected sync point frame number found", mName.string());
Dan Stozacac35382016-01-27 12:21:06 -0800916
917 // Signal our end of the sync point and then dispose of it
918 mRemoteSyncPoints.front()->setTransactionApplied();
919 mRemoteSyncPoints.pop_front();
920 continue;
921 }
922
Dan Stoza7dde5992015-05-22 09:51:44 -0700923 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
924 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -0700925 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700926 stateUpdateAvailable = true;
927
928 // Signal our end of the sync point and then dispose of it
929 mRemoteSyncPoints.front()->setTransactionApplied();
930 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -0800931 } else {
932 break;
Dan Stoza7dde5992015-05-22 09:51:44 -0700933 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700934 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -0700935 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -0700936 stateUpdateAvailable = true;
937 }
938 }
939
940 // If we still have pending updates, wake SurfaceFlinger back up and point
941 // it at this layer so we can process them
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800942 if (!mPendingStates.empty()) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700943 setTransactionFlags(eTransactionNeeded);
944 mFlinger->setTransactionFlags(eTraversalNeeded);
945 }
946
Lloyd Pique0449b0f2018-12-20 16:23:45 -0800947 mCurrentState.modified = false;
Dan Stoza7dde5992015-05-22 09:51:44 -0700948 return stateUpdateAvailable;
949}
950
Marissa Wall61c58622018-07-18 10:12:20 -0700951uint32_t Layer::doTransactionResize(uint32_t flags, State* stateToCommit) {
Alec Mourib416efd2018-09-06 21:01:59 +0000952 const State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800953
Marissa Wall61c58622018-07-18 10:12:20 -0700954 const bool sizeChanged = (stateToCommit->requested_legacy.w != s.requested_legacy.w) ||
955 (stateToCommit->requested_legacy.h != s.requested_legacy.h);
Mathias Agopiana138f892010-05-21 17:24:35 -0700956
David Sodmaneb085e02017-10-05 18:49:04 -0700957 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700958 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +0000959 ALOGD_IF(DEBUG_RESIZE,
David Sodman41fdfc92017-11-06 16:09:56 -0800960 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
961 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
962 " requested={ wh={%4u,%4u} }}\n"
963 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
964 " requested={ wh={%4u,%4u} }}\n",
Marissa Wallf58c14b2018-07-24 10:50:43 -0700965 this, getName().string(), mCurrentTransform, getEffectiveScalingMode(),
Marissa Wall61c58622018-07-18 10:12:20 -0700966 stateToCommit->active_legacy.w, stateToCommit->active_legacy.h,
967 stateToCommit->crop_legacy.left, stateToCommit->crop_legacy.top,
968 stateToCommit->crop_legacy.right, stateToCommit->crop_legacy.bottom,
969 stateToCommit->crop_legacy.getWidth(), stateToCommit->crop_legacy.getHeight(),
970 stateToCommit->requested_legacy.w, stateToCommit->requested_legacy.h,
Marissa Wallf58c14b2018-07-24 10:50:43 -0700971 s.active_legacy.w, s.active_legacy.h, s.crop_legacy.left, s.crop_legacy.top,
972 s.crop_legacy.right, s.crop_legacy.bottom, s.crop_legacy.getWidth(),
973 s.crop_legacy.getHeight(), s.requested_legacy.w, s.requested_legacy.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800974 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700975
Robert Carre392b552017-09-19 12:16:05 -0700976 // Don't let Layer::doTransaction update the drawing state
977 // if we have a pending resize, unless we are in fixed-size mode.
978 // the drawing state will be updated only once we receive a buffer
979 // with the correct size.
980 //
981 // In particular, we want to make sure the clip (which is part
982 // of the geometry state) is latched together with the size but is
983 // latched immediately when no resizing is involved.
984 //
985 // If a sideband stream is attached, however, we want to skip this
986 // optimization so that transactions aren't missed when a buffer
987 // never arrives
988 //
989 // In the case that we don't have a buffer we ignore other factors
990 // and avoid entering the resizePending state. At a high level the
991 // resizePending state is to avoid applying the state of the new buffer
992 // to the old buffer. However in the state where we don't have an old buffer
993 // there is no such concern but we may still be being used as a parent layer.
Marissa Wall61c58622018-07-18 10:12:20 -0700994 const bool resizePending =
995 ((stateToCommit->requested_legacy.w != stateToCommit->active_legacy.w) ||
996 (stateToCommit->requested_legacy.h != stateToCommit->active_legacy.h)) &&
David Sodman0cc69182017-11-17 12:12:07 -0800997 (getBE().compositionInfo.mBuffer != nullptr);
Mathias Agopian0cd545f2012-06-07 14:18:55 -0700998 if (!isFixedSize()) {
David Sodman0cc69182017-11-17 12:12:07 -0800999 if (resizePending && getBE().compositionInfo.hwc.sidebandStream == nullptr) {
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001000 flags |= eDontUpdateGeometryState;
1001 }
1002 }
1003
Robert Carr7bf247e2017-05-18 14:02:49 -07001004 // Here we apply various requested geometry states, depending on our
1005 // latching configuration. See Layer.h for a detailed discussion of
1006 // how geometry latching is controlled.
1007 if (!(flags & eDontUpdateGeometryState)) {
Alec Mourib416efd2018-09-06 21:01:59 +00001008 State& editCurrentState(getCurrentState());
Robert Carr7bf247e2017-05-18 14:02:49 -07001009
1010 // If mFreezeGeometryUpdates is true we are in the setGeometryAppliesWithResize
1011 // mode, which causes attributes which normally latch regardless of scaling mode,
1012 // to be delayed. We copy the requested state to the active state making sure
1013 // to respect these rules (again see Layer.h for a detailed discussion).
1014 //
1015 // There is an awkward asymmetry in the handling of the crop states in the position
1016 // states, as can be seen below. Largely this arises from position and transform
1017 // being stored in the same data structure while having different latching rules.
1018 // b/38182305
1019 //
Marissa Wall61c58622018-07-18 10:12:20 -07001020 // Careful that "stateToCommit" and editCurrentState may not begin as equivalent due to
Robert Carr7bf247e2017-05-18 14:02:49 -07001021 // applyPendingStates in the presence of deferred transactions.
1022 if (mFreezeGeometryUpdates) {
Marissa Wall61c58622018-07-18 10:12:20 -07001023 float tx = stateToCommit->active_legacy.transform.tx();
1024 float ty = stateToCommit->active_legacy.transform.ty();
1025 stateToCommit->active_legacy = stateToCommit->requested_legacy;
1026 stateToCommit->active_legacy.transform.set(tx, ty);
1027 editCurrentState.active_legacy = stateToCommit->active_legacy;
Robert Carr82364e32016-05-15 11:27:47 -07001028 } else {
Marissa Wallf58c14b2018-07-24 10:50:43 -07001029 editCurrentState.active_legacy = editCurrentState.requested_legacy;
Marissa Wall61c58622018-07-18 10:12:20 -07001030 stateToCommit->active_legacy = stateToCommit->requested_legacy;
Robert Carr82364e32016-05-15 11:27:47 -07001031 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001032 }
1033
Marissa Wall61c58622018-07-18 10:12:20 -07001034 return flags;
1035}
1036
1037uint32_t Layer::doTransaction(uint32_t flags) {
1038 ATRACE_CALL();
1039
chaviw5aedec92018-10-22 10:40:38 -07001040 if (mLayerDetached) {
1041 return 0;
1042 }
1043
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001044 pushPendingState();
Alec Mourib416efd2018-09-06 21:01:59 +00001045 State c = getCurrentState();
Marissa Wall61c58622018-07-18 10:12:20 -07001046 if (!applyPendingStates(&c)) {
1047 return 0;
1048 }
1049
1050 flags = doTransactionResize(flags, &c);
1051
Alec Mourib416efd2018-09-06 21:01:59 +00001052 const State& s(getDrawingState());
Marissa Wall61c58622018-07-18 10:12:20 -07001053
1054 if (getActiveGeometry(c) != getActiveGeometry(s)) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001055 // invalidate and recompute the visible regions if needed
1056 flags |= Layer::eVisibleRegion;
1057 }
1058
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001059 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001060 // invalidate and recompute the visible regions if needed
1061 flags |= eVisibleRegion;
1062 this->contentDirty = true;
1063
1064 // we may use linear filtering, if the matrix scales us
Marissa Wall61c58622018-07-18 10:12:20 -07001065 const uint8_t type = getActiveTransform(c).getType();
Peiyong Linefefaac2018-08-17 12:27:51 -07001066 mNeedsFiltering = (!getActiveTransform(c).preserveRects() || type >= ui::Transform::SCALE);
Mathias Agopian13127d82013-03-05 17:47:11 -08001067 }
1068
Dan Stozac8145172016-04-28 16:29:06 -07001069 // If the layer is hidden, signal and clear out all local sync points so
1070 // that transactions for layers depending on this layer's frames becoming
1071 // visible are not blocked
1072 if (c.flags & layer_state_t::eLayerHidden) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001073 clearSyncPoints();
Dan Stozac8145172016-04-28 16:29:06 -07001074 }
1075
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001076 if (mCurrentState.inputInfoChanged) {
Robert Carr720e5062018-07-30 17:45:14 -07001077 flags |= eInputInfoChanged;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001078 mCurrentState.inputInfoChanged = false;
Robert Carr720e5062018-07-30 17:45:14 -07001079 }
1080
Mathias Agopian13127d82013-03-05 17:47:11 -08001081 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -07001082 commitTransaction(c);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001083 mCurrentState.callbackHandles = {};
Mathias Agopian13127d82013-03-05 17:47:11 -08001084 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001085}
1086
Pablo Ceballos05289c22016-04-14 15:49:55 -07001087void Layer::commitTransaction(const State& stateToCommit) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001088 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001089}
1090
Mathias Agopian13127d82013-03-05 17:47:11 -08001091uint32_t Layer::getTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001092 return mTransactionFlags.fetch_and(~flags) & flags;
Mathias Agopian13127d82013-03-05 17:47:11 -08001093}
1094
1095uint32_t Layer::setTransactionFlags(uint32_t flags) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001096 return mTransactionFlags.fetch_or(flags);
Mathias Agopian13127d82013-03-05 17:47:11 -08001097}
1098
Robert Carr82364e32016-05-15 11:27:47 -07001099bool Layer::setPosition(float x, float y, bool immediate) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001100 if (mCurrentState.requested_legacy.transform.tx() == x &&
1101 mCurrentState.requested_legacy.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -08001102 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001103 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -07001104
1105 // We update the requested and active position simultaneously because
1106 // we want to apply the position portion of the transform matrix immediately,
1107 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001108 mCurrentState.requested_legacy.transform.set(x, y);
Robert Carr7bf247e2017-05-18 14:02:49 -07001109 if (immediate && !mFreezeGeometryUpdates) {
1110 // Here we directly update the active state
1111 // unlike other setters, because we store it within
1112 // the transform, but use different latching rules.
1113 // b/38182305
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001114 mCurrentState.active_legacy.transform.set(x, y);
Robert Carr82364e32016-05-15 11:27:47 -07001115 }
Robert Carr7bf247e2017-05-18 14:02:49 -07001116 mFreezeGeometryUpdates = mFreezeGeometryUpdates || !immediate;
Robert Carr69663fb2016-03-27 19:59:19 -07001117
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001118 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001119 setTransactionFlags(eTransactionNeeded);
1120 return true;
1121}
Robert Carr82364e32016-05-15 11:27:47 -07001122
Robert Carr1f0a16a2016-10-24 16:27:39 -07001123bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
1124 ssize_t idx = mCurrentChildren.indexOf(childLayer);
1125 if (idx < 0) {
1126 return false;
1127 }
1128 if (childLayer->setLayer(z)) {
1129 mCurrentChildren.removeAt(idx);
1130 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -08001131 return true;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001132 }
Robert Carr503d2bd2017-12-04 15:49:47 -08001133 return false;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001134}
1135
Robert Carr503c7042017-09-27 15:06:08 -07001136bool Layer::setChildRelativeLayer(const sp<Layer>& childLayer,
1137 const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
1138 ssize_t idx = mCurrentChildren.indexOf(childLayer);
1139 if (idx < 0) {
1140 return false;
1141 }
1142 if (childLayer->setRelativeLayer(relativeToHandle, relativeZ)) {
1143 mCurrentChildren.removeAt(idx);
1144 mCurrentChildren.add(childLayer);
Robert Carr503d2bd2017-12-04 15:49:47 -08001145 return true;
Robert Carr503c7042017-09-27 15:06:08 -07001146 }
Robert Carr503d2bd2017-12-04 15:49:47 -08001147 return false;
Robert Carr503c7042017-09-27 15:06:08 -07001148}
1149
Robert Carrae060832016-11-28 10:51:00 -08001150bool Layer::setLayer(int32_t z) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001151 if (mCurrentState.z == z && !usingRelativeZ(LayerVector::StateSet::Current)) return false;
1152 mCurrentState.sequence++;
1153 mCurrentState.z = z;
1154 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -07001155
1156 // Discard all relative layering.
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001157 if (mCurrentState.zOrderRelativeOf != nullptr) {
1158 sp<Layer> strongRelative = mCurrentState.zOrderRelativeOf.promote();
Robert Carrdb66e622017-04-10 16:55:57 -07001159 if (strongRelative != nullptr) {
1160 strongRelative->removeZOrderRelative(this);
1161 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001162 mCurrentState.zOrderRelativeOf = nullptr;
Robert Carrdb66e622017-04-10 16:55:57 -07001163 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001164 setTransactionFlags(eTransactionNeeded);
1165 return true;
1166}
Robert Carr1f0a16a2016-10-24 16:27:39 -07001167
Robert Carrdb66e622017-04-10 16:55:57 -07001168void Layer::removeZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001169 mCurrentState.zOrderRelatives.remove(relative);
1170 mCurrentState.sequence++;
1171 mCurrentState.modified = true;
Robert Carrdb66e622017-04-10 16:55:57 -07001172 setTransactionFlags(eTransactionNeeded);
1173}
1174
1175void Layer::addZOrderRelative(const wp<Layer>& relative) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001176 mCurrentState.zOrderRelatives.add(relative);
1177 mCurrentState.modified = true;
1178 mCurrentState.sequence++;
Robert Carrdb66e622017-04-10 16:55:57 -07001179 setTransactionFlags(eTransactionNeeded);
1180}
1181
Robert Carr503d2bd2017-12-04 15:49:47 -08001182bool Layer::setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ) {
Robert Carrdb66e622017-04-10 16:55:57 -07001183 sp<Handle> handle = static_cast<Handle*>(relativeToHandle.get());
1184 if (handle == nullptr) {
1185 return false;
1186 }
1187 sp<Layer> relative = handle->owner.promote();
1188 if (relative == nullptr) {
1189 return false;
1190 }
1191
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001192 if (mCurrentState.z == relativeZ && usingRelativeZ(LayerVector::StateSet::Current) &&
1193 mCurrentState.zOrderRelativeOf == relative) {
Robert Carr503d2bd2017-12-04 15:49:47 -08001194 return false;
1195 }
1196
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001197 mCurrentState.sequence++;
1198 mCurrentState.modified = true;
1199 mCurrentState.z = relativeZ;
Robert Carrdb66e622017-04-10 16:55:57 -07001200
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001201 auto oldZOrderRelativeOf = mCurrentState.zOrderRelativeOf.promote();
chaviw9ab4bd12017-11-03 13:11:00 -07001202 if (oldZOrderRelativeOf != nullptr) {
1203 oldZOrderRelativeOf->removeZOrderRelative(this);
1204 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001205 mCurrentState.zOrderRelativeOf = relative;
Robert Carrdb66e622017-04-10 16:55:57 -07001206 relative->addZOrderRelative(this);
1207
1208 setTransactionFlags(eTransactionNeeded);
1209
1210 return true;
1211}
1212
Mathias Agopian13127d82013-03-05 17:47:11 -08001213bool Layer::setSize(uint32_t w, uint32_t h) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001214 if (mCurrentState.requested_legacy.w == w && mCurrentState.requested_legacy.h == h)
Marissa Wallf58c14b2018-07-24 10:50:43 -07001215 return false;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001216 mCurrentState.requested_legacy.w = w;
1217 mCurrentState.requested_legacy.h = h;
1218 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001219 setTransactionFlags(eTransactionNeeded);
Vishnu Naird01c4432018-08-13 10:38:47 -07001220
1221 // record the new size, from this point on, when the client request
1222 // a buffer, it'll get the new size.
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001223 setDefaultBufferSize(mCurrentState.requested_legacy.w, mCurrentState.requested_legacy.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001224 return true;
1225}
Dan Stoza9e56aa02015-11-02 13:00:03 -08001226bool Layer::setAlpha(float alpha) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001227 if (mCurrentState.color.a == alpha) return false;
1228 mCurrentState.sequence++;
1229 mCurrentState.color.a = alpha;
1230 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001231 setTransactionFlags(eTransactionNeeded);
1232 return true;
1233}
chaviw13fdc492017-06-27 12:40:18 -07001234
1235bool Layer::setColor(const half3& color) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001236 if (color.r == mCurrentState.color.r && color.g == mCurrentState.color.g &&
1237 color.b == mCurrentState.color.b)
chaviw13fdc492017-06-27 12:40:18 -07001238 return false;
1239
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001240 mCurrentState.sequence++;
1241 mCurrentState.color.r = color.r;
1242 mCurrentState.color.g = color.g;
1243 mCurrentState.color.b = color.b;
1244 mCurrentState.modified = true;
chaviw13fdc492017-06-27 12:40:18 -07001245 setTransactionFlags(eTransactionNeeded);
1246 return true;
1247}
1248
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001249bool Layer::setCornerRadius(float cornerRadius) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001250 if (mCurrentState.cornerRadius == cornerRadius) return false;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001251
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001252 mCurrentState.sequence++;
1253 mCurrentState.cornerRadius = cornerRadius;
1254 mCurrentState.modified = true;
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001255 setTransactionFlags(eTransactionNeeded);
1256 return true;
1257}
1258
Robert Carrd4ae7f32018-06-07 16:10:57 -07001259bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix,
1260 bool allowNonRectPreservingTransforms) {
Peiyong Linefefaac2018-08-17 12:27:51 -07001261 ui::Transform t;
Robert Carrd4ae7f32018-06-07 16:10:57 -07001262 t.set(matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
1263
1264 if (!allowNonRectPreservingTransforms && !t.preserveRects()) {
1265 ALOGW("Attempt to set rotation matrix without permission ACCESS_SURFACE_FLINGER ignored");
1266 return false;
1267 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001268 mCurrentState.sequence++;
1269 mCurrentState.requested_legacy.transform.set(matrix.dsdx, matrix.dtdy, matrix.dtdx,
1270 matrix.dsdy);
1271 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001272 setTransactionFlags(eTransactionNeeded);
1273 return true;
1274}
Marissa Wall61c58622018-07-18 10:12:20 -07001275
Mathias Agopian13127d82013-03-05 17:47:11 -08001276bool Layer::setTransparentRegionHint(const Region& transparent) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001277 mCurrentState.requestedTransparentRegion_legacy = transparent;
1278 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001279 setTransactionFlags(eTransactionNeeded);
1280 return true;
1281}
1282bool Layer::setFlags(uint8_t flags, uint8_t mask) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001283 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1284 if (mCurrentState.flags == newFlags) return false;
1285 mCurrentState.sequence++;
1286 mCurrentState.flags = newFlags;
1287 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001288 setTransactionFlags(eTransactionNeeded);
1289 return true;
1290}
Robert Carr99e27f02016-06-16 15:18:02 -07001291
Marissa Wallf58c14b2018-07-24 10:50:43 -07001292bool Layer::setCrop_legacy(const Rect& crop, bool immediate) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001293 if (mCurrentState.requestedCrop_legacy == crop) return false;
1294 mCurrentState.sequence++;
1295 mCurrentState.requestedCrop_legacy = crop;
Robert Carr7bf247e2017-05-18 14:02:49 -07001296 if (immediate && !mFreezeGeometryUpdates) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001297 mCurrentState.crop_legacy = crop;
Robert Carr99e27f02016-06-16 15:18:02 -07001298 }
Robert Carr7bf247e2017-05-18 14:02:49 -07001299 mFreezeGeometryUpdates = mFreezeGeometryUpdates || !immediate;
1300
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001301 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001302 setTransactionFlags(eTransactionNeeded);
1303 return true;
1304}
Robert Carr8d5227b2017-03-16 15:41:03 -07001305
Robert Carrc3574f72016-03-24 12:19:32 -07001306bool Layer::setOverrideScalingMode(int32_t scalingMode) {
David Sodman41fdfc92017-11-06 16:09:56 -08001307 if (scalingMode == mOverrideScalingMode) return false;
Robert Carrc3574f72016-03-24 12:19:32 -07001308 mOverrideScalingMode = scalingMode;
Robert Carr82364e32016-05-15 11:27:47 -07001309 setTransactionFlags(eTransactionNeeded);
Robert Carrc3574f72016-03-24 12:19:32 -07001310 return true;
1311}
1312
rongliucfb187b2018-03-14 12:26:23 -07001313void Layer::setInfo(int32_t type, int32_t appId) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001314 mCurrentState.appId = appId;
1315 mCurrentState.type = type;
1316 mCurrentState.modified = true;
David Sodman41fdfc92017-11-06 16:09:56 -08001317 setTransactionFlags(eTransactionNeeded);
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001318}
1319
Mathias Agopian13127d82013-03-05 17:47:11 -08001320bool Layer::setLayerStack(uint32_t layerStack) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001321 if (mCurrentState.layerStack == layerStack) return false;
1322 mCurrentState.sequence++;
1323 mCurrentState.layerStack = layerStack;
1324 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001325 setTransactionFlags(eTransactionNeeded);
1326 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001327}
1328
Robert Carr1f0a16a2016-10-24 16:27:39 -07001329uint32_t Layer::getLayerStack() const {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001330 auto p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001331 if (p == nullptr) {
1332 return getDrawingState().layerStack;
1333 }
1334 return p->getLayerStack();
1335}
1336
Marissa Wallf58c14b2018-07-24 10:50:43 -07001337void Layer::deferTransactionUntil_legacy(const sp<Layer>& barrierLayer, uint64_t frameNumber) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001338 mCurrentState.barrierLayer_legacy = barrierLayer;
1339 mCurrentState.frameNumber_legacy = frameNumber;
Dan Stoza7dde5992015-05-22 09:51:44 -07001340 // We don't set eTransactionNeeded, because just receiving a deferral
1341 // request without any other state updates shouldn't actually induce a delay
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001342 mCurrentState.modified = true;
1343 pushPendingState();
1344 mCurrentState.barrierLayer_legacy = nullptr;
1345 mCurrentState.frameNumber_legacy = 0;
1346 mCurrentState.modified = false;
Robert Carr0d480722017-01-10 16:42:54 -08001347}
1348
Marissa Wallf58c14b2018-07-24 10:50:43 -07001349void Layer::deferTransactionUntil_legacy(const sp<IBinder>& barrierHandle, uint64_t frameNumber) {
Robert Carr0d480722017-01-10 16:42:54 -08001350 sp<Handle> handle = static_cast<Handle*>(barrierHandle.get());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001351 deferTransactionUntil_legacy(handle->owner.promote(), frameNumber);
Dan Stoza7dde5992015-05-22 09:51:44 -07001352}
1353
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001354// ----------------------------------------------------------------------------
1355// pageflip handling...
1356// ----------------------------------------------------------------------------
1357
Robert Carr1f0a16a2016-10-24 16:27:39 -07001358bool Layer::isHiddenByPolicy() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001359 const State& s(mDrawingState);
Chia-I Wue41dbe62017-06-13 14:10:56 -07001360 const auto& parent = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001361 if (parent != nullptr && parent->isHiddenByPolicy()) {
1362 return true;
1363 }
1364 return s.flags & layer_state_t::eLayerHidden;
1365}
1366
David Sodman41fdfc92017-11-06 16:09:56 -08001367uint32_t Layer::getEffectiveUsage(uint32_t usage) const {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001368 // TODO: should we do something special if mSecure is set?
1369 if (mProtectedByApp) {
1370 // need a hardware-protected path to external video sink
1371 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07001372 }
Riley Andrews03414a12014-07-01 14:22:59 -07001373 if (mPotentialCursor) {
1374 usage |= GraphicBuffer::USAGE_CURSOR;
1375 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07001376 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001377 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001378}
1379
Dominik Laskowskia2edf612018-06-01 13:15:16 -07001380void Layer::updateTransformHint(const sp<const DisplayDevice>& display) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07001381 uint32_t orientation = 0;
Vishnu Nairf2deb822018-11-12 17:53:48 -08001382 // Disable setting transform hint if the debug flag is set or if the
1383 // getTransformToDisplayInverse flag is set and the client wants to submit buffers
1384 // in one orientation.
1385 if (!mFlinger->mDebugDisableTransformHint && !getTransformToDisplayInverse()) {
Mathias Agopian84300952012-11-21 16:02:13 -08001386 // The transform hint is used to improve performance, but we can
1387 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07001388 // apply to all displays.
Peiyong Linefefaac2018-08-17 12:27:51 -07001389 const ui::Transform& planeTransform = display->getTransform();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001390 orientation = planeTransform.getOrientation();
Peiyong Linefefaac2018-08-17 12:27:51 -07001391 if (orientation & ui::Transform::ROT_INVALID) {
Mathias Agopiana4583642011-08-23 18:03:18 -07001392 orientation = 0;
1393 }
1394 }
David Sodmaneb085e02017-10-05 18:49:04 -07001395 setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07001396}
1397
Mathias Agopian13127d82013-03-05 17:47:11 -08001398// ----------------------------------------------------------------------------
1399// debugging
1400// ----------------------------------------------------------------------------
1401
Marissa Wall61c58622018-07-18 10:12:20 -07001402// TODO(marissaw): add new layer state info to layer debugging
Kalle Raitaa099a242017-01-11 11:17:29 -08001403LayerDebugInfo Layer::getLayerDebugInfo() const {
1404 LayerDebugInfo info;
Alec Mourib416efd2018-09-06 21:01:59 +00001405 const State& ds = getDrawingState();
Kalle Raitaa099a242017-01-11 11:17:29 -08001406 info.mName = getName();
chaviw1acbec72017-07-27 15:28:26 -07001407 sp<Layer> parent = getParent();
Kalle Raitaa099a242017-01-11 11:17:29 -08001408 info.mParentName = (parent == nullptr ? std::string("none") : parent->getName().string());
Yiwei Zhang5434a782018-12-05 18:06:32 -08001409 info.mType = std::string(getTypeId());
Marissa Wallf58c14b2018-07-24 10:50:43 -07001410 info.mTransparentRegion = ds.activeTransparentRegion_legacy;
Kalle Raitaa099a242017-01-11 11:17:29 -08001411 info.mVisibleRegion = visibleRegion;
1412 info.mSurfaceDamageRegion = surfaceDamageRegion;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001413 info.mLayerStack = getLayerStack();
Marissa Wallf58c14b2018-07-24 10:50:43 -07001414 info.mX = ds.active_legacy.transform.tx();
1415 info.mY = ds.active_legacy.transform.ty();
Kalle Raitaa099a242017-01-11 11:17:29 -08001416 info.mZ = ds.z;
Marissa Wallf58c14b2018-07-24 10:50:43 -07001417 info.mWidth = ds.active_legacy.w;
1418 info.mHeight = ds.active_legacy.h;
1419 info.mCrop = ds.crop_legacy;
chaviw13fdc492017-06-27 12:40:18 -07001420 info.mColor = ds.color;
Kalle Raitaa099a242017-01-11 11:17:29 -08001421 info.mFlags = ds.flags;
1422 info.mPixelFormat = getPixelFormat();
Chia-I Wu01591c92018-05-22 12:03:00 -07001423 info.mDataSpace = static_cast<android_dataspace>(mCurrentDataSpace);
Marissa Wallf58c14b2018-07-24 10:50:43 -07001424 info.mMatrix[0][0] = ds.active_legacy.transform[0][0];
1425 info.mMatrix[0][1] = ds.active_legacy.transform[0][1];
1426 info.mMatrix[1][0] = ds.active_legacy.transform[1][0];
1427 info.mMatrix[1][1] = ds.active_legacy.transform[1][1];
Kalle Raitaa099a242017-01-11 11:17:29 -08001428 {
David Sodman0cf8f8d2017-12-20 18:19:45 -08001429 sp<const GraphicBuffer> buffer = mActiveBuffer;
David Sodman5b4cffc2017-11-23 13:20:29 -08001430 if (buffer != 0) {
1431 info.mActiveBufferWidth = buffer->getWidth();
1432 info.mActiveBufferHeight = buffer->getHeight();
1433 info.mActiveBufferStride = buffer->getStride();
1434 info.mActiveBufferFormat = buffer->format;
Kalle Raitaa099a242017-01-11 11:17:29 -08001435 } else {
1436 info.mActiveBufferWidth = 0;
1437 info.mActiveBufferHeight = 0;
1438 info.mActiveBufferStride = 0;
1439 info.mActiveBufferFormat = 0;
1440 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001441 }
Kalle Raitaa099a242017-01-11 11:17:29 -08001442 info.mNumQueuedFrames = getQueuedFrameCount();
1443 info.mRefreshPending = isBufferLatched();
1444 info.mIsOpaque = isOpaque(ds);
1445 info.mContentDirty = contentDirty;
1446 return info;
Mathias Agopian13127d82013-03-05 17:47:11 -08001447}
Chia-I Wu83ce7c12017-10-19 15:18:55 -07001448
Yiwei Zhang5434a782018-12-05 18:06:32 -08001449void Layer::miniDumpHeader(std::string& result) {
Yichi Chen6ca35192018-05-29 12:20:43 +08001450 result.append("-------------------------------");
1451 result.append("-------------------------------");
1452 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001453 result.append(" Layer name\n");
1454 result.append(" Z | ");
1455 result.append(" Comp Type | ");
Yichi Chen6ca35192018-05-29 12:20:43 +08001456 result.append(" Transform | ");
Dan Stozae22aec72016-08-01 13:20:59 -07001457 result.append(" Disp Frame (LTRB) | ");
1458 result.append(" Source Crop (LTRB)\n");
Yichi Chen6ca35192018-05-29 12:20:43 +08001459 result.append("-------------------------------");
1460 result.append("-------------------------------");
1461 result.append("-----------------------------\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001462}
1463
Yiwei Zhang5434a782018-12-05 18:06:32 -08001464void Layer::miniDump(std::string& result, DisplayId displayId) const {
Dominik Laskowski34157762018-10-31 13:07:19 -07001465 if (!hasHwcLayer(displayId)) {
Dan Stozae22aec72016-08-01 13:20:59 -07001466 return;
1467 }
1468
Yiwei Zhang5434a782018-12-05 18:06:32 -08001469 std::string name;
Dan Stozae22aec72016-08-01 13:20:59 -07001470 if (mName.length() > 77) {
1471 std::string shortened;
1472 shortened.append(mName.string(), 36);
1473 shortened.append("[...]");
1474 shortened.append(mName.string() + (mName.length() - 36), 36);
Yiwei Zhang5434a782018-12-05 18:06:32 -08001475 name = shortened;
Dan Stozae22aec72016-08-01 13:20:59 -07001476 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001477 name = std::string(mName.string(), mName.size());
Dan Stozae22aec72016-08-01 13:20:59 -07001478 }
1479
Yiwei Zhang5434a782018-12-05 18:06:32 -08001480 StringAppendF(&result, " %s\n", name.c_str());
Dan Stozae22aec72016-08-01 13:20:59 -07001481
Alec Mourib416efd2018-09-06 21:01:59 +00001482 const State& layerState(getDrawingState());
Lloyd Pique074e8122018-07-26 12:57:23 -07001483 const LayerBE::HWCInfo& hwcInfo = getBE().mHwcLayers.at(displayId);
Chia-I Wu1e043612018-03-01 09:45:09 -08001484 if (layerState.zOrderRelativeOf != nullptr || mDrawingParent != nullptr) {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001485 StringAppendF(&result, " rel %6d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001486 } else {
Yiwei Zhang5434a782018-12-05 18:06:32 -08001487 StringAppendF(&result, " %10d | ", layerState.z);
Chia-I Wu1e043612018-03-01 09:45:09 -08001488 }
Yiwei Zhang5434a782018-12-05 18:06:32 -08001489 StringAppendF(&result, "%10s | ", to_string(getCompositionType(displayId)).c_str());
1490 StringAppendF(&result, "%10s | ", to_string(hwcInfo.transform).c_str());
Lloyd Pique074e8122018-07-26 12:57:23 -07001491 const Rect& frame = hwcInfo.displayFrame;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001492 StringAppendF(&result, "%4d %4d %4d %4d | ", frame.left, frame.top, frame.right, frame.bottom);
Lloyd Pique074e8122018-07-26 12:57:23 -07001493 const FloatRect& crop = hwcInfo.sourceCrop;
Yiwei Zhang5434a782018-12-05 18:06:32 -08001494 StringAppendF(&result, "%6.1f %6.1f %6.1f %6.1f\n", crop.left, crop.top, crop.right,
1495 crop.bottom);
Dan Stozae22aec72016-08-01 13:20:59 -07001496
David Sodman7e4ae112018-02-09 15:02:28 -08001497 result.append("- - - - - - - - - - - - - - - -\n");
1498
1499 std::string compositionInfoStr;
1500 getBE().compositionInfo.dump(compositionInfoStr, "compositionInfo");
Yiwei Zhang5434a782018-12-05 18:06:32 -08001501 result.append(compositionInfoStr);
David Sodman7e4ae112018-02-09 15:02:28 -08001502
Yichi Chen6ca35192018-05-29 12:20:43 +08001503 result.append("- - - - - - - - - - - - - - - -");
1504 result.append("- - - - - - - - - - - - - - - -");
1505 result.append("- - - - - - - - - - - - - - -\n");
Dan Stozae22aec72016-08-01 13:20:59 -07001506}
Dan Stozae22aec72016-08-01 13:20:59 -07001507
Yiwei Zhang5434a782018-12-05 18:06:32 -08001508void Layer::dumpFrameStats(std::string& result) const {
Svetoslavd85084b2014-03-20 10:28:31 -07001509 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08001510}
1511
Svetoslavd85084b2014-03-20 10:28:31 -07001512void Layer::clearFrameStats() {
1513 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08001514}
1515
Jamie Gennis6547ff42013-07-16 20:12:42 -07001516void Layer::logFrameStats() {
1517 mFrameTracker.logAndResetStats(mName);
1518}
1519
Svetoslavd85084b2014-03-20 10:28:31 -07001520void Layer::getFrameStats(FrameStats* outStats) const {
1521 mFrameTracker.getStats(outStats);
1522}
1523
Yiwei Zhang5434a782018-12-05 18:06:32 -08001524void Layer::dumpFrameEvents(std::string& result) {
1525 StringAppendF(&result, "- Layer %s (%s, %p)\n", getName().string(), getTypeId(), this);
Brian Andersond6927fb2016-07-23 23:37:30 -07001526 Mutex::Autolock lock(mFrameEventHistoryMutex);
1527 mFrameEventHistory.checkFencesForCompletion();
1528 mFrameEventHistory.dump(result);
1529}
Pablo Ceballos40845df2016-01-25 17:41:15 -08001530
Brian Anderson5ea5e592016-12-01 16:54:33 -08001531void Layer::onDisconnect() {
1532 Mutex::Autolock lock(mFrameEventHistoryMutex);
1533 mFrameEventHistory.onDisconnect();
Yiwei Zhangaf8ee942018-11-22 00:15:23 -08001534 mFlinger->mTimeStats->onDestroy(getSequence());
Brian Anderson5ea5e592016-12-01 16:54:33 -08001535}
1536
Brian Anderson3890c392016-07-25 12:48:08 -07001537void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
David Sodman41fdfc92017-11-06 16:09:56 -08001538 FrameEventHistoryDelta* outDelta) {
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001539 if (newTimestamps) {
Yiwei Zhang7e666a52018-11-15 13:33:42 -08001540 mFlinger->mTimeStats->setPostTime(getSequence(), newTimestamps->frameNumber,
1541 getName().c_str(), newTimestamps->postedTime);
Yiwei Zhangfaf3ded2018-05-02 17:37:17 -07001542 }
1543
Brian Andersond6927fb2016-07-23 23:37:30 -07001544 Mutex::Autolock lock(mFrameEventHistoryMutex);
1545 if (newTimestamps) {
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001546 // If there are any unsignaled fences in the aquire timeline at this
1547 // point, the previously queued frame hasn't been latched yet. Go ahead
1548 // and try to get the signal time here so the syscall is taken out of
1549 // the main thread's critical path.
1550 mAcquireTimeline.updateSignalTimes();
1551 // Push the new fence after updating since it's likely still pending.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001552 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07001553 mFrameEventHistory.addQueue(*newTimestamps);
1554 }
1555
Brian Anderson3890c392016-07-25 12:48:08 -07001556 if (outDelta) {
1557 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07001558 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08001559}
Dan Stozae77c7662016-05-13 11:37:28 -07001560
Chia-I Wu98f1c102017-05-30 14:54:08 -07001561size_t Layer::getChildrenCount() const {
1562 size_t count = 0;
1563 for (const sp<Layer>& child : mCurrentChildren) {
1564 count += 1 + child->getChildrenCount();
1565 }
1566 return count;
1567}
1568
Robert Carr1f0a16a2016-10-24 16:27:39 -07001569void Layer::addChild(const sp<Layer>& layer) {
1570 mCurrentChildren.add(layer);
1571 layer->setParent(this);
1572}
1573
1574ssize_t Layer::removeChild(const sp<Layer>& layer) {
1575 layer->setParent(nullptr);
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001576
Robert Carr1f0a16a2016-10-24 16:27:39 -07001577 return mCurrentChildren.remove(layer);
1578}
1579
Robert Carr1db73f62016-12-21 12:58:51 -08001580bool Layer::reparentChildren(const sp<IBinder>& newParentHandle) {
1581 sp<Handle> handle = nullptr;
1582 sp<Layer> newParent = nullptr;
1583 if (newParentHandle == nullptr) {
1584 return false;
1585 }
1586 handle = static_cast<Handle*>(newParentHandle.get());
1587 newParent = handle->owner.promote();
1588 if (newParent == nullptr) {
1589 ALOGE("Unable to promote Layer handle");
1590 return false;
1591 }
1592
chaviw5aedec92018-10-22 10:40:38 -07001593 if (attachChildren()) {
1594 setTransactionFlags(eTransactionNeeded);
1595 }
Robert Carr1db73f62016-12-21 12:58:51 -08001596 for (const sp<Layer>& child : mCurrentChildren) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001597 newParent->addChild(child);
Robert Carr1db73f62016-12-21 12:58:51 -08001598 }
1599 mCurrentChildren.clear();
1600
1601 return true;
1602}
1603
Robert Carr15eae092018-03-23 13:43:53 -07001604void Layer::setChildrenDrawingParent(const sp<Layer>& newParent) {
Robert Carr578038f2018-03-09 12:25:24 -08001605 for (const sp<Layer>& child : mDrawingChildren) {
1606 child->mDrawingParent = newParent;
1607 }
1608}
1609
chaviwf1961f72017-09-18 16:41:07 -07001610bool Layer::reparent(const sp<IBinder>& newParentHandle) {
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001611 bool callSetTransactionFlags = false;
chaviw06178942017-07-27 10:25:59 -07001612
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001613 // While layers are detached, we allow most operations
1614 // and simply halt performing the actual transaction. However
1615 // for reparent != null we would enter the mRemovedFromCurrentState
1616 // state, regardless of whether doTransaction was called, and
1617 // so we need to prevent the update here.
1618 if (mLayerDetached && newParentHandle == nullptr) {
chaviw06178942017-07-27 10:25:59 -07001619 return false;
1620 }
1621
chaviwf1961f72017-09-18 16:41:07 -07001622 sp<Layer> parent = getParent();
1623 if (parent != nullptr) {
1624 parent->removeChild(this);
chaviw06178942017-07-27 10:25:59 -07001625 }
1626
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001627 if (newParentHandle != nullptr) {
1628 auto handle = static_cast<Handle*>(newParentHandle.get());
1629 sp<Layer> newParent = handle->owner.promote();
1630 if (newParent == nullptr) {
1631 ALOGE("Unable to promote Layer handle");
1632 return false;
1633 }
1634
1635 newParent->addChild(this);
1636 if (!newParent->isRemovedFromCurrentState()) {
1637 addToCurrentState();
1638 } else {
1639 onRemovedFromCurrentState();
1640 }
1641
1642 if (mLayerDetached) {
1643 mLayerDetached = false;
1644 callSetTransactionFlags = true;
1645 }
1646 } else {
1647 onRemovedFromCurrentState();
chaviw61626f22018-11-15 16:26:27 -08001648 }
1649
Robert Carr6fb1a7e2018-12-11 12:07:25 -08001650 if (callSetTransactionFlags || attachChildren()) {
chaviw5aedec92018-10-22 10:40:38 -07001651 setTransactionFlags(eTransactionNeeded);
1652 }
chaviw06178942017-07-27 10:25:59 -07001653 return true;
1654}
1655
Robert Carr9524cb32017-02-13 11:32:32 -08001656bool Layer::detachChildren() {
Robert Carr7f619b22017-11-06 12:56:35 -08001657 for (const sp<Layer>& child : mCurrentChildren) {
chaviw161410b02017-07-27 10:46:08 -07001658 sp<Client> parentClient = mClientRef.promote();
Robert Carr9524cb32017-02-13 11:32:32 -08001659 sp<Client> client(child->mClientRef.promote());
chaviw161410b02017-07-27 10:46:08 -07001660 if (client != nullptr && parentClient != client) {
chaviw5aedec92018-10-22 10:40:38 -07001661 child->mLayerDetached = true;
Robert Carr7f619b22017-11-06 12:56:35 -08001662 child->detachChildren();
Robert Carr9524cb32017-02-13 11:32:32 -08001663 }
Robert Carr7f619b22017-11-06 12:56:35 -08001664 }
Robert Carr9524cb32017-02-13 11:32:32 -08001665
1666 return true;
1667}
1668
chaviw5aedec92018-10-22 10:40:38 -07001669bool Layer::attachChildren() {
1670 bool changed = false;
1671 for (const sp<Layer>& child : mCurrentChildren) {
1672 sp<Client> parentClient = mClientRef.promote();
1673 sp<Client> client(child->mClientRef.promote());
1674 if (client != nullptr && parentClient != client) {
1675 if (child->mLayerDetached) {
1676 child->mLayerDetached = false;
1677 changed = true;
1678 }
1679 changed |= child->attachChildren();
1680 }
1681 }
1682
1683 return changed;
1684}
1685
Peiyong Lind3788632018-09-18 16:01:31 -07001686bool Layer::setColorTransform(const mat4& matrix) {
Peiyong Lin747321c2018-10-01 10:03:11 -07001687 static const mat4 identityMatrix = mat4();
1688
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001689 if (mCurrentState.colorTransform == matrix) {
Peiyong Lind3788632018-09-18 16:01:31 -07001690 return false;
1691 }
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001692 ++mCurrentState.sequence;
1693 mCurrentState.colorTransform = matrix;
1694 mCurrentState.hasColorTransform = matrix != identityMatrix;
1695 mCurrentState.modified = true;
Peiyong Lind3788632018-09-18 16:01:31 -07001696 setTransactionFlags(eTransactionNeeded);
1697 return true;
1698}
1699
chaviwf66724d2018-11-28 16:35:21 -08001700mat4 Layer::getColorTransform() const {
1701 mat4 colorTransform = mat4(getDrawingState().colorTransform);
1702 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1703 colorTransform = parent->getColorTransform() * colorTransform;
1704 }
1705 return colorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001706}
1707
1708bool Layer::hasColorTransform() const {
chaviwf66724d2018-11-28 16:35:21 -08001709 bool hasColorTransform = getDrawingState().hasColorTransform;
1710 if (sp<Layer> parent = mDrawingParent.promote(); parent != nullptr) {
1711 hasColorTransform = hasColorTransform || parent->hasColorTransform();
1712 }
1713 return hasColorTransform;
Peiyong Lind3788632018-09-18 16:01:31 -07001714}
1715
Chia-I Wu11481472018-05-04 10:43:19 -07001716bool Layer::isLegacyDataSpace() const {
1717 // return true when no higher bits are set
Chia-I Wu01591c92018-05-22 12:03:00 -07001718 return !(mCurrentDataSpace & (ui::Dataspace::STANDARD_MASK |
Chia-I Wu11481472018-05-04 10:43:19 -07001719 ui::Dataspace::TRANSFER_MASK | ui::Dataspace::RANGE_MASK));
Peiyong Lindd9b2ae2018-03-01 16:22:45 -08001720}
1721
Robert Carr1f0a16a2016-10-24 16:27:39 -07001722void Layer::setParent(const sp<Layer>& layer) {
Chia-I Wue41dbe62017-06-13 14:10:56 -07001723 mCurrentParent = layer;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001724}
1725
1726void Layer::clearSyncPoints() {
1727 for (const auto& child : mCurrentChildren) {
1728 child->clearSyncPoints();
1729 }
1730
1731 Mutex::Autolock lock(mLocalSyncPointMutex);
1732 for (auto& point : mLocalSyncPoints) {
1733 point->setFrameAvailable();
1734 }
1735 mLocalSyncPoints.clear();
1736}
1737
1738int32_t Layer::getZ() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001739 return mDrawingState.z;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001740}
1741
Robert Carr29abff82017-12-04 13:51:20 -08001742bool Layer::usingRelativeZ(LayerVector::StateSet stateSet) {
1743 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001744 const State& state = useDrawing ? mDrawingState : mCurrentState;
Robert Carr29abff82017-12-04 13:51:20 -08001745 return state.zOrderRelativeOf != nullptr;
1746}
1747
David Sodman41fdfc92017-11-06 16:09:56 -08001748__attribute__((no_sanitize("unsigned-integer-overflow"))) LayerVector Layer::makeTraversalList(
Robert Carr29abff82017-12-04 13:51:20 -08001749 LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers) {
Dan Stoza412903f2017-04-27 13:42:17 -07001750 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1751 "makeTraversalList received invalid stateSet");
1752 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1753 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001754 const State& state = useDrawing ? mDrawingState : mCurrentState;
Dan Stoza412903f2017-04-27 13:42:17 -07001755
Robert Carr29abff82017-12-04 13:51:20 -08001756 if (state.zOrderRelatives.size() == 0) {
1757 *outSkipRelativeZUsers = true;
1758 return children;
1759 }
1760
chaviwfd462612018-05-31 16:11:27 -07001761 LayerVector traverse(stateSet);
Dan Stoza412903f2017-04-27 13:42:17 -07001762 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
Robert Carrdb66e622017-04-10 16:55:57 -07001763 sp<Layer> strongRelative = weakRelative.promote();
1764 if (strongRelative != nullptr) {
1765 traverse.add(strongRelative);
Robert Carrdb66e622017-04-10 16:55:57 -07001766 }
1767 }
1768
Dan Stoza412903f2017-04-27 13:42:17 -07001769 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001770 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
Robert Carr503c7042017-09-27 15:06:08 -07001771 if (childState.zOrderRelativeOf != nullptr) {
1772 continue;
1773 }
Robert Carrdb66e622017-04-10 16:55:57 -07001774 traverse.add(child);
1775 }
1776
1777 return traverse;
1778}
1779
Robert Carr1f0a16a2016-10-24 16:27:39 -07001780/**
Robert Carrdb66e622017-04-10 16:55:57 -07001781 * Negatively signed relatives are before 'this' in Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001782 */
Dan Stoza412903f2017-04-27 13:42:17 -07001783void Layer::traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001784 // In the case we have other layers who are using a relative Z to us, makeTraversalList will
1785 // produce a new list for traversing, including our relatives, and not including our children
1786 // who are relatives of another surface. In the case that there are no relative Z,
1787 // makeTraversalList returns our children directly to avoid significant overhead.
1788 // However in this case we need to take the responsibility for filtering children which
1789 // are relatives of another surface here.
1790 bool skipRelativeZUsers = false;
1791 const LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001792
Robert Carr1f0a16a2016-10-24 16:27:39 -07001793 size_t i = 0;
Robert Carrdb66e622017-04-10 16:55:57 -07001794 for (; i < list.size(); i++) {
1795 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001796 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1797 continue;
1798 }
1799
Robert Carrdb66e622017-04-10 16:55:57 -07001800 if (relative->getZ() >= 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001801 break;
Robert Carrdb66e622017-04-10 16:55:57 -07001802 }
Dan Stoza412903f2017-04-27 13:42:17 -07001803 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001804 }
Robert Carr29abff82017-12-04 13:51:20 -08001805
Dan Stoza412903f2017-04-27 13:42:17 -07001806 visitor(this);
Robert Carrdb66e622017-04-10 16:55:57 -07001807 for (; i < list.size(); i++) {
1808 const auto& relative = list[i];
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001809
Robert Carr29abff82017-12-04 13:51:20 -08001810 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1811 continue;
1812 }
Dan Stoza412903f2017-04-27 13:42:17 -07001813 relative->traverseInZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001814 }
1815}
1816
1817/**
Robert Carrdb66e622017-04-10 16:55:57 -07001818 * Positively signed relatives are before 'this' in reverse Z-order.
Robert Carr1f0a16a2016-10-24 16:27:39 -07001819 */
Dan Stoza412903f2017-04-27 13:42:17 -07001820void Layer::traverseInReverseZOrder(LayerVector::StateSet stateSet,
1821 const LayerVector::Visitor& visitor) {
Robert Carr29abff82017-12-04 13:51:20 -08001822 // See traverseInZOrder for documentation.
1823 bool skipRelativeZUsers = false;
1824 LayerVector list = makeTraversalList(stateSet, &skipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -07001825
Robert Carr1f0a16a2016-10-24 16:27:39 -07001826 int32_t i = 0;
Joel Galensonbf324992017-11-06 11:04:12 -08001827 for (i = int32_t(list.size()) - 1; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001828 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001829
1830 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1831 continue;
1832 }
1833
Robert Carrdb66e622017-04-10 16:55:57 -07001834 if (relative->getZ() < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001835 break;
1836 }
Dan Stoza412903f2017-04-27 13:42:17 -07001837 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001838 }
Dan Stoza412903f2017-04-27 13:42:17 -07001839 visitor(this);
David Sodman41fdfc92017-11-06 16:09:56 -08001840 for (; i >= 0; i--) {
Robert Carrdb66e622017-04-10 16:55:57 -07001841 const auto& relative = list[i];
Robert Carr29abff82017-12-04 13:51:20 -08001842
1843 if (skipRelativeZUsers && relative->usingRelativeZ(stateSet)) {
1844 continue;
1845 }
1846
Dan Stoza412903f2017-04-27 13:42:17 -07001847 relative->traverseInReverseZOrder(stateSet, visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -07001848 }
1849}
1850
chaviw4b129c22018-04-09 16:19:43 -07001851LayerVector Layer::makeChildrenTraversalList(LayerVector::StateSet stateSet,
1852 const std::vector<Layer*>& layersInTree) {
1853 LOG_ALWAYS_FATAL_IF(stateSet == LayerVector::StateSet::Invalid,
1854 "makeTraversalList received invalid stateSet");
chaviwa76b2712017-09-20 12:02:26 -07001855 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1856 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001857 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001858
chaviwfd462612018-05-31 16:11:27 -07001859 LayerVector traverse(stateSet);
chaviw4b129c22018-04-09 16:19:43 -07001860 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
1861 sp<Layer> strongRelative = weakRelative.promote();
1862 // Only add relative layers that are also descendents of the top most parent of the tree.
1863 // If a relative layer is not a descendent, then it should be ignored.
1864 if (std::binary_search(layersInTree.begin(), layersInTree.end(), strongRelative.get())) {
1865 traverse.add(strongRelative);
1866 }
1867 }
1868
1869 for (const sp<Layer>& child : children) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001870 const State& childState = useDrawing ? child->mDrawingState : child->mCurrentState;
chaviw4b129c22018-04-09 16:19:43 -07001871 // If a layer has a relativeOf layer, only ignore if the layer it's relative to is a
1872 // descendent of the top most parent of the tree. If it's not a descendent, then just add
1873 // the child here since it won't be added later as a relative.
1874 if (std::binary_search(layersInTree.begin(), layersInTree.end(),
1875 childState.zOrderRelativeOf.promote().get())) {
1876 continue;
1877 }
1878 traverse.add(child);
1879 }
1880
1881 return traverse;
1882}
1883
1884void Layer::traverseChildrenInZOrderInner(const std::vector<Layer*>& layersInTree,
1885 LayerVector::StateSet stateSet,
1886 const LayerVector::Visitor& visitor) {
1887 const LayerVector list = makeChildrenTraversalList(stateSet, layersInTree);
chaviwa76b2712017-09-20 12:02:26 -07001888
1889 size_t i = 0;
chaviw4b129c22018-04-09 16:19:43 -07001890 for (; i < list.size(); i++) {
1891 const auto& relative = list[i];
chaviwa76b2712017-09-20 12:02:26 -07001892 if (relative->getZ() >= 0) {
1893 break;
1894 }
chaviw4b129c22018-04-09 16:19:43 -07001895 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001896 }
chaviw4b129c22018-04-09 16:19:43 -07001897
chaviwa76b2712017-09-20 12:02:26 -07001898 visitor(this);
chaviw4b129c22018-04-09 16:19:43 -07001899 for (; i < list.size(); i++) {
1900 const auto& relative = list[i];
1901 relative->traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
chaviwa76b2712017-09-20 12:02:26 -07001902 }
1903}
1904
chaviw4b129c22018-04-09 16:19:43 -07001905std::vector<Layer*> Layer::getLayersInTree(LayerVector::StateSet stateSet) {
1906 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
1907 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
1908
1909 std::vector<Layer*> layersInTree = {this};
1910 for (size_t i = 0; i < children.size(); i++) {
1911 const auto& child = children[i];
1912 std::vector<Layer*> childLayers = child->getLayersInTree(stateSet);
1913 layersInTree.insert(layersInTree.end(), childLayers.cbegin(), childLayers.cend());
1914 }
1915
1916 return layersInTree;
1917}
1918
1919void Layer::traverseChildrenInZOrder(LayerVector::StateSet stateSet,
1920 const LayerVector::Visitor& visitor) {
1921 std::vector<Layer*> layersInTree = getLayersInTree(stateSet);
1922 std::sort(layersInTree.begin(), layersInTree.end());
1923 traverseChildrenInZOrderInner(layersInTree, stateSet, visitor);
1924}
1925
Peiyong Linefefaac2018-08-17 12:27:51 -07001926ui::Transform Layer::getTransform() const {
1927 ui::Transform t;
Chia-I Wue41dbe62017-06-13 14:10:56 -07001928 const auto& p = mDrawingParent.promote();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001929 if (p != nullptr) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001930 t = p->getTransform();
Robert Carr9b429f42017-04-17 14:56:57 -07001931
1932 // If the parent is not using NATIVE_WINDOW_SCALING_MODE_FREEZE (e.g.
1933 // it isFixedSize) then there may be additional scaling not accounted
1934 // for in the transform. We need to mirror this scaling in child surfaces
1935 // or we will break the contract where WM can treat child surfaces as
1936 // pixels in the parent surface.
David Sodman0cc69182017-11-17 12:12:07 -08001937 if (p->isFixedSize() && p->getBE().compositionInfo.mBuffer != nullptr) {
Robert Carr1725eee2017-04-26 18:32:15 -07001938 int bufferWidth;
1939 int bufferHeight;
1940 if ((p->mCurrentTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) == 0) {
David Sodman0cc69182017-11-17 12:12:07 -08001941 bufferWidth = p->getBE().compositionInfo.mBuffer->getWidth();
1942 bufferHeight = p->getBE().compositionInfo.mBuffer->getHeight();
Robert Carr1725eee2017-04-26 18:32:15 -07001943 } else {
David Sodman0cc69182017-11-17 12:12:07 -08001944 bufferHeight = p->getBE().compositionInfo.mBuffer->getWidth();
1945 bufferWidth = p->getBE().compositionInfo.mBuffer->getHeight();
Robert Carr1725eee2017-04-26 18:32:15 -07001946 }
Marissa Wall61c58622018-07-18 10:12:20 -07001947 float sx = p->getActiveWidth(p->getDrawingState()) / static_cast<float>(bufferWidth);
1948 float sy = p->getActiveHeight(p->getDrawingState()) / static_cast<float>(bufferHeight);
Peiyong Linefefaac2018-08-17 12:27:51 -07001949 ui::Transform extraParentScaling;
Robert Carr9b429f42017-04-17 14:56:57 -07001950 extraParentScaling.set(sx, 0, 0, sy);
1951 t = t * extraParentScaling;
1952 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001953 }
Marissa Wall61c58622018-07-18 10:12:20 -07001954 return t * getActiveTransform(getDrawingState());
Robert Carr1f0a16a2016-10-24 16:27:39 -07001955}
1956
chaviw13fdc492017-06-27 12:40:18 -07001957half Layer::getAlpha() const {
Ady Abraham83729882018-12-07 12:26:48 -08001958 const auto& p = mDrawingParent.promote();
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001959
chaviw13fdc492017-06-27 12:40:18 -07001960 half parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0_hf;
1961 return parentAlpha * getDrawingState().color.a;
Robert Carr6452f122017-03-21 10:41:29 -07001962}
Robert Carr6452f122017-03-21 10:41:29 -07001963
chaviw13fdc492017-06-27 12:40:18 -07001964half4 Layer::getColor() const {
1965 const half4 color(getDrawingState().color);
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001966 return half4(color.r, color.g, color.b, getAlpha());
Robert Carr6452f122017-03-21 10:41:29 -07001967}
Robert Carr6452f122017-03-21 10:41:29 -07001968
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001969Layer::RoundedCornerState Layer::getRoundedCornerState() const {
1970 const auto& p = mDrawingParent.promote();
1971 if (p != nullptr) {
1972 RoundedCornerState parentState = p->getRoundedCornerState();
1973 if (parentState.radius > 0) {
1974 ui::Transform t = getActiveTransform(getDrawingState());
1975 t = t.inverse();
1976 parentState.cropRect = t.transform(parentState.cropRect);
1977 // The rounded corners shader only accepts 1 corner radius for performance reasons,
1978 // but a transform matrix can define horizontal and vertical scales.
1979 // Let's take the average between both of them and pass into the shader, practically we
1980 // never do this type of transformation on windows anyway.
1981 parentState.radius *= (t[0][0] + t[1][1]) / 2.0f;
1982 return parentState;
1983 }
1984 }
1985 const float radius = getDrawingState().cornerRadius;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001986 return radius > 0 ? RoundedCornerState(computeBounds(), radius) : RoundedCornerState();
Lucas Dupin1b6531c2018-07-05 17:18:21 -07001987}
1988
Robert Carr1f0a16a2016-10-24 16:27:39 -07001989void Layer::commitChildList() {
1990 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
1991 const auto& child = mCurrentChildren[i];
1992 child->commitChildList();
1993 }
1994 mDrawingChildren = mCurrentChildren;
Chia-I Wue41dbe62017-06-13 14:10:56 -07001995 mDrawingParent = mCurrentParent;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001996}
1997
Robert Carr720e5062018-07-30 17:45:14 -07001998void Layer::setInputInfo(const InputWindowInfo& info) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08001999 mCurrentState.inputInfo = info;
2000 mCurrentState.modified = true;
2001 mCurrentState.inputInfoChanged = true;
Robert Carr720e5062018-07-30 17:45:14 -07002002 setTransactionFlags(eTransactionNeeded);
2003}
2004
chaviw1d044282017-09-27 12:19:28 -07002005void Layer::writeToProto(LayerProto* layerInfo, LayerVector::StateSet stateSet) {
2006 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
2007 const LayerVector& children = useDrawing ? mDrawingChildren : mCurrentChildren;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002008 const State& state = useDrawing ? mDrawingState : mCurrentState;
chaviw1d044282017-09-27 12:19:28 -07002009
Peiyong Linefefaac2018-08-17 12:27:51 -07002010 ui::Transform requestedTransform = state.active_legacy.transform;
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002011 ui::Transform transform = getTransform();
chaviw1d044282017-09-27 12:19:28 -07002012
2013 layerInfo->set_id(sequence);
2014 layerInfo->set_name(getName().c_str());
2015 layerInfo->set_type(String8(getTypeId()));
2016
2017 for (const auto& child : children) {
2018 layerInfo->add_children(child->sequence);
2019 }
2020
2021 for (const wp<Layer>& weakRelative : state.zOrderRelatives) {
2022 sp<Layer> strongRelative = weakRelative.promote();
2023 if (strongRelative != nullptr) {
2024 layerInfo->add_relatives(strongRelative->sequence);
2025 }
2026 }
2027
Marissa Wallf58c14b2018-07-24 10:50:43 -07002028 LayerProtoHelper::writeToProto(state.activeTransparentRegion_legacy,
chaviw1d044282017-09-27 12:19:28 -07002029 layerInfo->mutable_transparent_region());
2030 LayerProtoHelper::writeToProto(visibleRegion, layerInfo->mutable_visible_region());
2031 LayerProtoHelper::writeToProto(surfaceDamageRegion, layerInfo->mutable_damage_region());
2032
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002033 layerInfo->set_layer_stack(getLayerStack());
chaviw1d044282017-09-27 12:19:28 -07002034 layerInfo->set_z(state.z);
2035
2036 PositionProto* position = layerInfo->mutable_position();
2037 position->set_x(transform.tx());
2038 position->set_y(transform.ty());
2039
2040 PositionProto* requestedPosition = layerInfo->mutable_requested_position();
2041 requestedPosition->set_x(requestedTransform.tx());
2042 requestedPosition->set_y(requestedTransform.ty());
2043
2044 SizeProto* size = layerInfo->mutable_size();
Marissa Wallf58c14b2018-07-24 10:50:43 -07002045 size->set_w(state.active_legacy.w);
2046 size->set_h(state.active_legacy.h);
chaviw1d044282017-09-27 12:19:28 -07002047
Marissa Wallf58c14b2018-07-24 10:50:43 -07002048 LayerProtoHelper::writeToProto(state.crop_legacy, layerInfo->mutable_crop());
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002049 layerInfo->set_corner_radius(getRoundedCornerState().radius);
chaviw1d044282017-09-27 12:19:28 -07002050
2051 layerInfo->set_is_opaque(isOpaque(state));
2052 layerInfo->set_invalidate(contentDirty);
Chia-I Wu01591c92018-05-22 12:03:00 -07002053
2054 // XXX (b/79210409) mCurrentDataSpace is not protected
2055 layerInfo->set_dataspace(dataspaceDetails(static_cast<android_dataspace>(mCurrentDataSpace)));
2056
chaviw1d044282017-09-27 12:19:28 -07002057 layerInfo->set_pixel_format(decodePixelFormat(getPixelFormat()));
2058 LayerProtoHelper::writeToProto(getColor(), layerInfo->mutable_color());
2059 LayerProtoHelper::writeToProto(state.color, layerInfo->mutable_requested_color());
2060 layerInfo->set_flags(state.flags);
2061
2062 LayerProtoHelper::writeToProto(transform, layerInfo->mutable_transform());
2063 LayerProtoHelper::writeToProto(requestedTransform, layerInfo->mutable_requested_transform());
2064
Jorim Jaggi8e0af362017-11-14 16:28:28 +01002065 auto parent = useDrawing ? mDrawingParent.promote() : mCurrentParent.promote();
chaviw1d044282017-09-27 12:19:28 -07002066 if (parent != nullptr) {
2067 layerInfo->set_parent(parent->sequence);
2068 }
2069
2070 auto zOrderRelativeOf = state.zOrderRelativeOf.promote();
2071 if (zOrderRelativeOf != nullptr) {
2072 layerInfo->set_z_order_relative_of(zOrderRelativeOf->sequence);
2073 }
2074
Chia-I Wu01591c92018-05-22 12:03:00 -07002075 // XXX getBE().compositionInfo.mBuffer is not protected
David Sodman0cc69182017-11-17 12:12:07 -08002076 auto buffer = getBE().compositionInfo.mBuffer;
David Sodman5b4cffc2017-11-23 13:20:29 -08002077 if (buffer != nullptr) {
2078 LayerProtoHelper::writeToProto(buffer, layerInfo->mutable_active_buffer());
Peiyong Linefefaac2018-08-17 12:27:51 -07002079 LayerProtoHelper::writeToProto(ui::Transform(mCurrentTransform),
Yichi Chen6ca35192018-05-29 12:20:43 +08002080 layerInfo->mutable_buffer_transform());
chaviw1d044282017-09-27 12:19:28 -07002081 }
2082
2083 layerInfo->set_queued_frames(getQueuedFrameCount());
2084 layerInfo->set_refresh_pending(isBufferLatched());
rongliucfb187b2018-03-14 12:26:23 -07002085 layerInfo->set_window_type(state.type);
2086 layerInfo->set_app_id(state.appId);
chaviwadc40c22018-07-10 16:57:27 -07002087 layerInfo->set_curr_frame(mCurrentFrameNumber);
Vishnu Nairf2deb822018-11-12 17:53:48 -08002088 layerInfo->set_effective_scaling_mode(getEffectiveScalingMode());
chaviwadc40c22018-07-10 16:57:27 -07002089
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002090 for (const auto& pendingState : mPendingStates) {
Marissa Wallf58c14b2018-07-24 10:50:43 -07002091 auto barrierLayer = pendingState.barrierLayer_legacy.promote();
chaviwadc40c22018-07-10 16:57:27 -07002092 if (barrierLayer != nullptr) {
2093 BarrierLayerProto* barrierLayerProto = layerInfo->add_barrier_layer();
2094 barrierLayerProto->set_id(barrierLayer->sequence);
Marissa Wallf58c14b2018-07-24 10:50:43 -07002095 barrierLayerProto->set_frame_number(pendingState.frameNumber_legacy);
chaviwadc40c22018-07-10 16:57:27 -07002096 }
2097 }
chaviw1d044282017-09-27 12:19:28 -07002098}
2099
Dominik Laskowski075d3172018-05-24 15:50:06 -07002100void Layer::writeToProto(LayerProto* layerInfo, DisplayId displayId) {
Peiyong Lin91b1df22018-06-18 18:00:16 -07002101 if (!hasHwcLayer(displayId)) {
2102 return;
2103 }
2104
Yiwei Zhang7124ad32018-02-21 13:02:45 -08002105 writeToProto(layerInfo, LayerVector::StateSet::Drawing);
2106
Dominik Laskowski7e045462018-05-30 13:02:02 -07002107 const auto& hwcInfo = getBE().mHwcLayers.at(displayId);
Yiwei Zhang7124ad32018-02-21 13:02:45 -08002108
2109 const Rect& frame = hwcInfo.displayFrame;
2110 LayerProtoHelper::writeToProto(frame, layerInfo->mutable_hwc_frame());
2111
2112 const FloatRect& crop = hwcInfo.sourceCrop;
2113 LayerProtoHelper::writeToProto(crop, layerInfo->mutable_hwc_crop());
2114
2115 const int32_t transform = static_cast<int32_t>(hwcInfo.transform);
2116 layerInfo->set_hwc_transform(transform);
Yiwei Zhang60d1a192018-03-07 14:52:28 -08002117
2118 const int32_t compositionType = static_cast<int32_t>(hwcInfo.compositionType);
2119 layerInfo->set_hwc_composition_type(compositionType);
2120
2121 if (std::strcmp(getTypeId(), "BufferLayer") == 0 &&
2122 static_cast<BufferLayer*>(this)->isProtected()) {
2123 layerInfo->set_is_protected(true);
2124 } else {
2125 layerInfo->set_is_protected(false);
2126 }
Yiwei Zhang7124ad32018-02-21 13:02:45 -08002127}
2128
Robert Carr2e102c92018-10-23 12:11:15 -07002129bool Layer::isRemovedFromCurrentState() const {
2130 return mRemovedFromCurrentState;
2131}
2132
Robert Carr720e5062018-07-30 17:45:14 -07002133InputWindowInfo Layer::fillInputInfo(const Rect& screenBounds) {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002134 InputWindowInfo info = mDrawingState.inputInfo;
Robert Carr720e5062018-07-30 17:45:14 -07002135
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002136 ui::Transform t = getTransform();
2137 const float xScale = t.sx();
2138 const float yScale = t.sy();
2139 if (xScale != 1.0f || yScale != 1.0f) {
2140 info.windowXScale *= 1.0f / xScale;
2141 info.windowYScale *= 1.0f / yScale;
2142 info.touchableRegion.scaleSelf(xScale, yScale);
Riddle Hsu39d4aa52018-11-30 20:46:53 +08002143 }
Robert Carre07e1032018-11-26 12:55:53 -08002144
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002145 // Transform layer size to screen space and inset it by surface insets.
2146 Rect layerBounds = getCroppedBufferSize(getDrawingState());
Vishnu Nair8033a492018-12-05 07:27:23 -08002147 layerBounds = t.transform(layerBounds);
2148 layerBounds.inset(info.surfaceInset, info.surfaceInset, info.surfaceInset, info.surfaceInset);
2149
2150 // Intersect with screen bounds to shrink the frame by the surface insets. The surface insets
2151 // are not set on the screen bounds directly since the surface inset region may already be
2152 // cropped by a parent layer.
2153 Rect frame;
2154 screenBounds.intersect(layerBounds, &frame);
2155
2156 info.frameLeft = frame.left;
2157 info.frameTop = frame.top;
2158 info.frameRight = frame.right;
2159 info.frameBottom = frame.bottom;
2160
2161 // Position the touchable region relative to frame screen location and restrict it to frame
2162 // bounds.
2163 info.touchableRegion = info.touchableRegion.translate(info.frameLeft, info.frameTop);
Robert Carr720e5062018-07-30 17:45:14 -07002164 info.visible = isVisible();
2165 return info;
2166}
2167
2168bool Layer::hasInput() const {
Lloyd Pique0449b0f2018-12-20 16:23:45 -08002169 return mDrawingState.inputInfo.token != nullptr;
Robert Carr720e5062018-07-30 17:45:14 -07002170}
2171
Mathias Agopian13127d82013-03-05 17:47:11 -08002172// ---------------------------------------------------------------------------
2173
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002174}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002175
2176#if defined(__gl_h_)
2177#error "don't include gl/gl.h in this file"
2178#endif
2179
2180#if defined(__gl2_h_)
2181#error "don't include gl2/gl2.h in this file"
2182#endif