blob: 861a7d93b7756150abeacc6399506b8753ee6ffa [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
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080022#include <stdlib.h>
23#include <stdint.h>
24#include <sys/types.h>
Mathias Agopian13127d82013-03-05 17:47:11 -080025#include <math.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080026
Mathias Agopiana67932f2011-04-20 14:20:59 -070027#include <cutils/compiler.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070028#include <cutils/native_handle.h>
Mathias Agopiana67932f2011-04-20 14:20:59 -070029#include <cutils/properties.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080030
31#include <utils/Errors.h>
32#include <utils/Log.h>
Jesse Hall399184a2014-03-03 15:42:54 -080033#include <utils/NativeHandle.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080034#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080035#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036
Mathias Agopian3330b202009-10-05 17:07:12 -070037#include <ui/GraphicBuffer.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038#include <ui/PixelFormat.h>
Mathias Agopian9cce3252010-02-09 17:46:37 -080039
Dan Stoza6b9454d2014-11-07 16:00:59 -080040#include <gui/BufferItem.h>
Mathias Agopiana9347642017-02-13 16:42:28 -080041#include <gui/BufferQueue.h>
Mathias Agopian90ac7992012-02-25 18:48:35 -080042#include <gui/Surface.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080043
44#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020045#include "Colorizer.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070046#include "DisplayDevice.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080047#include "Layer.h"
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070048#include "LayerRejecter.h"
Dan Stozab9b08832014-03-13 11:55:57 -070049#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080051
Mathias Agopian1b031492012-06-20 17:51:20 -070052#include "DisplayHardware/HWComposer.h"
53
Mathias Agopian875d8e12013-06-07 15:35:48 -070054#include "RenderEngine/RenderEngine.h"
55
Dan Stozac5da2712016-07-20 15:38:12 -070056#include <mutex>
57
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080058#define DEBUG_RESIZE 0
59
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060namespace android {
61
62// ---------------------------------------------------------------------------
63
Mathias Agopian13127d82013-03-05 17:47:11 -080064int32_t Layer::sSequence = 1;
65
Mathias Agopian4d9b8222013-03-12 17:11:48 -070066Layer::Layer(SurfaceFlinger* flinger, const sp<Client>& client,
67 const String8& name, uint32_t w, uint32_t h, uint32_t flags)
Mathias Agopian13127d82013-03-05 17:47:11 -080068 : contentDirty(false),
69 sequence(uint32_t(android_atomic_inc(&sSequence))),
70 mFlinger(flinger),
Mathias Agopiana67932f2011-04-20 14:20:59 -070071 mTextureName(-1U),
Mathias Agopian13127d82013-03-05 17:47:11 -080072 mPremultipliedAlpha(true),
73 mName("unnamed"),
Mathias Agopian13127d82013-03-05 17:47:11 -080074 mFormat(PIXEL_FORMAT_NONE),
Mathias Agopian13127d82013-03-05 17:47:11 -080075 mTransactionFlags(0),
Dan Stoza7dde5992015-05-22 09:51:44 -070076 mPendingStateMutex(),
77 mPendingStates(),
Mathias Agopiana67932f2011-04-20 14:20:59 -070078 mQueuedFrames(0),
Jesse Hall399184a2014-03-03 15:42:54 -080079 mSidebandStreamChanged(false),
Mathias Agopiana9347642017-02-13 16:42:28 -080080 mActiveBufferSlot(BufferQueue::INVALID_BUFFER_SLOT),
Mathias Agopiana67932f2011-04-20 14:20:59 -070081 mCurrentTransform(0),
Mathias Agopian933389f2011-07-18 16:15:08 -070082 mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
Robert Carrc3574f72016-03-24 12:19:32 -070083 mOverrideScalingMode(-1),
Mathias Agopiana67932f2011-04-20 14:20:59 -070084 mCurrentOpacity(true),
Brian Andersond6927fb2016-07-23 23:37:30 -070085 mBufferLatched(false),
Dan Stozacac35382016-01-27 12:21:06 -080086 mCurrentFrameNumber(0),
Brian Anderson8cc8b102016-10-21 12:43:09 -070087 mPreviousFrameNumber(0),
Mathias Agopian4d143ee2012-02-23 20:05:39 -080088 mRefreshPending(false),
Mathias Agopian82d7ab62012-01-19 18:34:40 -080089 mFrameLatencyNeeded(false),
Mathias Agopian13127d82013-03-05 17:47:11 -080090 mFiltering(false),
91 mNeedsFiltering(false),
Mathias Agopian5cdc8992013-08-13 20:51:23 -070092 mMesh(Mesh::TRIANGLE_FAN, 4, 2, 2),
Fabien Sanglard9d96de42016-10-11 00:15:18 +000093#ifndef USE_HWC2
94 mIsGlesComposition(false),
95#endif
Mathias Agopian13127d82013-03-05 17:47:11 -080096 mProtectedByApp(false),
97 mHasSurface(false),
Riley Andrews03414a12014-07-01 14:22:59 -070098 mClientRef(client),
Dan Stozaa4650a52015-05-12 12:56:16 -070099 mPotentialCursor(false),
100 mQueueItemLock(),
101 mQueueItemCondition(),
102 mQueueItems(),
Dan Stoza65476f32015-05-14 09:27:25 -0700103 mLastFrameNumberReceived(0),
Pablo Ceballos04839ab2015-11-13 13:39:23 -0800104 mUpdateTexImageFailed(false),
Robert Carr82364e32016-05-15 11:27:47 -0700105 mAutoRefresh(false),
106 mFreezePositionUpdates(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107{
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000108#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800109 ALOGV("Creating Layer %s", name.string());
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000110#endif
Dan Stoza9e56aa02015-11-02 13:00:03 -0800111
Mathias Agopiana67932f2011-04-20 14:20:59 -0700112 mCurrentCrop.makeInvalid();
Mathias Agopian3f844832013-08-07 21:24:32 -0700113 mFlinger->getRenderEngine().genTextures(1, &mTextureName);
Mathias Agopian49457ac2013-08-14 18:20:17 -0700114 mTexture.init(Texture::TEXTURE_EXTERNAL, mTextureName);
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700115
116 uint32_t layerFlags = 0;
117 if (flags & ISurfaceComposerClient::eHidden)
Andy McFadden4125a4f2014-01-29 17:17:11 -0800118 layerFlags |= layer_state_t::eLayerHidden;
119 if (flags & ISurfaceComposerClient::eOpaque)
120 layerFlags |= layer_state_t::eLayerOpaque;
Dan Stoza23116082015-06-18 14:58:39 -0700121 if (flags & ISurfaceComposerClient::eSecure)
122 layerFlags |= layer_state_t::eLayerSecure;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700123
124 if (flags & ISurfaceComposerClient::eNonPremultiplied)
125 mPremultipliedAlpha = false;
126
127 mName = name;
128
129 mCurrentState.active.w = w;
130 mCurrentState.active.h = h;
Robert Carr3dcabfa2016-03-01 18:36:58 -0800131 mCurrentState.active.transform.set(0, 0);
Robert Carrb5d3d262016-03-25 15:08:13 -0700132 mCurrentState.crop.makeInvalid();
133 mCurrentState.finalCrop.makeInvalid();
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700134 mCurrentState.z = 0;
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000135#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800136 mCurrentState.alpha = 1.0f;
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000137#else
138 mCurrentState.alpha = 0xFF;
139#endif
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700140 mCurrentState.layerStack = 0;
141 mCurrentState.flags = layerFlags;
142 mCurrentState.sequence = 0;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700143 mCurrentState.requested = mCurrentState.active;
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -0700144 mCurrentState.dataSpace = HAL_DATASPACE_UNKNOWN;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500145 mCurrentState.appId = 0;
146 mCurrentState.type = 0;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700147
148 // drawing state & current state are identical
149 mDrawingState = mCurrentState;
Jamie Gennis6547ff42013-07-16 20:12:42 -0700150
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000151#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800152 const auto& hwc = flinger->getHwComposer();
153 const auto& activeConfig = hwc.getActiveConfig(HWC_DISPLAY_PRIMARY);
154 nsecs_t displayPeriod = activeConfig->getVsyncPeriod();
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000155#else
156 nsecs_t displayPeriod =
157 flinger->getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
158#endif
Jamie Gennis6547ff42013-07-16 20:12:42 -0700159 mFrameTracker.setDisplayRefreshPeriod(displayPeriod);
Brian Anderson0a61b0c2016-12-07 14:55:56 -0800160
161 CompositorTiming compositorTiming;
162 flinger->getCompositorTiming(&compositorTiming);
163 mFrameEventHistory.initializeCompositorTiming(compositorTiming);
Jamie Gennise8696a42012-01-15 18:54:57 -0800164}
165
Mathias Agopian3f844832013-08-07 21:24:32 -0700166void Layer::onFirstRef() {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800167 // Creates a custom BufferQueue for SurfaceFlingerConsumer to use
Dan Stozab3d0bdf2014-04-07 16:33:59 -0700168 sp<IGraphicBufferProducer> producer;
169 sp<IGraphicBufferConsumer> consumer;
Romain Guyf8b4ca52017-03-16 18:39:20 +0000170 BufferQueue::createBufferQueue(&producer, &consumer, nullptr, true);
Robert Carr1db73f62016-12-21 12:58:51 -0800171 mProducer = new MonitoredProducer(producer, mFlinger, this);
Irvel468051e2016-06-13 16:44:44 -0700172 mSurfaceFlingerConsumer = new SurfaceFlingerConsumer(consumer, mTextureName, this);
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800173 mSurfaceFlingerConsumer->setConsumerUsageBits(getEffectiveUsage(0));
Jesse Hall399184a2014-03-03 15:42:54 -0800174 mSurfaceFlingerConsumer->setContentsChangedListener(this);
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700175 mSurfaceFlingerConsumer->setName(mName);
Daniel Lamb2675792012-02-23 14:35:13 -0800176
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800177 if (mFlinger->isLayerTripleBufferingDisabled()) {
178 mProducer->setMaxDequeuedBufferCount(2);
179 }
Andy McFadden69052052012-09-14 16:10:11 -0700180
Mathias Agopian84300952012-11-21 16:02:13 -0800181 const sp<const DisplayDevice> hw(mFlinger->getDefaultDisplayDevice());
182 updateTransformHint(hw);
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700183}
184
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700185Layer::~Layer() {
Pablo Ceballos8ea4e7b2016-03-03 15:20:02 -0800186 sp<Client> c(mClientRef.promote());
187 if (c != 0) {
188 c->detachLayer(this);
189 }
190
Dan Stozacac35382016-01-27 12:21:06 -0800191 for (auto& point : mRemoteSyncPoints) {
192 point->setTransactionApplied();
193 }
Dan Stozac8145172016-04-28 16:29:06 -0700194 for (auto& point : mLocalSyncPoints) {
195 point->setFrameAvailable();
196 }
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700197 mFlinger->deleteTextureAsync(mTextureName);
Jamie Gennis6547ff42013-07-16 20:12:42 -0700198 mFrameTracker.logAndResetStats(mName);
Mathias Agopian96f08192010-06-02 23:28:45 -0700199}
200
Mathias Agopian13127d82013-03-05 17:47:11 -0800201// ---------------------------------------------------------------------------
202// callbacks
203// ---------------------------------------------------------------------------
204
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000205#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800206void Layer::onLayerDisplayed(const sp<Fence>& releaseFence) {
207 if (mHwcLayers.empty()) {
208 return;
209 }
210 mSurfaceFlingerConsumer->setReleaseFence(releaseFence);
211}
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000212#else
213void Layer::onLayerDisplayed(const sp<const DisplayDevice>& /* hw */,
214 HWComposer::HWCLayerInterface* layer) {
215 if (layer) {
216 layer->onDisplayed();
217 mSurfaceFlingerConsumer->setReleaseFence(layer->getAndResetReleaseFence());
218 }
219}
220#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800221
Dan Stoza6b9454d2014-11-07 16:00:59 -0800222void Layer::onFrameAvailable(const BufferItem& item) {
223 // Add this buffer from our internal queue tracker
224 { // Autolock scope
225 Mutex::Autolock lock(mQueueItemLock);
Irvel468051e2016-06-13 16:44:44 -0700226 mFlinger->mInterceptor.saveBufferUpdate(this, item.mGraphicBuffer->getWidth(),
227 item.mGraphicBuffer->getHeight(), item.mFrameNumber);
Dan Stozaa4650a52015-05-12 12:56:16 -0700228 // Reset the frame number tracker when we receive the first buffer after
229 // a frame number reset
230 if (item.mFrameNumber == 1) {
231 mLastFrameNumberReceived = 0;
232 }
233
234 // Ensure that callbacks are handled in order
235 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
236 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
237 ms2ns(500));
238 if (result != NO_ERROR) {
239 ALOGE("[%s] Timed out waiting on callback", mName.string());
240 }
241 }
242
Dan Stoza6b9454d2014-11-07 16:00:59 -0800243 mQueueItems.push_back(item);
Dan Stozaecc50402015-04-28 14:42:06 -0700244 android_atomic_inc(&mQueuedFrames);
Dan Stozaa4650a52015-05-12 12:56:16 -0700245
246 // Wake up any pending callbacks
247 mLastFrameNumberReceived = item.mFrameNumber;
248 mQueueItemCondition.broadcast();
Dan Stoza6b9454d2014-11-07 16:00:59 -0800249 }
250
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800251 mFlinger->signalLayerUpdate();
Mathias Agopian579b3f82010-06-08 19:54:15 -0700252}
253
Dan Stoza6b9454d2014-11-07 16:00:59 -0800254void Layer::onFrameReplaced(const BufferItem& item) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700255 { // Autolock scope
256 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaa4650a52015-05-12 12:56:16 -0700257
Dan Stoza7dde5992015-05-22 09:51:44 -0700258 // Ensure that callbacks are handled in order
259 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
260 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
261 ms2ns(500));
262 if (result != NO_ERROR) {
263 ALOGE("[%s] Timed out waiting on callback", mName.string());
264 }
Dan Stozaa4650a52015-05-12 12:56:16 -0700265 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700266
267 if (mQueueItems.empty()) {
268 ALOGE("Can't replace a frame on an empty queue");
269 return;
270 }
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700271 mQueueItems.editItemAt(mQueueItems.size() - 1) = item;
Dan Stoza7dde5992015-05-22 09:51:44 -0700272
273 // Wake up any pending callbacks
274 mLastFrameNumberReceived = item.mFrameNumber;
275 mQueueItemCondition.broadcast();
Dan Stozaa4650a52015-05-12 12:56:16 -0700276 }
Dan Stoza6b9454d2014-11-07 16:00:59 -0800277}
278
Jesse Hall399184a2014-03-03 15:42:54 -0800279void Layer::onSidebandStreamChanged() {
280 if (android_atomic_release_cas(false, true, &mSidebandStreamChanged) == 0) {
281 // mSidebandStreamChanged was false
282 mFlinger->signalLayerUpdate();
283 }
284}
285
Mathias Agopian67106042013-03-14 19:18:13 -0700286// called with SurfaceFlinger::mStateLock from the drawing thread after
287// the layer has been remove from the current state list (and just before
288// it's removed from the drawing state list)
Mathias Agopian13127d82013-03-05 17:47:11 -0800289void Layer::onRemoved() {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800290 mSurfaceFlingerConsumer->abandon();
Robert Carr1f0a16a2016-10-24 16:27:39 -0700291 for (const auto& child : mCurrentChildren) {
292 child->onRemoved();
293 }
Mathias Agopian48d819a2009-09-10 19:41:18 -0700294}
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700295
Mathias Agopian13127d82013-03-05 17:47:11 -0800296// ---------------------------------------------------------------------------
297// set-up
298// ---------------------------------------------------------------------------
299
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700300const String8& Layer::getName() const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800301 return mName;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800302}
303
Mathias Agopianf9d93272009-06-19 17:00:27 -0700304status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800305 PixelFormat format, uint32_t flags)
306{
Mathias Agopianca99fb82010-04-14 16:43:44 -0700307 uint32_t const maxSurfaceDims = min(
Mathias Agopiana4912602012-07-12 14:25:33 -0700308 mFlinger->getMaxTextureSize(), mFlinger->getMaxViewportDims());
Mathias Agopianca99fb82010-04-14 16:43:44 -0700309
310 // never allow a surface larger than what our underlying GL implementation
311 // can handle.
312 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
Mathias Agopianff615cc2012-02-24 14:58:36 -0800313 ALOGE("dimensions too large %u x %u", uint32_t(w), uint32_t(h));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700314 return BAD_VALUE;
315 }
316
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700317 mFormat = format;
Mathias Agopianeff062c2010-08-25 14:59:15 -0700318
Riley Andrews03414a12014-07-01 14:22:59 -0700319 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700320 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700321 mCurrentOpacity = getOpacityForFormat(format);
322
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800323 mSurfaceFlingerConsumer->setDefaultBufferSize(w, h);
324 mSurfaceFlingerConsumer->setDefaultBufferFormat(format);
325 mSurfaceFlingerConsumer->setConsumerUsageBits(getEffectiveUsage(0));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700326
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800327 return NO_ERROR;
328}
329
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700330sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800331 Mutex::Autolock _l(mLock);
332
333 LOG_ALWAYS_FATAL_IF(mHasSurface,
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700334 "Layer::getHandle() has already been called");
Mathias Agopian13127d82013-03-05 17:47:11 -0800335
336 mHasSurface = true;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700337
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700338 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800339}
340
Dan Stozab9b08832014-03-13 11:55:57 -0700341sp<IGraphicBufferProducer> Layer::getProducer() const {
342 return mProducer;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700343}
344
Mathias Agopian13127d82013-03-05 17:47:11 -0800345// ---------------------------------------------------------------------------
346// h/w composer set-up
347// ---------------------------------------------------------------------------
348
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800349Rect Layer::getContentCrop() const {
350 // this is the crop rectangle that applies to the buffer
351 // itself (as opposed to the window)
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700352 Rect crop;
353 if (!mCurrentCrop.isEmpty()) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800354 // if the buffer crop is defined, we use that
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700355 crop = mCurrentCrop;
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800356 } else if (mActiveBuffer != NULL) {
357 // otherwise we use the whole buffer
358 crop = mActiveBuffer->getBounds();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700359 } else {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800360 // if we don't have a buffer yet, we use an empty/invalid crop
Mathias Agopian4fec8732012-06-29 14:12:52 -0700361 crop.makeInvalid();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700362 }
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700363 return crop;
364}
365
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700366static Rect reduce(const Rect& win, const Region& exclude) {
367 if (CC_LIKELY(exclude.isEmpty())) {
368 return win;
369 }
370 if (exclude.isRect()) {
371 return win.reduce(exclude.getBounds());
372 }
373 return Region(win).subtract(exclude).getBounds();
374}
375
Robert Carr1f0a16a2016-10-24 16:27:39 -0700376Rect Layer::computeScreenBounds(bool reduceTransparentRegion) const {
377 const Layer::State& s(getDrawingState());
378 Rect win(s.active.w, s.active.h);
379
380 if (!s.crop.isEmpty()) {
381 win.intersect(s.crop, &win);
382 }
383
384 Transform t = getTransform();
385 win = t.transform(win);
386
387 const sp<Layer>& p = getParent();
388 // Now we need to calculate the parent bounds, so we can clip ourselves to those.
389 // When calculating the parent bounds for purposes of clipping,
390 // we don't need to constrain the parent to its transparent region.
391 // The transparent region is an optimization based on the
392 // buffer contents of the layer, but does not affect the space allocated to
393 // it by policy, and thus children should be allowed to extend into the
394 // parent's transparent region. In fact one of the main uses, is to reduce
395 // buffer allocation size in cases where a child window sits behind a main window
396 // (by marking the hole in the parent window as a transparent region)
397 if (p != nullptr) {
398 Rect bounds = p->computeScreenBounds(false);
399 bounds.intersect(win, &win);
400 }
401
402 if (reduceTransparentRegion) {
403 auto const screenTransparentRegion = t.transform(s.activeTransparentRegion);
404 win = reduce(win, screenTransparentRegion);
405 }
406
407 return win;
408}
409
Mathias Agopian13127d82013-03-05 17:47:11 -0800410Rect Layer::computeBounds() const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700411 const Layer::State& s(getDrawingState());
Michael Lentine6c925ed2014-09-26 17:55:01 -0700412 return computeBounds(s.activeTransparentRegion);
413}
414
415Rect Layer::computeBounds(const Region& activeTransparentRegion) const {
416 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800417 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700418
419 if (!s.crop.isEmpty()) {
420 win.intersect(s.crop, &win);
Mathias Agopian13127d82013-03-05 17:47:11 -0800421 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700422
423 Rect bounds = win;
424 const auto& p = getParent();
425 if (p != nullptr) {
Robert Carrde9ec442017-02-08 17:43:36 -0800426 // Look in computeScreenBounds recursive call for explanation of
427 // why we pass false here.
428 bounds = p->computeScreenBounds(false /* reduceTransparentRegion */);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700429 }
430
431 Transform t = getTransform();
432 if (p != nullptr) {
433 win = t.transform(win);
434 win.intersect(bounds, &win);
435 win = t.inverse().transform(win);
436 }
437
Mathias Agopian6c7f25a2013-05-09 20:37:10 -0700438 // subtract the transparent region and snap to the bounds
Michael Lentine6c925ed2014-09-26 17:55:01 -0700439 return reduce(win, activeTransparentRegion);
Mathias Agopian13127d82013-03-05 17:47:11 -0800440}
441
Robert Carr1f0a16a2016-10-24 16:27:39 -0700442Rect Layer::computeInitialCrop(const sp<const DisplayDevice>& hw) const {
Robert Carrb5d3d262016-03-25 15:08:13 -0700443 // the crop is the area of the window that gets cropped, but not
Mathias Agopian13127d82013-03-05 17:47:11 -0800444 // scaled in any ways.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700445 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800446
447 // apply the projection's clipping to the window crop in
448 // layerstack space, and convert-back to layer space.
Mathias Agopian6b442672013-07-09 21:24:52 -0700449 // if there are no window scaling involved, this operation will map to full
450 // pixels in the buffer.
451 // FIXME: the 3 lines below can produce slightly incorrect clipping when we have
452 // a viewport clipping and a window transform. we should use floating point to fix this.
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700453
454 Rect activeCrop(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700455 if (!s.crop.isEmpty()) {
456 activeCrop = s.crop;
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700457 }
458
Robert Carr1f0a16a2016-10-24 16:27:39 -0700459 Transform t = getTransform();
460 activeCrop = t.transform(activeCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000461 if (!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
462 activeCrop.clear();
463 }
Robert Carrb5d3d262016-03-25 15:08:13 -0700464 if (!s.finalCrop.isEmpty()) {
465 if(!activeCrop.intersect(s.finalCrop, &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000466 activeCrop.clear();
467 }
468 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700469 return activeCrop;
470}
471
Dan Stoza5a423ea2017-02-16 14:10:39 -0800472FloatRect Layer::computeCrop(const sp<const DisplayDevice>& hw) const {
Robert Carr1f0a16a2016-10-24 16:27:39 -0700473 // the content crop is the area of the content that gets scaled to the
474 // layer's size. This is in buffer space.
Dan Stoza5a423ea2017-02-16 14:10:39 -0800475 FloatRect crop = getContentCrop().toFloatRect();
Robert Carr1f0a16a2016-10-24 16:27:39 -0700476
477 // In addition there is a WM-specified crop we pull from our drawing state.
478 const State& s(getDrawingState());
479
480 // Screen space to make reduction to parent crop clearer.
481 Rect activeCrop = computeInitialCrop(hw);
482 const auto& p = getParent();
483 if (p != nullptr) {
484 auto parentCrop = p->computeInitialCrop(hw);
485 activeCrop.intersect(parentCrop, &activeCrop);
486 }
487 Transform t = getTransform();
488 // Back to layer space to work with the content crop.
489 activeCrop = t.inverse().transform(activeCrop);
Mathias Agopian13127d82013-03-05 17:47:11 -0800490
Michael Lentine28ea2172014-11-19 18:32:37 -0800491 // This needs to be here as transform.transform(Rect) computes the
492 // transformed rect and then takes the bounding box of the result before
493 // returning. This means
494 // transform.inverse().transform(transform.transform(Rect)) != Rect
495 // in which case we need to make sure the final rect is clipped to the
496 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000497 if (!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
498 activeCrop.clear();
499 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800500
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700501 // subtract the transparent region and snap to the bounds
502 activeCrop = reduce(activeCrop, s.activeTransparentRegion);
503
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000504 // Transform the window crop to match the buffer coordinate system,
505 // which means using the inverse of the current transform set on the
506 // SurfaceFlingerConsumer.
507 uint32_t invTransform = mCurrentTransform;
508 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
509 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700510 * the code below applies the primary display's inverse transform to the
511 * buffer
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000512 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700513 uint32_t invTransformOrient =
514 DisplayDevice::getPrimaryDisplayOrientationTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000515 // calculate the inverse transform
516 if (invTransformOrient & NATIVE_WINDOW_TRANSFORM_ROT_90) {
517 invTransformOrient ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
518 NATIVE_WINDOW_TRANSFORM_FLIP_H;
Mathias Agopian13127d82013-03-05 17:47:11 -0800519 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000520 // and apply to the current transform
Pablo Ceballos0f5131f2016-05-17 13:34:45 -0700521 invTransform = (Transform(invTransformOrient) * Transform(invTransform))
522 .getOrientation();
Mathias Agopian13127d82013-03-05 17:47:11 -0800523 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000524
525 int winWidth = s.active.w;
526 int winHeight = s.active.h;
527 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
528 // If the activeCrop has been rotate the ends are rotated but not
529 // the space itself so when transforming ends back we can't rely on
530 // a modification of the axes of rotation. To account for this we
531 // need to reorient the inverse rotation in terms of the current
532 // axes of rotation.
533 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
534 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
535 if (is_h_flipped == is_v_flipped) {
536 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
537 NATIVE_WINDOW_TRANSFORM_FLIP_H;
538 }
539 winWidth = s.active.h;
540 winHeight = s.active.w;
541 }
542 const Rect winCrop = activeCrop.transform(
543 invTransform, s.active.w, s.active.h);
544
545 // below, crop is intersected with winCrop expressed in crop's coordinate space
546 float xScale = crop.getWidth() / float(winWidth);
547 float yScale = crop.getHeight() / float(winHeight);
548
549 float insetL = winCrop.left * xScale;
550 float insetT = winCrop.top * yScale;
551 float insetR = (winWidth - winCrop.right ) * xScale;
552 float insetB = (winHeight - winCrop.bottom) * yScale;
553
554 crop.left += insetL;
555 crop.top += insetT;
556 crop.right -= insetR;
557 crop.bottom -= insetB;
558
Mathias Agopian13127d82013-03-05 17:47:11 -0800559 return crop;
560}
561
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000562#ifdef USE_HWC2
Robert Carrae060832016-11-28 10:51:00 -0800563void Layer::setGeometry(const sp<const DisplayDevice>& displayDevice, uint32_t z)
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000564#else
565void Layer::setGeometry(
566 const sp<const DisplayDevice>& hw,
567 HWComposer::HWCLayerInterface& layer)
568#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700569{
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000570#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800571 const auto hwcId = displayDevice->getHwcDisplayId();
572 auto& hwcInfo = mHwcLayers[hwcId];
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000573#else
574 layer.setDefaultState();
575#endif
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700576
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700577 // enable this layer
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000578#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800579 hwcInfo.forceClientComposition = false;
580
581 if (isSecure() && !displayDevice->isSecure()) {
582 hwcInfo.forceClientComposition = true;
583 }
584
585 auto& hwcLayer = hwcInfo.layer;
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000586#else
587 layer.setSkip(false);
588
589 if (isSecure() && !hw->isSecure()) {
590 layer.setSkip(true);
591 }
592#endif
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700593
Mathias Agopian13127d82013-03-05 17:47:11 -0800594 // this gives us only the "orientation" component of the transform
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700595 const State& s(getDrawingState());
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000596#ifdef USE_HWC2
David Revemanecf0fa52017-03-03 11:32:44 -0500597 auto blendMode = HWC2::BlendMode::None;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800598 if (!isOpaque(s) || s.alpha != 1.0f) {
David Revemanecf0fa52017-03-03 11:32:44 -0500599 blendMode = mPremultipliedAlpha ?
Dan Stoza9e56aa02015-11-02 13:00:03 -0800600 HWC2::BlendMode::Premultiplied : HWC2::BlendMode::Coverage;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800601 }
David Revemanecf0fa52017-03-03 11:32:44 -0500602 auto error = hwcLayer->setBlendMode(blendMode);
603 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set blend mode %s:"
604 " %s (%d)", mName.string(), to_string(blendMode).c_str(),
605 to_string(error).c_str(), static_cast<int32_t>(error));
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000606#else
607 if (!isOpaque(s) || s.alpha != 0xFF) {
608 layer.setBlending(mPremultipliedAlpha ?
609 HWC_BLENDING_PREMULT :
610 HWC_BLENDING_COVERAGE);
611 }
612#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800613
614 // apply the layer's transform, followed by the display's global transform
615 // here we're guaranteed that the layer's transform preserves rects
Michael Lentine6c925ed2014-09-26 17:55:01 -0700616 Region activeTransparentRegion(s.activeTransparentRegion);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700617 Transform t = getTransform();
Robert Carrb5d3d262016-03-25 15:08:13 -0700618 if (!s.crop.isEmpty()) {
619 Rect activeCrop(s.crop);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700620 activeCrop = t.transform(activeCrop);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000621#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000622 if(!activeCrop.intersect(displayDevice->getViewport(), &activeCrop)) {
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000623#else
624 if(!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
625#endif
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000626 activeCrop.clear();
627 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700628 activeCrop = t.inverse().transform(activeCrop, true);
Michael Lentine28ea2172014-11-19 18:32:37 -0800629 // This needs to be here as transform.transform(Rect) computes the
630 // transformed rect and then takes the bounding box of the result before
631 // returning. This means
632 // transform.inverse().transform(transform.transform(Rect)) != Rect
633 // in which case we need to make sure the final rect is clipped to the
634 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000635 if(!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
636 activeCrop.clear();
637 }
Michael Lentine6c925ed2014-09-26 17:55:01 -0700638 // mark regions outside the crop as transparent
639 activeTransparentRegion.orSelf(Rect(0, 0, s.active.w, activeCrop.top));
640 activeTransparentRegion.orSelf(Rect(0, activeCrop.bottom,
641 s.active.w, s.active.h));
642 activeTransparentRegion.orSelf(Rect(0, activeCrop.top,
643 activeCrop.left, activeCrop.bottom));
644 activeTransparentRegion.orSelf(Rect(activeCrop.right, activeCrop.top,
645 s.active.w, activeCrop.bottom));
646 }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700647
648 Rect frame(t.transform(computeBounds(activeTransparentRegion)));
Robert Carrb5d3d262016-03-25 15:08:13 -0700649 if (!s.finalCrop.isEmpty()) {
650 if(!frame.intersect(s.finalCrop, &frame)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000651 frame.clear();
652 }
653 }
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000654#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000655 if (!frame.intersect(displayDevice->getViewport(), &frame)) {
656 frame.clear();
657 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800658 const Transform& tr(displayDevice->getTransform());
659 Rect transformedFrame = tr.transform(frame);
David Revemanecf0fa52017-03-03 11:32:44 -0500660 error = hwcLayer->setDisplayFrame(transformedFrame);
Dan Stozae22aec72016-08-01 13:20:59 -0700661 if (error != HWC2::Error::None) {
662 ALOGE("[%s] Failed to set display frame [%d, %d, %d, %d]: %s (%d)",
663 mName.string(), transformedFrame.left, transformedFrame.top,
664 transformedFrame.right, transformedFrame.bottom,
665 to_string(error).c_str(), static_cast<int32_t>(error));
666 } else {
667 hwcInfo.displayFrame = transformedFrame;
668 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800669
Dan Stoza5a423ea2017-02-16 14:10:39 -0800670 FloatRect sourceCrop = computeCrop(displayDevice);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800671 error = hwcLayer->setSourceCrop(sourceCrop);
Dan Stozae22aec72016-08-01 13:20:59 -0700672 if (error != HWC2::Error::None) {
673 ALOGE("[%s] Failed to set source crop [%.3f, %.3f, %.3f, %.3f]: "
674 "%s (%d)", mName.string(), sourceCrop.left, sourceCrop.top,
675 sourceCrop.right, sourceCrop.bottom, to_string(error).c_str(),
676 static_cast<int32_t>(error));
677 } else {
678 hwcInfo.sourceCrop = sourceCrop;
679 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800680
681 error = hwcLayer->setPlaneAlpha(s.alpha);
682 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set plane alpha %.3f: "
683 "%s (%d)", mName.string(), s.alpha, to_string(error).c_str(),
684 static_cast<int32_t>(error));
685
Robert Carrae060832016-11-28 10:51:00 -0800686 error = hwcLayer->setZOrder(z);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800687 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set Z %u: %s (%d)",
Robert Carrae060832016-11-28 10:51:00 -0800688 mName.string(), z, to_string(error).c_str(),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800689 static_cast<int32_t>(error));
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500690
691 error = hwcLayer->setInfo(s.type, s.appId);
692 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set info (%d)",
693 mName.string(), static_cast<int32_t>(error));
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000694#else
695 if (!frame.intersect(hw->getViewport(), &frame)) {
696 frame.clear();
697 }
698 const Transform& tr(hw->getTransform());
699 layer.setFrame(tr.transform(frame));
700 layer.setCrop(computeCrop(hw));
701 layer.setPlaneAlpha(s.alpha);
702#endif
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800703
Mathias Agopian29a367b2011-07-12 14:51:45 -0700704 /*
705 * Transformations are applied in this order:
706 * 1) buffer orientation/flip/mirror
707 * 2) state transformation (window manager)
708 * 3) layer orientation (screen orientation)
709 * (NOTE: the matrices are multiplied in reverse order)
710 */
711
712 const Transform bufferOrientation(mCurrentTransform);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700713 Transform transform(tr * t * bufferOrientation);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700714
715 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
716 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700717 * the code below applies the primary display's inverse transform to the
718 * buffer
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700719 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700720 uint32_t invTransform =
721 DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700722 // calculate the inverse transform
723 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
724 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
725 NATIVE_WINDOW_TRANSFORM_FLIP_H;
726 }
727 // and apply to the current transform
Pablo Ceballos0f5131f2016-05-17 13:34:45 -0700728 transform = Transform(invTransform) * transform;
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700729 }
Mathias Agopian29a367b2011-07-12 14:51:45 -0700730
731 // this gives us only the "orientation" component of the transform
Mathias Agopian13127d82013-03-05 17:47:11 -0800732 const uint32_t orientation = transform.getOrientation();
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000733#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800734 if (orientation & Transform::ROT_INVALID) {
735 // we can only handle simple transformation
736 hwcInfo.forceClientComposition = true;
737 } else {
738 auto transform = static_cast<HWC2::Transform>(orientation);
739 auto error = hwcLayer->setTransform(transform);
740 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set transform %s: "
741 "%s (%d)", mName.string(), to_string(transform).c_str(),
742 to_string(error).c_str(), static_cast<int32_t>(error));
743 }
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000744#else
745 if (orientation & Transform::ROT_INVALID) {
746 // we can only handle simple transformation
747 layer.setSkip(true);
748 } else {
749 layer.setTransform(orientation);
750 }
751#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700752}
753
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000754#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800755void Layer::forceClientComposition(int32_t hwcId) {
756 if (mHwcLayers.count(hwcId) == 0) {
757 ALOGE("forceClientComposition: no HWC layer found (%d)", hwcId);
758 return;
759 }
760
761 mHwcLayers[hwcId].forceClientComposition = true;
762}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800763
Dan Stoza9e56aa02015-11-02 13:00:03 -0800764void Layer::setPerFrameData(const sp<const DisplayDevice>& displayDevice) {
765 // Apply this display's projection's viewport to the visible region
766 // before giving it to the HWC HAL.
767 const Transform& tr = displayDevice->getTransform();
768 const auto& viewport = displayDevice->getViewport();
769 Region visible = tr.transform(visibleRegion.intersect(viewport));
770 auto hwcId = displayDevice->getHwcDisplayId();
Chia-I Wuaaff73f2017-02-13 12:28:24 -0800771 auto& hwcInfo = mHwcLayers[hwcId];
772 auto& hwcLayer = hwcInfo.layer;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800773 auto error = hwcLayer->setVisibleRegion(visible);
774 if (error != HWC2::Error::None) {
775 ALOGE("[%s] Failed to set visible region: %s (%d)", mName.string(),
776 to_string(error).c_str(), static_cast<int32_t>(error));
777 visible.dump(LOG_TAG);
778 }
779
780 error = hwcLayer->setSurfaceDamage(surfaceDamageRegion);
781 if (error != HWC2::Error::None) {
782 ALOGE("[%s] Failed to set surface damage: %s (%d)", mName.string(),
783 to_string(error).c_str(), static_cast<int32_t>(error));
784 surfaceDamageRegion.dump(LOG_TAG);
785 }
786
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700787 // Sideband layers
Dan Stoza9e56aa02015-11-02 13:00:03 -0800788 if (mSidebandStream.get()) {
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700789 setCompositionType(hwcId, HWC2::Composition::Sideband);
790 ALOGV("[%s] Requesting Sideband composition", mName.string());
791 error = hwcLayer->setSidebandStream(mSidebandStream->handle());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800792 if (error != HWC2::Error::None) {
793 ALOGE("[%s] Failed to set sideband stream %p: %s (%d)",
794 mName.string(), mSidebandStream->handle(),
795 to_string(error).c_str(), static_cast<int32_t>(error));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800796 }
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700797 return;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800798 }
799
Dan Stoza0a21df72016-07-20 12:52:38 -0700800 // Client layers
Chia-I Wuaaff73f2017-02-13 12:28:24 -0800801 if (hwcInfo.forceClientComposition ||
Dan Stoza0a21df72016-07-20 12:52:38 -0700802 (mActiveBuffer != nullptr && mActiveBuffer->handle == nullptr)) {
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700803 ALOGV("[%s] Requesting Client composition", mName.string());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800804 setCompositionType(hwcId, HWC2::Composition::Client);
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700805 return;
806 }
807
Dan Stoza0a21df72016-07-20 12:52:38 -0700808 // SolidColor layers
809 if (mActiveBuffer == nullptr) {
810 setCompositionType(hwcId, HWC2::Composition::SolidColor);
Dan Stozac6c89542016-07-27 10:16:52 -0700811
812 // For now, we only support black for DimLayer
Dan Stoza0a21df72016-07-20 12:52:38 -0700813 error = hwcLayer->setColor({0, 0, 0, 255});
814 if (error != HWC2::Error::None) {
815 ALOGE("[%s] Failed to set color: %s (%d)", mName.string(),
816 to_string(error).c_str(), static_cast<int32_t>(error));
817 }
Dan Stozac6c89542016-07-27 10:16:52 -0700818
819 // Clear out the transform, because it doesn't make sense absent a
820 // source buffer
821 error = hwcLayer->setTransform(HWC2::Transform::None);
822 if (error != HWC2::Error::None) {
823 ALOGE("[%s] Failed to clear transform: %s (%d)", mName.string(),
824 to_string(error).c_str(), static_cast<int32_t>(error));
825 }
826
Dan Stoza0a21df72016-07-20 12:52:38 -0700827 return;
828 }
829
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700830 // Device or Cursor layers
831 if (mPotentialCursor) {
832 ALOGV("[%s] Requesting Cursor composition", mName.string());
833 setCompositionType(hwcId, HWC2::Composition::Cursor);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800834 } else {
835 ALOGV("[%s] Requesting Device composition", mName.string());
836 setCompositionType(hwcId, HWC2::Composition::Device);
837 }
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700838
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -0700839 ALOGV("setPerFrameData: dataspace = %d", mCurrentState.dataSpace);
840 error = hwcLayer->setDataspace(mCurrentState.dataSpace);
841 if (error != HWC2::Error::None) {
842 ALOGE("[%s] Failed to set dataspace %d: %s (%d)", mName.string(),
843 mCurrentState.dataSpace, to_string(error).c_str(),
844 static_cast<int32_t>(error));
845 }
846
Chia-I Wu06d63de2017-01-04 14:58:51 +0800847 uint32_t hwcSlot = 0;
848 buffer_handle_t hwcHandle = nullptr;
849 {
Chia-I Wu06d63de2017-01-04 14:58:51 +0800850 sp<GraphicBuffer> hwcBuffer;
Chia-I Wuaaff73f2017-02-13 12:28:24 -0800851 hwcInfo.bufferCache.getHwcBuffer(mActiveBufferSlot, mActiveBuffer,
Chia-I Wu06d63de2017-01-04 14:58:51 +0800852 &hwcSlot, &hwcBuffer);
853 if (hwcBuffer != nullptr) {
854 hwcHandle = hwcBuffer->handle;
855 }
856 }
857
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700858 auto acquireFence = mSurfaceFlingerConsumer->getCurrentFence();
Chia-I Wu06d63de2017-01-04 14:58:51 +0800859 error = hwcLayer->setBuffer(hwcSlot, hwcHandle, acquireFence);
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700860 if (error != HWC2::Error::None) {
861 ALOGE("[%s] Failed to set buffer %p: %s (%d)", mName.string(),
862 mActiveBuffer->handle, to_string(error).c_str(),
863 static_cast<int32_t>(error));
864 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800865}
Courtney Goeltzenleuchter9551fd32016-10-20 17:18:15 -0600866
867android_dataspace Layer::getDataSpace() const {
868 return mCurrentState.dataSpace;
869}
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000870#else
871void Layer::setPerFrameData(const sp<const DisplayDevice>& hw,
872 HWComposer::HWCLayerInterface& layer) {
873 // we have to set the visible region on every frame because
874 // we currently free it during onLayerDisplayed(), which is called
875 // after HWComposer::commit() -- every frame.
876 // Apply this display's projection's viewport to the visible region
877 // before giving it to the HWC HAL.
878 const Transform& tr = hw->getTransform();
879 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport()));
880 layer.setVisibleRegionScreen(visible);
881 layer.setSurfaceDamage(surfaceDamageRegion);
882 mIsGlesComposition = (layer.getCompositionType() == HWC_FRAMEBUFFER);
Dan Stozaee44edd2015-03-23 15:50:23 -0700883
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000884 if (mSidebandStream.get()) {
885 layer.setSidebandStream(mSidebandStream);
886 } else {
887 // NOTE: buffer can be NULL if the client never drew into this
888 // layer yet, or if we ran out of memory
889 layer.setBuffer(mActiveBuffer);
890 }
891}
892#endif
893
894#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800895void Layer::updateCursorPosition(const sp<const DisplayDevice>& displayDevice) {
896 auto hwcId = displayDevice->getHwcDisplayId();
897 if (mHwcLayers.count(hwcId) == 0 ||
898 getCompositionType(hwcId) != HWC2::Composition::Cursor) {
899 return;
900 }
901
902 // This gives us only the "orientation" component of the transform
903 const State& s(getCurrentState());
904
905 // Apply the layer's transform, followed by the display's global transform
906 // Here we're guaranteed that the layer's transform preserves rects
907 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700908 if (!s.crop.isEmpty()) {
909 win.intersect(s.crop, &win);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800910 }
911 // Subtract the transparent region and snap to the bounds
912 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700913 Rect frame(getTransform().transform(bounds));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800914 frame.intersect(displayDevice->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700915 if (!s.finalCrop.isEmpty()) {
916 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000917 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800918 auto& displayTransform(displayDevice->getTransform());
919 auto position = displayTransform.transform(frame);
920
921 auto error = mHwcLayers[hwcId].layer->setCursorPosition(position.left,
922 position.top);
923 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set cursor position "
924 "to (%d, %d): %s (%d)", mName.string(), position.left,
925 position.top, to_string(error).c_str(),
926 static_cast<int32_t>(error));
927}
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000928#else
929void Layer::setAcquireFence(const sp<const DisplayDevice>& /* hw */,
930 HWComposer::HWCLayerInterface& layer) {
931 int fenceFd = -1;
932
933 // TODO: there is a possible optimization here: we only need to set the
934 // acquire fence the first time a new buffer is acquired on EACH display.
935
936 if (layer.getCompositionType() == HWC_OVERLAY || layer.getCompositionType() == HWC_CURSOR_OVERLAY) {
937 sp<Fence> fence = mSurfaceFlingerConsumer->getCurrentFence();
938 if (fence->isValid()) {
939 fenceFd = fence->dup();
940 if (fenceFd == -1) {
941 ALOGW("failed to dup layer fence, skipping sync: %d", errno);
942 }
943 }
944 }
945 layer.setAcquireFenceFd(fenceFd);
946}
947
948Rect Layer::getPosition(
949 const sp<const DisplayDevice>& hw)
950{
951 // this gives us only the "orientation" component of the transform
952 const State& s(getCurrentState());
953
954 // apply the layer's transform, followed by the display's global transform
955 // here we're guaranteed that the layer's transform preserves rects
956 Rect win(s.active.w, s.active.h);
957 if (!s.crop.isEmpty()) {
958 win.intersect(s.crop, &win);
959 }
960 // subtract the transparent region and snap to the bounds
961 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700962 Rect frame(getTransform().transform(bounds));
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000963 frame.intersect(hw->getViewport(), &frame);
964 if (!s.finalCrop.isEmpty()) {
965 frame.intersect(s.finalCrop, &frame);
966 }
967 const Transform& tr(hw->getTransform());
968 return Rect(tr.transform(frame));
969}
970#endif
Riley Andrews03414a12014-07-01 14:22:59 -0700971
Mathias Agopian13127d82013-03-05 17:47:11 -0800972// ---------------------------------------------------------------------------
973// drawing...
974// ---------------------------------------------------------------------------
975
976void Layer::draw(const sp<const DisplayDevice>& hw, const Region& clip) const {
Dan Stozac7014012014-02-14 15:03:43 -0800977 onDraw(hw, clip, false);
Mathias Agopian13127d82013-03-05 17:47:11 -0800978}
979
Dan Stozac7014012014-02-14 15:03:43 -0800980void Layer::draw(const sp<const DisplayDevice>& hw,
981 bool useIdentityTransform) const {
982 onDraw(hw, Region(hw->bounds()), useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -0800983}
984
Dan Stozac7014012014-02-14 15:03:43 -0800985void Layer::draw(const sp<const DisplayDevice>& hw) const {
986 onDraw(hw, Region(hw->bounds()), false);
987}
988
989void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip,
990 bool useIdentityTransform) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800991{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800992 ATRACE_CALL();
993
Mathias Agopiana67932f2011-04-20 14:20:59 -0700994 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800995 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -0700996 // in fact never been drawn into. This happens frequently with
997 // SurfaceView because the WindowManager can't know when the client
998 // has drawn the first time.
999
1000 // If there is nothing under us, we paint the screen in black, otherwise
1001 // we just skip this update.
1002
1003 // figure out if there is something below us
1004 Region under;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001005 bool finished = false;
1006 mFlinger->mDrawingState.layersSortedByZ.traverseInZOrder([&](Layer* layer) {
1007 if (finished || layer == static_cast<Layer const*>(this)) {
1008 finished = true;
1009 return;
1010 }
Mathias Agopian42977342012-08-05 00:40:46 -07001011 under.orSelf( hw->getTransform().transform(layer->visibleRegion) );
Robert Carr1f0a16a2016-10-24 16:27:39 -07001012 });
Mathias Agopian179169e2010-05-06 20:21:45 -07001013 // if not everything below us is covered, we plug the holes!
1014 Region holes(clip.subtract(under));
1015 if (!holes.isEmpty()) {
Fabien Sanglard17487192016-12-07 13:03:32 -08001016 clearWithOpenGL(hw, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -07001017 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001018 return;
1019 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001020
Andy McFadden97eba892012-12-11 15:21:45 -08001021 // Bind the current buffer to the GL texture, and wait for it to be
1022 // ready for us to draw into.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001023 status_t err = mSurfaceFlingerConsumer->bindTextureImage();
1024 if (err != NO_ERROR) {
Andy McFadden97eba892012-12-11 15:21:45 -08001025 ALOGW("onDraw: bindTextureImage failed (err=%d)", err);
Jesse Halldc5b4852012-06-29 15:21:18 -07001026 // Go ahead and draw the buffer anyway; no matter what we do the screen
1027 // is probably going to have something visibly wrong.
1028 }
1029
Jamie Gennisdd3cb842012-10-19 18:19:11 -07001030 bool blackOutLayer = isProtected() || (isSecure() && !hw->isSecure());
1031
Mathias Agopian875d8e12013-06-07 15:35:48 -07001032 RenderEngine& engine(mFlinger->getRenderEngine());
1033
Jamie Gennisdd3cb842012-10-19 18:19:11 -07001034 if (!blackOutLayer) {
Jamie Genniscbb1a952012-05-08 17:05:52 -07001035 // TODO: we could be more subtle with isFixedSize()
Mathias Agopianeba8c682012-09-19 23:14:45 -07001036 const bool useFiltering = getFiltering() || needsFiltering(hw) || isFixedSize();
Jamie Genniscbb1a952012-05-08 17:05:52 -07001037
1038 // Query the texture matrix given our current filtering mode.
1039 float textureMatrix[16];
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001040 mSurfaceFlingerConsumer->setFilteringEnabled(useFiltering);
1041 mSurfaceFlingerConsumer->getTransformMatrix(textureMatrix);
Jamie Genniscbb1a952012-05-08 17:05:52 -07001042
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001043 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
1044
1045 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -07001046 * the code below applies the primary display's inverse transform to
1047 * the texture transform
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001048 */
1049
1050 // create a 4x4 transform matrix from the display transform flags
1051 const mat4 flipH(-1,0,0,0, 0,1,0,0, 0,0,1,0, 1,0,0,1);
1052 const mat4 flipV( 1,0,0,0, 0,-1,0,0, 0,0,1,0, 0,1,0,1);
1053 const mat4 rot90( 0,1,0,0, -1,0,0,0, 0,0,1,0, 1,0,0,1);
1054
1055 mat4 tr;
Pablo Ceballos021623b2016-04-15 17:31:51 -07001056 uint32_t transform =
1057 DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001058 if (transform & NATIVE_WINDOW_TRANSFORM_ROT_90)
1059 tr = tr * rot90;
1060 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_H)
1061 tr = tr * flipH;
1062 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_V)
1063 tr = tr * flipV;
1064
1065 // calculate the inverse
1066 tr = inverse(tr);
1067
1068 // and finally apply it to the original texture matrix
1069 const mat4 texTransform(mat4(static_cast<const float*>(textureMatrix)) * tr);
1070 memcpy(textureMatrix, texTransform.asArray(), sizeof(textureMatrix));
1071 }
1072
Jamie Genniscbb1a952012-05-08 17:05:52 -07001073 // Set things up for texturing.
Mathias Agopian49457ac2013-08-14 18:20:17 -07001074 mTexture.setDimensions(mActiveBuffer->getWidth(), mActiveBuffer->getHeight());
1075 mTexture.setFiltering(useFiltering);
1076 mTexture.setMatrix(textureMatrix);
1077
1078 engine.setupLayerTexturing(mTexture);
Mathias Agopiana67932f2011-04-20 14:20:59 -07001079 } else {
Mathias Agopian875d8e12013-06-07 15:35:48 -07001080 engine.setupLayerBlackedOut();
Mathias Agopiana67932f2011-04-20 14:20:59 -07001081 }
Fabien Sanglard85789802016-12-07 13:08:24 -08001082 drawWithOpenGL(hw, useIdentityTransform);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001083 engine.disableTexturing();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001084}
1085
Mathias Agopian13127d82013-03-05 17:47:11 -08001086
Dan Stozac7014012014-02-14 15:03:43 -08001087void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw,
Fabien Sanglard17487192016-12-07 13:03:32 -08001088 float red, float green, float blue,
Dan Stozac7014012014-02-14 15:03:43 -08001089 float alpha) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001090{
Mathias Agopian19733a32013-08-28 18:13:56 -07001091 RenderEngine& engine(mFlinger->getRenderEngine());
Dan Stozac7014012014-02-14 15:03:43 -08001092 computeGeometry(hw, mMesh, false);
Mathias Agopian19733a32013-08-28 18:13:56 -07001093 engine.setupFillWithColor(red, green, blue, alpha);
1094 engine.drawMesh(mMesh);
Mathias Agopian13127d82013-03-05 17:47:11 -08001095}
1096
1097void Layer::clearWithOpenGL(
Fabien Sanglard17487192016-12-07 13:03:32 -08001098 const sp<const DisplayDevice>& hw) const {
1099 clearWithOpenGL(hw, 0,0,0,0);
Mathias Agopian13127d82013-03-05 17:47:11 -08001100}
1101
Dan Stozac7014012014-02-14 15:03:43 -08001102void Layer::drawWithOpenGL(const sp<const DisplayDevice>& hw,
Fabien Sanglard85789802016-12-07 13:08:24 -08001103 bool useIdentityTransform) const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001104 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08001105
Dan Stozac7014012014-02-14 15:03:43 -08001106 computeGeometry(hw, mMesh, useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -08001107
Mathias Agopian13127d82013-03-05 17:47:11 -08001108 /*
1109 * NOTE: the way we compute the texture coordinates here produces
1110 * different results than when we take the HWC path -- in the later case
1111 * the "source crop" is rounded to texel boundaries.
1112 * This can produce significantly different results when the texture
1113 * is scaled by a large amount.
1114 *
1115 * The GL code below is more logical (imho), and the difference with
1116 * HWC is due to a limitation of the HWC API to integers -- a question
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001117 * is suspend is whether we should ignore this problem or revert to
Mathias Agopian13127d82013-03-05 17:47:11 -08001118 * GL composition when a buffer scaling is applied (maybe with some
1119 * minimal value)? Or, we could make GL behave like HWC -- but this feel
1120 * like more of a hack.
1121 */
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001122 Rect win(computeBounds());
1123
Robert Carr1f0a16a2016-10-24 16:27:39 -07001124 Transform t = getTransform();
Robert Carrb5d3d262016-03-25 15:08:13 -07001125 if (!s.finalCrop.isEmpty()) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001126 win = t.transform(win);
Robert Carrb5d3d262016-03-25 15:08:13 -07001127 if (!win.intersect(s.finalCrop, &win)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001128 win.clear();
1129 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001130 win = t.inverse().transform(win);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001131 if (!win.intersect(computeBounds(), &win)) {
1132 win.clear();
1133 }
1134 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001135
Mathias Agopian3f844832013-08-07 21:24:32 -07001136 float left = float(win.left) / float(s.active.w);
1137 float top = float(win.top) / float(s.active.h);
1138 float right = float(win.right) / float(s.active.w);
1139 float bottom = float(win.bottom) / float(s.active.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001140
Mathias Agopian875d8e12013-06-07 15:35:48 -07001141 // TODO: we probably want to generate the texture coords with the mesh
1142 // here we assume that we only have 4 vertices
Mathias Agopianff2ed702013-09-01 21:36:12 -07001143 Mesh::VertexArray<vec2> texCoords(mMesh.getTexCoordArray<vec2>());
1144 texCoords[0] = vec2(left, 1.0f - top);
1145 texCoords[1] = vec2(left, 1.0f - bottom);
1146 texCoords[2] = vec2(right, 1.0f - bottom);
1147 texCoords[3] = vec2(right, 1.0f - top);
Mathias Agopian13127d82013-03-05 17:47:11 -08001148
Mathias Agopian875d8e12013-06-07 15:35:48 -07001149 RenderEngine& engine(mFlinger->getRenderEngine());
Andy McFadden4125a4f2014-01-29 17:17:11 -08001150 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), s.alpha);
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001151 engine.drawMesh(mMesh);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001152 engine.disableBlending();
Mathias Agopian13127d82013-03-05 17:47:11 -08001153}
1154
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001155#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08001156void Layer::setCompositionType(int32_t hwcId, HWC2::Composition type,
1157 bool callIntoHwc) {
1158 if (mHwcLayers.count(hwcId) == 0) {
1159 ALOGE("setCompositionType called without a valid HWC layer");
1160 return;
1161 }
1162 auto& hwcInfo = mHwcLayers[hwcId];
1163 auto& hwcLayer = hwcInfo.layer;
1164 ALOGV("setCompositionType(%" PRIx64 ", %s, %d)", hwcLayer->getId(),
1165 to_string(type).c_str(), static_cast<int>(callIntoHwc));
1166 if (hwcInfo.compositionType != type) {
1167 ALOGV(" actually setting");
1168 hwcInfo.compositionType = type;
1169 if (callIntoHwc) {
1170 auto error = hwcLayer->setCompositionType(type);
1171 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set "
1172 "composition type %s: %s (%d)", mName.string(),
1173 to_string(type).c_str(), to_string(error).c_str(),
1174 static_cast<int32_t>(error));
1175 }
1176 }
1177}
1178
1179HWC2::Composition Layer::getCompositionType(int32_t hwcId) const {
Dan Stozaec0f7172016-07-21 11:09:40 -07001180 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
1181 // If we're querying the composition type for a display that does not
1182 // have a HWC counterpart, then it will always be Client
1183 return HWC2::Composition::Client;
1184 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001185 if (mHwcLayers.count(hwcId) == 0) {
Dan Stozaec0f7172016-07-21 11:09:40 -07001186 ALOGE("getCompositionType called with an invalid HWC layer");
Dan Stoza9e56aa02015-11-02 13:00:03 -08001187 return HWC2::Composition::Invalid;
1188 }
1189 return mHwcLayers.at(hwcId).compositionType;
1190}
1191
1192void Layer::setClearClientTarget(int32_t hwcId, bool clear) {
1193 if (mHwcLayers.count(hwcId) == 0) {
1194 ALOGE("setClearClientTarget called without a valid HWC layer");
1195 return;
1196 }
1197 mHwcLayers[hwcId].clearClientTarget = clear;
1198}
1199
1200bool Layer::getClearClientTarget(int32_t hwcId) const {
1201 if (mHwcLayers.count(hwcId) == 0) {
1202 ALOGE("getClearClientTarget called without a valid HWC layer");
1203 return false;
1204 }
1205 return mHwcLayers.at(hwcId).clearClientTarget;
1206}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001207#endif
Dan Stoza9e56aa02015-11-02 13:00:03 -08001208
Ruben Brunk1681d952014-06-27 15:51:55 -07001209uint32_t Layer::getProducerStickyTransform() const {
1210 int producerStickyTransform = 0;
1211 int ret = mProducer->query(NATIVE_WINDOW_STICKY_TRANSFORM, &producerStickyTransform);
1212 if (ret != OK) {
1213 ALOGW("%s: Error %s (%d) while querying window sticky transform.", __FUNCTION__,
1214 strerror(-ret), ret);
1215 return 0;
1216 }
1217 return static_cast<uint32_t>(producerStickyTransform);
1218}
1219
Dan Stozac5da2712016-07-20 15:38:12 -07001220bool Layer::latchUnsignaledBuffers() {
1221 static bool propertyLoaded = false;
1222 static bool latch = false;
1223 static std::mutex mutex;
1224 std::lock_guard<std::mutex> lock(mutex);
1225 if (!propertyLoaded) {
1226 char value[PROPERTY_VALUE_MAX] = {};
1227 property_get("debug.sf.latch_unsignaled", value, "0");
1228 latch = atoi(value);
1229 propertyLoaded = true;
1230 }
1231 return latch;
1232}
1233
Dan Stozacac35382016-01-27 12:21:06 -08001234uint64_t Layer::getHeadFrameNumber() const {
1235 Mutex::Autolock lock(mQueueItemLock);
1236 if (!mQueueItems.empty()) {
1237 return mQueueItems[0].mFrameNumber;
1238 } else {
1239 return mCurrentFrameNumber;
1240 }
1241}
1242
Dan Stoza1ce65812016-06-15 16:26:27 -07001243bool Layer::headFenceHasSignaled() const {
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001244#ifdef USE_HWC2
Dan Stozac5da2712016-07-20 15:38:12 -07001245 if (latchUnsignaledBuffers()) {
1246 return true;
1247 }
1248
Dan Stoza1ce65812016-06-15 16:26:27 -07001249 Mutex::Autolock lock(mQueueItemLock);
1250 if (mQueueItems.empty()) {
1251 return true;
1252 }
1253 if (mQueueItems[0].mIsDroppable) {
1254 // Even though this buffer's fence may not have signaled yet, it could
1255 // be replaced by another buffer before it has a chance to, which means
1256 // that it's possible to get into a situation where a buffer is never
1257 // able to be latched. To avoid this, grab this buffer anyway.
1258 return true;
1259 }
1260 return mQueueItems[0].mFence->getSignalTime() != INT64_MAX;
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001261#else
1262 return true;
1263#endif
Dan Stoza1ce65812016-06-15 16:26:27 -07001264}
1265
Dan Stozacac35382016-01-27 12:21:06 -08001266bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
1267 if (point->getFrameNumber() <= mCurrentFrameNumber) {
1268 // Don't bother with a SyncPoint, since we've already latched the
1269 // relevant frame
1270 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -07001271 }
1272
Dan Stozacac35382016-01-27 12:21:06 -08001273 Mutex::Autolock lock(mLocalSyncPointMutex);
1274 mLocalSyncPoints.push_back(point);
1275 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -07001276}
1277
Mathias Agopian13127d82013-03-05 17:47:11 -08001278void Layer::setFiltering(bool filtering) {
1279 mFiltering = filtering;
1280}
1281
1282bool Layer::getFiltering() const {
1283 return mFiltering;
1284}
1285
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001286// As documented in libhardware header, formats in the range
1287// 0x100 - 0x1FF are specific to the HAL implementation, and
1288// are known to have no alpha channel
1289// TODO: move definition for device-specific range into
1290// hardware.h, instead of using hard-coded values here.
1291#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
1292
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001293bool Layer::getOpacityForFormat(uint32_t format) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001294 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
1295 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001296 }
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001297 switch (format) {
1298 case HAL_PIXEL_FORMAT_RGBA_8888:
1299 case HAL_PIXEL_FORMAT_BGRA_8888:
Romain Guyff415142016-12-13 16:51:25 -08001300 case HAL_PIXEL_FORMAT_RGBA_FP16:
Romain Guy541f2262017-02-10 18:50:17 -08001301 case HAL_PIXEL_FORMAT_RGBA_1010102:
Mathias Agopiandd533712013-07-26 15:31:39 -07001302 return false;
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001303 }
1304 // in all other case, we have no blending (also for unknown formats)
Mathias Agopiandd533712013-07-26 15:31:39 -07001305 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001306}
1307
Mathias Agopian13127d82013-03-05 17:47:11 -08001308// ----------------------------------------------------------------------------
1309// local state
1310// ----------------------------------------------------------------------------
1311
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001312static void boundPoint(vec2* point, const Rect& crop) {
1313 if (point->x < crop.left) {
1314 point->x = crop.left;
1315 }
1316 if (point->x > crop.right) {
1317 point->x = crop.right;
1318 }
1319 if (point->y < crop.top) {
1320 point->y = crop.top;
1321 }
1322 if (point->y > crop.bottom) {
1323 point->y = crop.bottom;
1324 }
1325}
1326
Dan Stozac7014012014-02-14 15:03:43 -08001327void Layer::computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh,
1328 bool useIdentityTransform) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001329{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001330 const Layer::State& s(getDrawingState());
Robert Carr1f0a16a2016-10-24 16:27:39 -07001331 const Transform hwTransform(hw->getTransform());
Mathias Agopian13127d82013-03-05 17:47:11 -08001332 const uint32_t hw_h = hw->getHeight();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001333 Rect win = computeBounds();
Mathias Agopian3f844832013-08-07 21:24:32 -07001334
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001335 vec2 lt = vec2(win.left, win.top);
1336 vec2 lb = vec2(win.left, win.bottom);
1337 vec2 rb = vec2(win.right, win.bottom);
1338 vec2 rt = vec2(win.right, win.top);
1339
Robert Carr1f0a16a2016-10-24 16:27:39 -07001340 Transform layerTransform = getTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001341 if (!useIdentityTransform) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001342 lt = layerTransform.transform(lt);
1343 lb = layerTransform.transform(lb);
1344 rb = layerTransform.transform(rb);
1345 rt = layerTransform.transform(rt);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001346 }
1347
Robert Carrb5d3d262016-03-25 15:08:13 -07001348 if (!s.finalCrop.isEmpty()) {
1349 boundPoint(&lt, s.finalCrop);
1350 boundPoint(&lb, s.finalCrop);
1351 boundPoint(&rb, s.finalCrop);
1352 boundPoint(&rt, s.finalCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001353 }
1354
Mathias Agopianff2ed702013-09-01 21:36:12 -07001355 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>());
Robert Carr1f0a16a2016-10-24 16:27:39 -07001356 position[0] = hwTransform.transform(lt);
1357 position[1] = hwTransform.transform(lb);
1358 position[2] = hwTransform.transform(rb);
1359 position[3] = hwTransform.transform(rt);
Mathias Agopian3f844832013-08-07 21:24:32 -07001360 for (size_t i=0 ; i<4 ; i++) {
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001361 position[i].y = hw_h - position[i].y;
Mathias Agopian13127d82013-03-05 17:47:11 -08001362 }
1363}
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001364
Andy McFadden4125a4f2014-01-29 17:17:11 -08001365bool Layer::isOpaque(const Layer::State& s) const
Mathias Agopiana7f66922010-05-26 22:08:52 -07001366{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001367 // if we don't have a buffer yet, we're translucent regardless of the
1368 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001369 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001370 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001371 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001372
1373 // if the layer has the opaque flag, then we're always opaque,
1374 // otherwise we use the current buffer's format.
Andy McFadden4125a4f2014-01-29 17:17:11 -08001375 return ((s.flags & layer_state_t::eLayerOpaque) != 0) || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -07001376}
1377
Dan Stoza23116082015-06-18 14:58:39 -07001378bool Layer::isSecure() const
1379{
1380 const Layer::State& s(mDrawingState);
1381 return (s.flags & layer_state_t::eLayerSecure);
1382}
1383
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001384bool Layer::isProtected() const
1385{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001386 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001387 return (activeBuffer != 0) &&
1388 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
1389}
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001390
Mathias Agopian13127d82013-03-05 17:47:11 -08001391bool Layer::isFixedSize() const {
Robert Carrc3574f72016-03-24 12:19:32 -07001392 return getEffectiveScalingMode() != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian13127d82013-03-05 17:47:11 -08001393}
1394
1395bool Layer::isCropped() const {
1396 return !mCurrentCrop.isEmpty();
1397}
1398
1399bool Layer::needsFiltering(const sp<const DisplayDevice>& hw) const {
1400 return mNeedsFiltering || hw->needsFiltering();
1401}
1402
1403void Layer::setVisibleRegion(const Region& visibleRegion) {
1404 // always called from main thread
1405 this->visibleRegion = visibleRegion;
1406}
1407
1408void Layer::setCoveredRegion(const Region& coveredRegion) {
1409 // always called from main thread
1410 this->coveredRegion = coveredRegion;
1411}
1412
1413void Layer::setVisibleNonTransparentRegion(const Region&
1414 setVisibleNonTransparentRegion) {
1415 // always called from main thread
1416 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
1417}
1418
1419// ----------------------------------------------------------------------------
1420// transaction
1421// ----------------------------------------------------------------------------
1422
Dan Stoza7dde5992015-05-22 09:51:44 -07001423void Layer::pushPendingState() {
1424 if (!mCurrentState.modified) {
1425 return;
1426 }
1427
Dan Stoza7dde5992015-05-22 09:51:44 -07001428 // If this transaction is waiting on the receipt of a frame, generate a sync
1429 // point and send it to the remote layer.
Robert Carr0d480722017-01-10 16:42:54 -08001430 if (mCurrentState.barrierLayer != nullptr) {
1431 sp<Layer> barrierLayer = mCurrentState.barrierLayer.promote();
1432 if (barrierLayer == nullptr) {
1433 ALOGE("[%s] Unable to promote barrier Layer.", mName.string());
Dan Stoza7dde5992015-05-22 09:51:44 -07001434 // If we can't promote the layer we are intended to wait on,
1435 // then it is expired or otherwise invalid. Allow this transaction
1436 // to be applied as per normal (no synchronization).
Robert Carr0d480722017-01-10 16:42:54 -08001437 mCurrentState.barrierLayer = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -08001438 } else {
1439 auto syncPoint = std::make_shared<SyncPoint>(
1440 mCurrentState.frameNumber);
Robert Carr0d480722017-01-10 16:42:54 -08001441 if (barrierLayer->addSyncPoint(syncPoint)) {
Dan Stozacac35382016-01-27 12:21:06 -08001442 mRemoteSyncPoints.push_back(std::move(syncPoint));
1443 } else {
1444 // We already missed the frame we're supposed to synchronize
1445 // on, so go ahead and apply the state update
Robert Carr0d480722017-01-10 16:42:54 -08001446 mCurrentState.barrierLayer = nullptr;
Dan Stozacac35382016-01-27 12:21:06 -08001447 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001448 }
1449
Dan Stoza7dde5992015-05-22 09:51:44 -07001450 // Wake us up to check if the frame has been received
1451 setTransactionFlags(eTransactionNeeded);
Dan Stozaf5702ff2016-11-02 16:27:47 -07001452 mFlinger->setTransactionFlags(eTraversalNeeded);
Dan Stoza7dde5992015-05-22 09:51:44 -07001453 }
1454 mPendingStates.push_back(mCurrentState);
1455}
1456
Pablo Ceballos05289c22016-04-14 15:49:55 -07001457void Layer::popPendingState(State* stateToCommit) {
1458 auto oldFlags = stateToCommit->flags;
1459 *stateToCommit = mPendingStates[0];
1460 stateToCommit->flags = (oldFlags & ~stateToCommit->mask) |
1461 (stateToCommit->flags & stateToCommit->mask);
Dan Stoza7dde5992015-05-22 09:51:44 -07001462
1463 mPendingStates.removeAt(0);
1464}
1465
Pablo Ceballos05289c22016-04-14 15:49:55 -07001466bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001467 bool stateUpdateAvailable = false;
1468 while (!mPendingStates.empty()) {
Robert Carr0d480722017-01-10 16:42:54 -08001469 if (mPendingStates[0].barrierLayer != nullptr) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001470 if (mRemoteSyncPoints.empty()) {
1471 // If we don't have a sync point for this, apply it anyway. It
1472 // will be visually wrong, but it should keep us from getting
1473 // into too much trouble.
1474 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -07001475 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001476 stateUpdateAvailable = true;
1477 continue;
1478 }
1479
Dan Stozacac35382016-01-27 12:21:06 -08001480 if (mRemoteSyncPoints.front()->getFrameNumber() !=
1481 mPendingStates[0].frameNumber) {
1482 ALOGE("[%s] Unexpected sync point frame number found",
1483 mName.string());
1484
1485 // Signal our end of the sync point and then dispose of it
1486 mRemoteSyncPoints.front()->setTransactionApplied();
1487 mRemoteSyncPoints.pop_front();
1488 continue;
1489 }
1490
Dan Stoza7dde5992015-05-22 09:51:44 -07001491 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
1492 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -07001493 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001494 stateUpdateAvailable = true;
1495
1496 // Signal our end of the sync point and then dispose of it
1497 mRemoteSyncPoints.front()->setTransactionApplied();
1498 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -08001499 } else {
1500 break;
Dan Stoza7dde5992015-05-22 09:51:44 -07001501 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001502 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001503 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001504 stateUpdateAvailable = true;
1505 }
1506 }
1507
1508 // If we still have pending updates, wake SurfaceFlinger back up and point
1509 // it at this layer so we can process them
1510 if (!mPendingStates.empty()) {
1511 setTransactionFlags(eTransactionNeeded);
1512 mFlinger->setTransactionFlags(eTraversalNeeded);
1513 }
1514
1515 mCurrentState.modified = false;
1516 return stateUpdateAvailable;
1517}
1518
1519void Layer::notifyAvailableFrames() {
Dan Stozacac35382016-01-27 12:21:06 -08001520 auto headFrameNumber = getHeadFrameNumber();
Dan Stoza1ce65812016-06-15 16:26:27 -07001521 bool headFenceSignaled = headFenceHasSignaled();
Dan Stozacac35382016-01-27 12:21:06 -08001522 Mutex::Autolock lock(mLocalSyncPointMutex);
1523 for (auto& point : mLocalSyncPoints) {
Dan Stoza1ce65812016-06-15 16:26:27 -07001524 if (headFrameNumber >= point->getFrameNumber() && headFenceSignaled) {
Dan Stozacac35382016-01-27 12:21:06 -08001525 point->setFrameAvailable();
1526 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001527 }
1528}
1529
Mathias Agopian13127d82013-03-05 17:47:11 -08001530uint32_t Layer::doTransaction(uint32_t flags) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001531 ATRACE_CALL();
1532
Dan Stoza7dde5992015-05-22 09:51:44 -07001533 pushPendingState();
Pablo Ceballos05289c22016-04-14 15:49:55 -07001534 Layer::State c = getCurrentState();
1535 if (!applyPendingStates(&c)) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001536 return 0;
1537 }
1538
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001539 const Layer::State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001540
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001541 const bool sizeChanged = (c.requested.w != s.requested.w) ||
1542 (c.requested.h != s.requested.h);
Mathias Agopiana138f892010-05-21 17:24:35 -07001543
1544 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001545 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +00001546 ALOGD_IF(DEBUG_RESIZE,
Andy McFadden69052052012-09-14 16:10:11 -07001547 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001548 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001549 " requested={ wh={%4u,%4u} }}\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001550 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001551 " requested={ wh={%4u,%4u} }}\n",
Robert Carrc3574f72016-03-24 12:19:32 -07001552 this, getName().string(), mCurrentTransform,
1553 getEffectiveScalingMode(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001554 c.active.w, c.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001555 c.crop.left,
1556 c.crop.top,
1557 c.crop.right,
1558 c.crop.bottom,
1559 c.crop.getWidth(),
1560 c.crop.getHeight(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001561 c.requested.w, c.requested.h,
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001562 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001563 s.crop.left,
1564 s.crop.top,
1565 s.crop.right,
1566 s.crop.bottom,
1567 s.crop.getWidth(),
1568 s.crop.getHeight(),
1569 s.requested.w, s.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001570
Jamie Gennis2a0d5b62011-09-26 16:54:44 -07001571 // record the new size, form this point on, when the client request
1572 // a buffer, it'll get the new size.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001573 mSurfaceFlingerConsumer->setDefaultBufferSize(
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001574 c.requested.w, c.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001575 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001576
Robert Carr82364e32016-05-15 11:27:47 -07001577 const bool resizePending = (c.requested.w != c.active.w) ||
1578 (c.requested.h != c.active.h);
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001579 if (!isFixedSize()) {
Dan Stoza9e9b0442015-04-22 14:59:08 -07001580 if (resizePending && mSidebandStream == NULL) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001581 // don't let Layer::doTransaction update the drawing state
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001582 // if we have a pending resize, unless we are in fixed-size mode.
1583 // the drawing state will be updated only once we receive a buffer
1584 // with the correct size.
1585 //
1586 // in particular, we want to make sure the clip (which is part
1587 // of the geometry state) is latched together with the size but is
1588 // latched immediately when no resizing is involved.
Dan Stoza9e9b0442015-04-22 14:59:08 -07001589 //
1590 // If a sideband stream is attached, however, we want to skip this
1591 // optimization so that transactions aren't missed when a buffer
1592 // never arrives
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001593
1594 flags |= eDontUpdateGeometryState;
1595 }
1596 }
1597
Mathias Agopian13127d82013-03-05 17:47:11 -08001598 // always set active to requested, unless we're asked not to
1599 // this is used by Layer, which special cases resizes.
1600 if (flags & eDontUpdateGeometryState) {
1601 } else {
Pablo Ceballos7d052572016-06-02 17:46:05 -07001602 Layer::State& editCurrentState(getCurrentState());
Robert Carr82364e32016-05-15 11:27:47 -07001603 if (mFreezePositionUpdates) {
1604 float tx = c.active.transform.tx();
1605 float ty = c.active.transform.ty();
1606 c.active = c.requested;
1607 c.active.transform.set(tx, ty);
1608 editCurrentState.active = c.active;
1609 } else {
1610 editCurrentState.active = editCurrentState.requested;
1611 c.active = c.requested;
1612 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001613 }
1614
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001615 if (s.active != c.active) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001616 // invalidate and recompute the visible regions if needed
1617 flags |= Layer::eVisibleRegion;
1618 }
1619
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001620 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001621 // invalidate and recompute the visible regions if needed
1622 flags |= eVisibleRegion;
1623 this->contentDirty = true;
1624
1625 // we may use linear filtering, if the matrix scales us
Robert Carr3dcabfa2016-03-01 18:36:58 -08001626 const uint8_t type = c.active.transform.getType();
1627 mNeedsFiltering = (!c.active.transform.preserveRects() ||
Mathias Agopian13127d82013-03-05 17:47:11 -08001628 (type >= Transform::SCALE));
1629 }
1630
Dan Stozac8145172016-04-28 16:29:06 -07001631 // If the layer is hidden, signal and clear out all local sync points so
1632 // that transactions for layers depending on this layer's frames becoming
1633 // visible are not blocked
1634 if (c.flags & layer_state_t::eLayerHidden) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001635 clearSyncPoints();
Dan Stozac8145172016-04-28 16:29:06 -07001636 }
1637
Mathias Agopian13127d82013-03-05 17:47:11 -08001638 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -07001639 commitTransaction(c);
Mathias Agopian13127d82013-03-05 17:47:11 -08001640 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001641}
1642
Pablo Ceballos05289c22016-04-14 15:49:55 -07001643void Layer::commitTransaction(const State& stateToCommit) {
1644 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001645}
1646
Mathias Agopian13127d82013-03-05 17:47:11 -08001647uint32_t Layer::getTransactionFlags(uint32_t flags) {
1648 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1649}
1650
1651uint32_t Layer::setTransactionFlags(uint32_t flags) {
1652 return android_atomic_or(flags, &mTransactionFlags);
1653}
1654
Robert Carr82364e32016-05-15 11:27:47 -07001655bool Layer::setPosition(float x, float y, bool immediate) {
Robert Carr3dcabfa2016-03-01 18:36:58 -08001656 if (mCurrentState.requested.transform.tx() == x && mCurrentState.requested.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -08001657 return false;
1658 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -07001659
1660 // We update the requested and active position simultaneously because
1661 // we want to apply the position portion of the transform matrix immediately,
1662 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Robert Carr3dcabfa2016-03-01 18:36:58 -08001663 mCurrentState.requested.transform.set(x, y);
Robert Carr82364e32016-05-15 11:27:47 -07001664 if (immediate && !mFreezePositionUpdates) {
1665 mCurrentState.active.transform.set(x, y);
1666 }
1667 mFreezePositionUpdates = mFreezePositionUpdates || !immediate;
Robert Carr69663fb2016-03-27 19:59:19 -07001668
Dan Stoza7dde5992015-05-22 09:51:44 -07001669 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001670 setTransactionFlags(eTransactionNeeded);
1671 return true;
1672}
Robert Carr82364e32016-05-15 11:27:47 -07001673
Robert Carr1f0a16a2016-10-24 16:27:39 -07001674bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
1675 ssize_t idx = mCurrentChildren.indexOf(childLayer);
1676 if (idx < 0) {
1677 return false;
1678 }
1679 if (childLayer->setLayer(z)) {
1680 mCurrentChildren.removeAt(idx);
1681 mCurrentChildren.add(childLayer);
1682 }
1683 return true;
1684}
1685
Robert Carrae060832016-11-28 10:51:00 -08001686bool Layer::setLayer(int32_t z) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001687 if (mCurrentState.z == z)
1688 return false;
1689 mCurrentState.sequence++;
1690 mCurrentState.z = z;
Dan Stoza7dde5992015-05-22 09:51:44 -07001691 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001692 setTransactionFlags(eTransactionNeeded);
1693 return true;
1694}
Robert Carr1f0a16a2016-10-24 16:27:39 -07001695
Mathias Agopian13127d82013-03-05 17:47:11 -08001696bool Layer::setSize(uint32_t w, uint32_t h) {
1697 if (mCurrentState.requested.w == w && mCurrentState.requested.h == h)
1698 return false;
1699 mCurrentState.requested.w = w;
1700 mCurrentState.requested.h = h;
Dan Stoza7dde5992015-05-22 09:51:44 -07001701 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001702 setTransactionFlags(eTransactionNeeded);
1703 return true;
1704}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001705#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08001706bool Layer::setAlpha(float alpha) {
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001707#else
1708bool Layer::setAlpha(uint8_t alpha) {
1709#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08001710 if (mCurrentState.alpha == alpha)
1711 return false;
1712 mCurrentState.sequence++;
1713 mCurrentState.alpha = alpha;
Dan Stoza7dde5992015-05-22 09:51:44 -07001714 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001715 setTransactionFlags(eTransactionNeeded);
1716 return true;
1717}
1718bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix) {
1719 mCurrentState.sequence++;
Robert Carr3dcabfa2016-03-01 18:36:58 -08001720 mCurrentState.requested.transform.set(
Robert Carrcb6e1e32017-02-21 19:48:26 -08001721 matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
Dan Stoza7dde5992015-05-22 09:51:44 -07001722 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001723 setTransactionFlags(eTransactionNeeded);
1724 return true;
1725}
1726bool Layer::setTransparentRegionHint(const Region& transparent) {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001727 mCurrentState.requestedTransparentRegion = transparent;
Dan Stoza7dde5992015-05-22 09:51:44 -07001728 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001729 setTransactionFlags(eTransactionNeeded);
1730 return true;
1731}
1732bool Layer::setFlags(uint8_t flags, uint8_t mask) {
1733 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1734 if (mCurrentState.flags == newFlags)
1735 return false;
1736 mCurrentState.sequence++;
1737 mCurrentState.flags = newFlags;
Dan Stoza7dde5992015-05-22 09:51:44 -07001738 mCurrentState.mask = mask;
1739 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001740 setTransactionFlags(eTransactionNeeded);
1741 return true;
1742}
Robert Carr99e27f02016-06-16 15:18:02 -07001743
1744bool Layer::setCrop(const Rect& crop, bool immediate) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001745 if (mCurrentState.crop == crop)
Mathias Agopian13127d82013-03-05 17:47:11 -08001746 return false;
1747 mCurrentState.sequence++;
Robert Carr99e27f02016-06-16 15:18:02 -07001748 mCurrentState.requestedCrop = crop;
1749 if (immediate) {
1750 mCurrentState.crop = crop;
1751 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001752 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001753 setTransactionFlags(eTransactionNeeded);
1754 return true;
1755}
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001756bool Layer::setFinalCrop(const Rect& crop) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001757 if (mCurrentState.finalCrop == crop)
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001758 return false;
1759 mCurrentState.sequence++;
Robert Carrb5d3d262016-03-25 15:08:13 -07001760 mCurrentState.finalCrop = crop;
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001761 mCurrentState.modified = true;
1762 setTransactionFlags(eTransactionNeeded);
1763 return true;
1764}
Mathias Agopian13127d82013-03-05 17:47:11 -08001765
Robert Carrc3574f72016-03-24 12:19:32 -07001766bool Layer::setOverrideScalingMode(int32_t scalingMode) {
1767 if (scalingMode == mOverrideScalingMode)
1768 return false;
1769 mOverrideScalingMode = scalingMode;
Robert Carr82364e32016-05-15 11:27:47 -07001770 setTransactionFlags(eTransactionNeeded);
Robert Carrc3574f72016-03-24 12:19:32 -07001771 return true;
1772}
1773
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001774void Layer::setInfo(uint32_t type, uint32_t appId) {
1775 mCurrentState.appId = appId;
1776 mCurrentState.type = type;
1777 mCurrentState.modified = true;
1778 setTransactionFlags(eTransactionNeeded);
1779}
1780
Robert Carrc3574f72016-03-24 12:19:32 -07001781uint32_t Layer::getEffectiveScalingMode() const {
1782 if (mOverrideScalingMode >= 0) {
1783 return mOverrideScalingMode;
1784 }
1785 return mCurrentScalingMode;
1786}
1787
Mathias Agopian13127d82013-03-05 17:47:11 -08001788bool Layer::setLayerStack(uint32_t layerStack) {
1789 if (mCurrentState.layerStack == layerStack)
1790 return false;
1791 mCurrentState.sequence++;
1792 mCurrentState.layerStack = layerStack;
Dan Stoza7dde5992015-05-22 09:51:44 -07001793 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001794 setTransactionFlags(eTransactionNeeded);
1795 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001796}
1797
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -07001798bool Layer::setDataSpace(android_dataspace dataSpace) {
1799 if (mCurrentState.dataSpace == dataSpace)
1800 return false;
1801 mCurrentState.sequence++;
1802 mCurrentState.dataSpace = dataSpace;
1803 mCurrentState.modified = true;
1804 setTransactionFlags(eTransactionNeeded);
1805 return true;
1806}
1807
Robert Carr1f0a16a2016-10-24 16:27:39 -07001808uint32_t Layer::getLayerStack() const {
1809 auto p = getParent();
1810 if (p == nullptr) {
1811 return getDrawingState().layerStack;
1812 }
1813 return p->getLayerStack();
1814}
1815
Robert Carr0d480722017-01-10 16:42:54 -08001816void Layer::deferTransactionUntil(const sp<Layer>& barrierLayer,
Dan Stoza7dde5992015-05-22 09:51:44 -07001817 uint64_t frameNumber) {
Robert Carr0d480722017-01-10 16:42:54 -08001818 mCurrentState.barrierLayer = barrierLayer;
Dan Stoza7dde5992015-05-22 09:51:44 -07001819 mCurrentState.frameNumber = frameNumber;
1820 // We don't set eTransactionNeeded, because just receiving a deferral
1821 // request without any other state updates shouldn't actually induce a delay
1822 mCurrentState.modified = true;
1823 pushPendingState();
Robert Carr0d480722017-01-10 16:42:54 -08001824 mCurrentState.barrierLayer = nullptr;
Dan Stoza792e5292016-02-11 11:43:58 -08001825 mCurrentState.frameNumber = 0;
Dan Stoza7dde5992015-05-22 09:51:44 -07001826 mCurrentState.modified = false;
Robert Carr0d480722017-01-10 16:42:54 -08001827 ALOGE("Deferred transaction");
1828}
1829
1830void Layer::deferTransactionUntil(const sp<IBinder>& barrierHandle,
1831 uint64_t frameNumber) {
1832 sp<Handle> handle = static_cast<Handle*>(barrierHandle.get());
1833 deferTransactionUntil(handle->owner.promote(), frameNumber);
Dan Stoza7dde5992015-05-22 09:51:44 -07001834}
1835
Dan Stozaee44edd2015-03-23 15:50:23 -07001836void Layer::useSurfaceDamage() {
1837 if (mFlinger->mForceFullDamage) {
1838 surfaceDamageRegion = Region::INVALID_REGION;
1839 } else {
1840 surfaceDamageRegion = mSurfaceFlingerConsumer->getSurfaceDamage();
1841 }
1842}
1843
1844void Layer::useEmptyDamage() {
1845 surfaceDamageRegion.clear();
1846}
1847
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001848// ----------------------------------------------------------------------------
1849// pageflip handling...
1850// ----------------------------------------------------------------------------
1851
Dan Stoza6b9454d2014-11-07 16:00:59 -08001852bool Layer::shouldPresentNow(const DispSync& dispSync) const {
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001853 if (mSidebandStreamChanged || mAutoRefresh) {
Dan Stozad87defa2015-07-29 16:15:50 -07001854 return true;
1855 }
1856
Dan Stoza6b9454d2014-11-07 16:00:59 -08001857 Mutex::Autolock lock(mQueueItemLock);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001858 if (mQueueItems.empty()) {
1859 return false;
1860 }
1861 auto timestamp = mQueueItems[0].mTimestamp;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001862 nsecs_t expectedPresent =
1863 mSurfaceFlingerConsumer->computeExpectedPresent(dispSync);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001864
1865 // Ignore timestamps more than a second in the future
1866 bool isPlausible = timestamp < (expectedPresent + s2ns(1));
1867 ALOGW_IF(!isPlausible, "[%s] Timestamp %" PRId64 " seems implausible "
1868 "relative to expectedPresent %" PRId64, mName.string(), timestamp,
1869 expectedPresent);
1870
1871 bool isDue = timestamp < expectedPresent;
1872 return isDue || !isPlausible;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001873}
1874
Brian Andersond6927fb2016-07-23 23:37:30 -07001875bool Layer::onPreComposition(nsecs_t refreshStartTime) {
1876 if (mBufferLatched) {
1877 Mutex::Autolock lock(mFrameEventHistoryMutex);
1878 mFrameEventHistory.addPreComposition(mCurrentFrameNumber, refreshStartTime);
1879 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001880 mRefreshPending = false;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001881 return mQueuedFrames > 0 || mSidebandStreamChanged || mAutoRefresh;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001882}
1883
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001884bool Layer::onPostComposition(const std::shared_ptr<FenceTime>& glDoneFence,
Brian Anderson3d4039d2016-09-23 16:31:30 -07001885 const std::shared_ptr<FenceTime>& presentFence,
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001886 const std::shared_ptr<FenceTime>& retireFence,
1887 const CompositorTiming& compositorTiming) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001888 mAcquireTimeline.updateSignalTimes();
1889 mReleaseTimeline.updateSignalTimes();
1890
Brian Andersond6927fb2016-07-23 23:37:30 -07001891 // mFrameLatencyNeeded is true when a new frame was latched for the
1892 // composition.
Fabien Sanglard28e98082016-12-05 10:19:46 -08001893 if (!mFrameLatencyNeeded)
1894 return false;
1895
Fabien Sanglard28e98082016-12-05 10:19:46 -08001896 // Update mFrameEventHistory.
1897 {
1898 Mutex::Autolock lock(mFrameEventHistoryMutex);
1899 mFrameEventHistory.addPostComposition(mCurrentFrameNumber,
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001900 glDoneFence, presentFence, compositorTiming);
Brian Anderson8cc8b102016-10-21 12:43:09 -07001901 if (mPreviousFrameNumber != 0) {
1902 mFrameEventHistory.addRetire(mPreviousFrameNumber,
1903 retireFence);
1904 }
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001905 }
Fabien Sanglard28e98082016-12-05 10:19:46 -08001906
1907 // Update mFrameTracker.
1908 nsecs_t desiredPresentTime = mSurfaceFlingerConsumer->getTimestamp();
1909 mFrameTracker.setDesiredPresentTime(desiredPresentTime);
1910
Brian Anderson3d4039d2016-09-23 16:31:30 -07001911 std::shared_ptr<FenceTime> frameReadyFence =
1912 mSurfaceFlingerConsumer->getCurrentFenceTime();
Fabien Sanglard28e98082016-12-05 10:19:46 -08001913 if (frameReadyFence->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001914 mFrameTracker.setFrameReadyFence(std::move(frameReadyFence));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001915 } else {
1916 // There was no fence for this frame, so assume that it was ready
1917 // to be presented at the desired present time.
1918 mFrameTracker.setFrameReadyTime(desiredPresentTime);
1919 }
1920
Brian Anderson3d4039d2016-09-23 16:31:30 -07001921 if (presentFence->isValid()) {
1922 mFrameTracker.setActualPresentFence(
1923 std::shared_ptr<FenceTime>(presentFence));
1924 } else if (retireFence->isValid()) {
1925 mFrameTracker.setActualPresentFence(
1926 std::shared_ptr<FenceTime>(retireFence));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001927 } else {
1928 // The HWC doesn't support present fences, so use the refresh
1929 // timestamp instead.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001930 mFrameTracker.setActualPresentTime(
1931 mFlinger->getHwComposer().getRefreshTimestamp(
1932 HWC_DISPLAY_PRIMARY));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001933 }
1934
1935 mFrameTracker.advanceFrame();
1936 mFrameLatencyNeeded = false;
1937 return true;
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001938}
1939
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001940#ifdef USE_HWC2
Brian Andersonf6386862016-10-31 16:34:13 -07001941void Layer::releasePendingBuffer(nsecs_t dequeueReadyTime) {
Brian Anderson5ea5e592016-12-01 16:54:33 -08001942 if (!mSurfaceFlingerConsumer->releasePendingBuffer()) {
1943 return;
1944 }
1945
Brian Anderson3d4039d2016-09-23 16:31:30 -07001946 auto releaseFenceTime = std::make_shared<FenceTime>(
Brian Andersond6927fb2016-07-23 23:37:30 -07001947 mSurfaceFlingerConsumer->getPrevFinalReleaseFence());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001948 mReleaseTimeline.push(releaseFenceTime);
1949
1950 Mutex::Autolock lock(mFrameEventHistoryMutex);
Brian Anderson8cc8b102016-10-21 12:43:09 -07001951 if (mPreviousFrameNumber != 0) {
1952 mFrameEventHistory.addRelease(mPreviousFrameNumber,
1953 dequeueReadyTime, std::move(releaseFenceTime));
1954 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001955}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001956#endif
Dan Stoza9e56aa02015-11-02 13:00:03 -08001957
Robert Carr1f0a16a2016-10-24 16:27:39 -07001958bool Layer::isHiddenByPolicy() const {
1959 const Layer::State& s(mDrawingState);
1960 const auto& parent = getParent();
1961 if (parent != nullptr && parent->isHiddenByPolicy()) {
1962 return true;
1963 }
1964 return s.flags & layer_state_t::eLayerHidden;
1965}
1966
Mathias Agopianda27af92012-09-13 18:17:13 -07001967bool Layer::isVisible() const {
Mathias Agopian13127d82013-03-05 17:47:11 -08001968 const Layer::State& s(mDrawingState);
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001969#ifdef USE_HWC2
Robert Carr1f0a16a2016-10-24 16:27:39 -07001970 return !(isHiddenByPolicy()) && s.alpha > 0.0f
Dan Stoza9e56aa02015-11-02 13:00:03 -08001971 && (mActiveBuffer != NULL || mSidebandStream != NULL);
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001972#else
Robert Carr1f0a16a2016-10-24 16:27:39 -07001973 return !(isHiddenByPolicy()) && s.alpha
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001974 && (mActiveBuffer != NULL || mSidebandStream != NULL);
1975#endif
Mathias Agopianda27af92012-09-13 18:17:13 -07001976}
1977
Fabien Sanglardcd6fd542016-10-13 12:47:39 -07001978bool Layer::allTransactionsSignaled() {
1979 auto headFrameNumber = getHeadFrameNumber();
1980 bool matchingFramesFound = false;
1981 bool allTransactionsApplied = true;
1982 Mutex::Autolock lock(mLocalSyncPointMutex);
1983
1984 for (auto& point : mLocalSyncPoints) {
1985 if (point->getFrameNumber() > headFrameNumber) {
1986 break;
1987 }
1988 matchingFramesFound = true;
1989
1990 if (!point->frameIsAvailable()) {
1991 // We haven't notified the remote layer that the frame for
1992 // this point is available yet. Notify it now, and then
1993 // abort this attempt to latch.
1994 point->setFrameAvailable();
1995 allTransactionsApplied = false;
1996 break;
1997 }
1998
1999 allTransactionsApplied = allTransactionsApplied && point->transactionIsApplied();
2000 }
2001 return !matchingFramesFound || allTransactionsApplied;
2002}
2003
Brian Andersond6927fb2016-07-23 23:37:30 -07002004Region Layer::latchBuffer(bool& recomputeVisibleRegions, nsecs_t latchTime)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002005{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08002006 ATRACE_CALL();
2007
Jesse Hall399184a2014-03-03 15:42:54 -08002008 if (android_atomic_acquire_cas(true, false, &mSidebandStreamChanged) == 0) {
2009 // mSidebandStreamChanged was true
2010 mSidebandStream = mSurfaceFlingerConsumer->getSidebandStream();
Dan Stoza12e0a272015-05-05 14:00:52 -07002011 if (mSidebandStream != NULL) {
2012 setTransactionFlags(eTransactionNeeded);
2013 mFlinger->setTransactionFlags(eTraversalNeeded);
2014 }
Jesse Hall5bf786d2014-09-30 10:35:11 -07002015 recomputeVisibleRegions = true;
2016
2017 const State& s(getDrawingState());
Robert Carr1f0a16a2016-10-24 16:27:39 -07002018 return getTransform().transform(Region(Rect(s.active.w, s.active.h)));
Jesse Hall399184a2014-03-03 15:42:54 -08002019 }
2020
Mathias Agopian4fec8732012-06-29 14:12:52 -07002021 Region outDirtyRegion;
Fabien Sanglard223eb912016-10-13 10:15:06 -07002022 if (mQueuedFrames <= 0 && !mAutoRefresh) {
2023 return outDirtyRegion;
2024 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002025
Fabien Sanglard223eb912016-10-13 10:15:06 -07002026 // if we've already called updateTexImage() without going through
2027 // a composition step, we have to skip this layer at this point
2028 // because we cannot call updateTeximage() without a corresponding
2029 // compositionComplete() call.
2030 // we'll trigger an update in onPreComposition().
2031 if (mRefreshPending) {
2032 return outDirtyRegion;
2033 }
2034
2035 // If the head buffer's acquire fence hasn't signaled yet, return and
2036 // try again later
2037 if (!headFenceHasSignaled()) {
2038 mFlinger->signalLayerUpdate();
2039 return outDirtyRegion;
2040 }
2041
2042 // Capture the old state of the layer for comparisons later
2043 const State& s(getDrawingState());
2044 const bool oldOpacity = isOpaque(s);
2045 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
2046
Fabien Sanglardcd6fd542016-10-13 12:47:39 -07002047 if (!allTransactionsSignaled()) {
Fabien Sanglard223eb912016-10-13 10:15:06 -07002048 mFlinger->signalLayerUpdate();
2049 return outDirtyRegion;
2050 }
2051
2052 // This boolean is used to make sure that SurfaceFlinger's shadow copy
2053 // of the buffer queue isn't modified when the buffer queue is returning
2054 // BufferItem's that weren't actually queued. This can happen in shared
2055 // buffer mode.
2056 bool queuedBuffer = false;
Fabien Sanglard7b1563a2016-10-13 12:05:28 -07002057 LayerRejecter r(mDrawingState, getCurrentState(), recomputeVisibleRegions,
2058 getProducerStickyTransform() != 0, mName.string(),
2059 mOverrideScalingMode, mFreezePositionUpdates);
Fabien Sanglard223eb912016-10-13 10:15:06 -07002060 status_t updateResult = mSurfaceFlingerConsumer->updateTexImage(&r,
2061 mFlinger->mPrimaryDispSync, &mAutoRefresh, &queuedBuffer,
2062 mLastFrameNumberReceived);
2063 if (updateResult == BufferQueue::PRESENT_LATER) {
2064 // Producer doesn't want buffer to be displayed yet. Signal a
2065 // layer update so we check again at the next opportunity.
2066 mFlinger->signalLayerUpdate();
2067 return outDirtyRegion;
2068 } else if (updateResult == SurfaceFlingerConsumer::BUFFER_REJECTED) {
2069 // If the buffer has been rejected, remove it from the shadow queue
2070 // and return early
2071 if (queuedBuffer) {
2072 Mutex::Autolock lock(mQueueItemLock);
2073 mQueueItems.removeAt(0);
2074 android_atomic_dec(&mQueuedFrames);
2075 }
2076 return outDirtyRegion;
2077 } else if (updateResult != NO_ERROR || mUpdateTexImageFailed) {
2078 // This can occur if something goes wrong when trying to create the
2079 // EGLImage for this buffer. If this happens, the buffer has already
2080 // been released, so we need to clean up the queue and bug out
2081 // early.
2082 if (queuedBuffer) {
2083 Mutex::Autolock lock(mQueueItemLock);
2084 mQueueItems.clear();
2085 android_atomic_and(0, &mQueuedFrames);
Mathias Agopian702634a2012-05-23 17:50:31 -07002086 }
2087
Fabien Sanglard223eb912016-10-13 10:15:06 -07002088 // Once we have hit this state, the shadow queue may no longer
2089 // correctly reflect the incoming BufferQueue's contents, so even if
2090 // updateTexImage starts working, the only safe course of action is
2091 // to continue to ignore updates.
2092 mUpdateTexImageFailed = true;
2093
2094 return outDirtyRegion;
2095 }
2096
2097 if (queuedBuffer) {
2098 // Autolock scope
2099 auto currentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2100
2101 Mutex::Autolock lock(mQueueItemLock);
2102
2103 // Remove any stale buffers that have been dropped during
2104 // updateTexImage
2105 while (mQueueItems[0].mFrameNumber != currentFrameNumber) {
2106 mQueueItems.removeAt(0);
2107 android_atomic_dec(&mQueuedFrames);
2108 }
2109
2110 mQueueItems.removeAt(0);
2111 }
2112
2113
2114 // Decrement the queued-frames count. Signal another event if we
2115 // have more frames pending.
2116 if ((queuedBuffer && android_atomic_dec(&mQueuedFrames) > 1)
2117 || mAutoRefresh) {
2118 mFlinger->signalLayerUpdate();
2119 }
2120
Fabien Sanglard223eb912016-10-13 10:15:06 -07002121 // update the active buffer
Chia-I Wu06d63de2017-01-04 14:58:51 +08002122 mActiveBuffer = mSurfaceFlingerConsumer->getCurrentBuffer(
2123 &mActiveBufferSlot);
Fabien Sanglard223eb912016-10-13 10:15:06 -07002124 if (mActiveBuffer == NULL) {
2125 // this can only happen if the very first buffer was rejected.
2126 return outDirtyRegion;
2127 }
2128
Brian Andersond6927fb2016-07-23 23:37:30 -07002129 mBufferLatched = true;
2130 mPreviousFrameNumber = mCurrentFrameNumber;
2131 mCurrentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2132
2133 {
2134 Mutex::Autolock lock(mFrameEventHistoryMutex);
2135 mFrameEventHistory.addLatch(mCurrentFrameNumber, latchTime);
2136#ifndef USE_HWC2
Brian Anderson3d4039d2016-09-23 16:31:30 -07002137 auto releaseFenceTime = std::make_shared<FenceTime>(
Brian Andersond6927fb2016-07-23 23:37:30 -07002138 mSurfaceFlingerConsumer->getPrevFinalReleaseFence());
Brian Anderson3d4039d2016-09-23 16:31:30 -07002139 mReleaseTimeline.push(releaseFenceTime);
Brian Anderson8cc8b102016-10-21 12:43:09 -07002140 if (mPreviousFrameNumber != 0) {
2141 mFrameEventHistory.addRelease(mPreviousFrameNumber,
2142 latchTime, std::move(releaseFenceTime));
2143 }
Brian Andersond6927fb2016-07-23 23:37:30 -07002144#endif
2145 }
2146
Fabien Sanglard223eb912016-10-13 10:15:06 -07002147 mRefreshPending = true;
2148 mFrameLatencyNeeded = true;
2149 if (oldActiveBuffer == NULL) {
2150 // the first time we receive a buffer, we need to trigger a
2151 // geometry invalidation.
2152 recomputeVisibleRegions = true;
2153 }
2154
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -07002155 setDataSpace(mSurfaceFlingerConsumer->getCurrentDataSpace());
2156
Fabien Sanglard223eb912016-10-13 10:15:06 -07002157 Rect crop(mSurfaceFlingerConsumer->getCurrentCrop());
2158 const uint32_t transform(mSurfaceFlingerConsumer->getCurrentTransform());
2159 const uint32_t scalingMode(mSurfaceFlingerConsumer->getCurrentScalingMode());
2160 if ((crop != mCurrentCrop) ||
2161 (transform != mCurrentTransform) ||
2162 (scalingMode != mCurrentScalingMode))
2163 {
2164 mCurrentCrop = crop;
2165 mCurrentTransform = transform;
2166 mCurrentScalingMode = scalingMode;
2167 recomputeVisibleRegions = true;
2168 }
2169
2170 if (oldActiveBuffer != NULL) {
2171 uint32_t bufWidth = mActiveBuffer->getWidth();
2172 uint32_t bufHeight = mActiveBuffer->getHeight();
2173 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
2174 bufHeight != uint32_t(oldActiveBuffer->height)) {
Mathias Agopian702634a2012-05-23 17:50:31 -07002175 recomputeVisibleRegions = true;
2176 }
Fabien Sanglard223eb912016-10-13 10:15:06 -07002177 }
Mathias Agopian702634a2012-05-23 17:50:31 -07002178
Fabien Sanglard223eb912016-10-13 10:15:06 -07002179 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
2180 if (oldOpacity != isOpaque(s)) {
2181 recomputeVisibleRegions = true;
2182 }
Dan Stozacac35382016-01-27 12:21:06 -08002183
Fabien Sanglard223eb912016-10-13 10:15:06 -07002184 // Remove any sync points corresponding to the buffer which was just
2185 // latched
2186 {
2187 Mutex::Autolock lock(mLocalSyncPointMutex);
2188 auto point = mLocalSyncPoints.begin();
2189 while (point != mLocalSyncPoints.end()) {
2190 if (!(*point)->frameIsAvailable() ||
2191 !(*point)->transactionIsApplied()) {
2192 // This sync point must have been added since we started
2193 // latching. Don't drop it yet.
2194 ++point;
2195 continue;
2196 }
2197
2198 if ((*point)->getFrameNumber() <= mCurrentFrameNumber) {
2199 point = mLocalSyncPoints.erase(point);
2200 } else {
2201 ++point;
Dan Stozacac35382016-01-27 12:21:06 -08002202 }
2203 }
Mathias Agopiancaa600c2009-09-16 18:27:24 -07002204 }
Fabien Sanglard223eb912016-10-13 10:15:06 -07002205
2206 // FIXME: postedRegion should be dirty & bounds
2207 Region dirtyRegion(Rect(s.active.w, s.active.h));
2208
2209 // transform the dirty region to window-manager space
Robert Carr1f0a16a2016-10-24 16:27:39 -07002210 outDirtyRegion = (getTransform().transform(dirtyRegion));
Fabien Sanglard223eb912016-10-13 10:15:06 -07002211
Mathias Agopian4fec8732012-06-29 14:12:52 -07002212 return outDirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002213}
2214
Mathias Agopiana67932f2011-04-20 14:20:59 -07002215uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002216{
Mathias Agopiana67932f2011-04-20 14:20:59 -07002217 // TODO: should we do something special if mSecure is set?
2218 if (mProtectedByApp) {
2219 // need a hardware-protected path to external video sink
2220 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07002221 }
Riley Andrews03414a12014-07-01 14:22:59 -07002222 if (mPotentialCursor) {
2223 usage |= GraphicBuffer::USAGE_CURSOR;
2224 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07002225 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07002226 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07002227}
2228
Mathias Agopian84300952012-11-21 16:02:13 -08002229void Layer::updateTransformHint(const sp<const DisplayDevice>& hw) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07002230 uint32_t orientation = 0;
2231 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08002232 // The transform hint is used to improve performance, but we can
2233 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07002234 // apply to all displays.
Mathias Agopian42977342012-08-05 00:40:46 -07002235 const Transform& planeTransform(hw->getTransform());
Mathias Agopian4fec8732012-06-29 14:12:52 -07002236 orientation = planeTransform.getOrientation();
Mathias Agopiana4583642011-08-23 18:03:18 -07002237 if (orientation & Transform::ROT_INVALID) {
2238 orientation = 0;
2239 }
2240 }
Andy McFaddenbf974ab2012-12-04 16:51:15 -08002241 mSurfaceFlingerConsumer->setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07002242}
2243
Mathias Agopian13127d82013-03-05 17:47:11 -08002244// ----------------------------------------------------------------------------
2245// debugging
2246// ----------------------------------------------------------------------------
2247
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002248void Layer::dump(String8& result, Colorizer& colorizer) const
Mathias Agopian13127d82013-03-05 17:47:11 -08002249{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002250 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08002251
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002252 colorizer.colorize(result, Colorizer::GREEN);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002253 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002254 "+ %s %p (%s)\n",
2255 getTypeId(), this, getName().string());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002256 colorizer.reset(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002257
Mathias Agopian2ca79392013-04-02 18:30:32 -07002258 s.activeTransparentRegion.dump(result, "transparentRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002259 visibleRegion.dump(result, "visibleRegion");
Dan Stozaee44edd2015-03-23 15:50:23 -07002260 surfaceDamageRegion.dump(result, "surfaceDamageRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002261 sp<Client> client(mClientRef.promote());
2262
Mathias Agopian74d211a2013-04-22 16:55:35 +02002263 result.appendFormat( " "
Pablo Ceballosacbe6782016-03-04 17:54:21 +00002264 "layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), "
2265 "crop=(%4d,%4d,%4d,%4d), finalCrop=(%4d,%4d,%4d,%4d), "
Mathias Agopian13127d82013-03-05 17:47:11 -08002266 "isOpaque=%1d, invalidate=%1d, "
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002267#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08002268 "alpha=%.3f, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002269#else
2270 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
2271#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08002272 " client=%p\n",
Robert Carr1f0a16a2016-10-24 16:27:39 -07002273 getLayerStack(), s.z,
2274 s.active.transform.tx(), s.active.transform.ty(),
2275 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07002276 s.crop.left, s.crop.top,
2277 s.crop.right, s.crop.bottom,
2278 s.finalCrop.left, s.finalCrop.top,
2279 s.finalCrop.right, s.finalCrop.bottom,
Andy McFadden4125a4f2014-01-29 17:17:11 -08002280 isOpaque(s), contentDirty,
Mathias Agopian13127d82013-03-05 17:47:11 -08002281 s.alpha, s.flags,
Robert Carr3dcabfa2016-03-01 18:36:58 -08002282 s.active.transform[0][0], s.active.transform[0][1],
2283 s.active.transform[1][0], s.active.transform[1][1],
Mathias Agopian13127d82013-03-05 17:47:11 -08002284 client.get());
Mathias Agopian13127d82013-03-05 17:47:11 -08002285
2286 sp<const GraphicBuffer> buf0(mActiveBuffer);
2287 uint32_t w0=0, h0=0, s0=0, f0=0;
2288 if (buf0 != 0) {
2289 w0 = buf0->getWidth();
2290 h0 = buf0->getHeight();
2291 s0 = buf0->getStride();
2292 f0 = buf0->format;
2293 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02002294 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002295 " "
2296 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
2297 " queued-frames=%d, mRefreshPending=%d\n",
2298 mFormat, w0, h0, s0,f0,
2299 mQueuedFrames, mRefreshPending);
2300
Mathias Agopian13127d82013-03-05 17:47:11 -08002301 if (mSurfaceFlingerConsumer != 0) {
Colin Cross3d1d2802016-09-26 18:10:16 -07002302 mSurfaceFlingerConsumer->dumpState(result, " ");
Mathias Agopian13127d82013-03-05 17:47:11 -08002303 }
2304}
2305
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002306#ifdef USE_HWC2
Dan Stozae22aec72016-08-01 13:20:59 -07002307void Layer::miniDumpHeader(String8& result) {
2308 result.append("----------------------------------------");
2309 result.append("---------------------------------------\n");
2310 result.append(" Layer name\n");
2311 result.append(" Z | ");
2312 result.append(" Comp Type | ");
2313 result.append(" Disp Frame (LTRB) | ");
2314 result.append(" Source Crop (LTRB)\n");
2315 result.append("----------------------------------------");
2316 result.append("---------------------------------------\n");
2317}
2318
2319void Layer::miniDump(String8& result, int32_t hwcId) const {
2320 if (mHwcLayers.count(hwcId) == 0) {
2321 return;
2322 }
2323
2324 String8 name;
2325 if (mName.length() > 77) {
2326 std::string shortened;
2327 shortened.append(mName.string(), 36);
2328 shortened.append("[...]");
2329 shortened.append(mName.string() + (mName.length() - 36), 36);
2330 name = shortened.c_str();
2331 } else {
2332 name = mName;
2333 }
2334
2335 result.appendFormat(" %s\n", name.string());
2336
2337 const Layer::State& layerState(getDrawingState());
2338 const HWCInfo& hwcInfo = mHwcLayers.at(hwcId);
2339 result.appendFormat(" %10u | ", layerState.z);
2340 result.appendFormat("%10s | ",
2341 to_string(getCompositionType(hwcId)).c_str());
2342 const Rect& frame = hwcInfo.displayFrame;
2343 result.appendFormat("%4d %4d %4d %4d | ", frame.left, frame.top,
2344 frame.right, frame.bottom);
Dan Stoza5a423ea2017-02-16 14:10:39 -08002345 const FloatRect& crop = hwcInfo.sourceCrop;
Dan Stozae22aec72016-08-01 13:20:59 -07002346 result.appendFormat("%6.1f %6.1f %6.1f %6.1f\n", crop.left, crop.top,
2347 crop.right, crop.bottom);
2348
2349 result.append("- - - - - - - - - - - - - - - - - - - - ");
2350 result.append("- - - - - - - - - - - - - - - - - - - -\n");
2351}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002352#endif
Dan Stozae22aec72016-08-01 13:20:59 -07002353
Svetoslavd85084b2014-03-20 10:28:31 -07002354void Layer::dumpFrameStats(String8& result) const {
2355 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002356}
2357
Svetoslavd85084b2014-03-20 10:28:31 -07002358void Layer::clearFrameStats() {
2359 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08002360}
2361
Jamie Gennis6547ff42013-07-16 20:12:42 -07002362void Layer::logFrameStats() {
2363 mFrameTracker.logAndResetStats(mName);
2364}
2365
Svetoslavd85084b2014-03-20 10:28:31 -07002366void Layer::getFrameStats(FrameStats* outStats) const {
2367 mFrameTracker.getStats(outStats);
2368}
2369
Brian Andersond6927fb2016-07-23 23:37:30 -07002370void Layer::dumpFrameEvents(String8& result) {
2371 result.appendFormat("- Layer %s (%s, %p)\n",
2372 getName().string(), getTypeId(), this);
2373 Mutex::Autolock lock(mFrameEventHistoryMutex);
2374 mFrameEventHistory.checkFencesForCompletion();
2375 mFrameEventHistory.dump(result);
2376}
Pablo Ceballos40845df2016-01-25 17:41:15 -08002377
Brian Anderson5ea5e592016-12-01 16:54:33 -08002378void Layer::onDisconnect() {
2379 Mutex::Autolock lock(mFrameEventHistoryMutex);
2380 mFrameEventHistory.onDisconnect();
2381}
2382
Brian Anderson3890c392016-07-25 12:48:08 -07002383void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
2384 FrameEventHistoryDelta *outDelta) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002385 Mutex::Autolock lock(mFrameEventHistoryMutex);
2386 if (newTimestamps) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002387 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07002388 mFrameEventHistory.addQueue(*newTimestamps);
2389 }
2390
Brian Anderson3890c392016-07-25 12:48:08 -07002391 if (outDelta) {
2392 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07002393 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08002394}
Dan Stozae77c7662016-05-13 11:37:28 -07002395
2396std::vector<OccupancyTracker::Segment> Layer::getOccupancyHistory(
2397 bool forceFlush) {
2398 std::vector<OccupancyTracker::Segment> history;
2399 status_t result = mSurfaceFlingerConsumer->getOccupancyHistory(forceFlush,
2400 &history);
2401 if (result != NO_ERROR) {
2402 ALOGW("[%s] Failed to obtain occupancy history (%d)", mName.string(),
2403 result);
2404 return {};
2405 }
2406 return history;
2407}
2408
Robert Carr367c5682016-06-20 11:55:28 -07002409bool Layer::getTransformToDisplayInverse() const {
2410 return mSurfaceFlingerConsumer->getTransformToDisplayInverse();
2411}
2412
Robert Carr1f0a16a2016-10-24 16:27:39 -07002413void Layer::addChild(const sp<Layer>& layer) {
2414 mCurrentChildren.add(layer);
2415 layer->setParent(this);
2416}
2417
2418ssize_t Layer::removeChild(const sp<Layer>& layer) {
2419 layer->setParent(nullptr);
2420 return mCurrentChildren.remove(layer);
2421}
2422
Robert Carr1db73f62016-12-21 12:58:51 -08002423bool Layer::reparentChildren(const sp<IBinder>& newParentHandle) {
2424 sp<Handle> handle = nullptr;
2425 sp<Layer> newParent = nullptr;
2426 if (newParentHandle == nullptr) {
2427 return false;
2428 }
2429 handle = static_cast<Handle*>(newParentHandle.get());
2430 newParent = handle->owner.promote();
2431 if (newParent == nullptr) {
2432 ALOGE("Unable to promote Layer handle");
2433 return false;
2434 }
2435
2436 for (const sp<Layer>& child : mCurrentChildren) {
2437 newParent->addChild(child);
2438
2439 sp<Client> client(child->mClientRef.promote());
2440 if (client != nullptr) {
2441 client->setParentLayer(newParent);
2442 }
2443 }
2444 mCurrentChildren.clear();
2445
2446 return true;
2447}
2448
Robert Carr9524cb32017-02-13 11:32:32 -08002449bool Layer::detachChildren() {
2450 traverseInZOrder([this](Layer* child) {
2451 if (child == this) {
2452 return;
2453 }
2454
2455 sp<Client> client(child->mClientRef.promote());
2456 if (client != nullptr) {
2457 client->detachLayer(child);
2458 }
2459 });
2460
2461 return true;
2462}
2463
Robert Carr1f0a16a2016-10-24 16:27:39 -07002464void Layer::setParent(const sp<Layer>& layer) {
2465 mParent = layer;
2466}
2467
2468void Layer::clearSyncPoints() {
2469 for (const auto& child : mCurrentChildren) {
2470 child->clearSyncPoints();
2471 }
2472
2473 Mutex::Autolock lock(mLocalSyncPointMutex);
2474 for (auto& point : mLocalSyncPoints) {
2475 point->setFrameAvailable();
2476 }
2477 mLocalSyncPoints.clear();
2478}
2479
2480int32_t Layer::getZ() const {
2481 return mDrawingState.z;
2482}
2483
2484/**
2485 * Negatively signed children are before 'this' in Z-order.
2486 */
2487void Layer::traverseInZOrder(const std::function<void(Layer*)>& exec) {
2488 size_t i = 0;
2489 for (; i < mDrawingChildren.size(); i++) {
2490 const auto& child = mDrawingChildren[i];
2491 if (child->getZ() >= 0)
2492 break;
2493 child->traverseInZOrder(exec);
2494 }
2495 exec(this);
2496 for (; i < mDrawingChildren.size(); i++) {
2497 const auto& child = mDrawingChildren[i];
2498 child->traverseInZOrder(exec);
2499 }
2500}
2501
2502/**
2503 * Positively signed children are before 'this' in reverse Z-order.
2504 */
2505void Layer::traverseInReverseZOrder(const std::function<void(Layer*)>& exec) {
2506 int32_t i = 0;
2507 for (i = mDrawingChildren.size()-1; i>=0; i--) {
2508 const auto& child = mDrawingChildren[i];
2509 if (child->getZ() < 0) {
2510 break;
2511 }
2512 child->traverseInReverseZOrder(exec);
2513 }
2514 exec(this);
2515 for (; i>=0; i--) {
2516 const auto& child = mDrawingChildren[i];
2517 child->traverseInReverseZOrder(exec);
2518 }
2519}
2520
2521Transform Layer::getTransform() const {
2522 Transform t;
2523 const auto& p = getParent();
2524 if (p != nullptr) {
2525 t = p->getTransform();
2526 }
2527 return t * getDrawingState().active.transform;
2528}
2529
2530void Layer::commitChildList() {
2531 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
2532 const auto& child = mCurrentChildren[i];
2533 child->commitChildList();
2534 }
2535 mDrawingChildren = mCurrentChildren;
2536}
2537
Mathias Agopian13127d82013-03-05 17:47:11 -08002538// ---------------------------------------------------------------------------
2539
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002540}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002541
2542#if defined(__gl_h_)
2543#error "don't include gl/gl.h in this file"
2544#endif
2545
2546#if defined(__gl2_h_)
2547#error "don't include gl2/gl2.h in this file"
2548#endif