blob: 598a65a8645ccd9a315dfa550df11eb800fb15e5 [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;
Robert Carrcae605c2017-03-29 12:10:31 -0700508 if (getTransformToDisplayInverse()) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000509 /*
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;
Robert Carr6452f122017-03-21 10:41:29 -0700598 if (!isOpaque(s) || getAlpha() != 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
Robert Carr6452f122017-03-21 10:41:29 -0700607 if (!isOpaque(s) || getAlpha() != 0xFF) {
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000608 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
Robert Carr6452f122017-03-21 10:41:29 -0700681 float alpha = getAlpha();
682 error = hwcLayer->setPlaneAlpha(alpha);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800683 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set plane alpha %.3f: "
Robert Carr6452f122017-03-21 10:41:29 -0700684 "%s (%d)", mName.string(), alpha, to_string(error).c_str(),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800685 static_cast<int32_t>(error));
686
Robert Carrae060832016-11-28 10:51:00 -0800687 error = hwcLayer->setZOrder(z);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800688 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set Z %u: %s (%d)",
Robert Carrae060832016-11-28 10:51:00 -0800689 mName.string(), z, to_string(error).c_str(),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800690 static_cast<int32_t>(error));
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500691
692 error = hwcLayer->setInfo(s.type, s.appId);
693 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set info (%d)",
694 mName.string(), static_cast<int32_t>(error));
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000695#else
696 if (!frame.intersect(hw->getViewport(), &frame)) {
697 frame.clear();
698 }
699 const Transform& tr(hw->getTransform());
700 layer.setFrame(tr.transform(frame));
701 layer.setCrop(computeCrop(hw));
Robert Carr6452f122017-03-21 10:41:29 -0700702 layer.setPlaneAlpha(getAlpha());
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000703#endif
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800704
Mathias Agopian29a367b2011-07-12 14:51:45 -0700705 /*
706 * Transformations are applied in this order:
707 * 1) buffer orientation/flip/mirror
708 * 2) state transformation (window manager)
709 * 3) layer orientation (screen orientation)
710 * (NOTE: the matrices are multiplied in reverse order)
711 */
712
713 const Transform bufferOrientation(mCurrentTransform);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700714 Transform transform(tr * t * bufferOrientation);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700715
Robert Carrcae605c2017-03-29 12:10:31 -0700716 if (getTransformToDisplayInverse()) {
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700717 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700718 * the code below applies the primary display's inverse transform to the
719 * buffer
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700720 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700721 uint32_t invTransform =
722 DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700723 // calculate the inverse transform
724 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
725 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
726 NATIVE_WINDOW_TRANSFORM_FLIP_H;
727 }
Robert Carrcae605c2017-03-29 12:10:31 -0700728
729 /*
730 * Here we cancel out the orientation component of the WM transform.
731 * The scaling and translate components are already included in our bounds
732 * computation so it's enough to just omit it in the composition.
733 * See comment in onDraw with ref to b/36727915 for why.
734 */
735 transform = Transform(invTransform) * tr * bufferOrientation;
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700736 }
Mathias Agopian29a367b2011-07-12 14:51:45 -0700737
738 // this gives us only the "orientation" component of the transform
Mathias Agopian13127d82013-03-05 17:47:11 -0800739 const uint32_t orientation = transform.getOrientation();
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000740#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800741 if (orientation & Transform::ROT_INVALID) {
742 // we can only handle simple transformation
743 hwcInfo.forceClientComposition = true;
744 } else {
745 auto transform = static_cast<HWC2::Transform>(orientation);
746 auto error = hwcLayer->setTransform(transform);
747 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set transform %s: "
748 "%s (%d)", mName.string(), to_string(transform).c_str(),
749 to_string(error).c_str(), static_cast<int32_t>(error));
750 }
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000751#else
752 if (orientation & Transform::ROT_INVALID) {
753 // we can only handle simple transformation
754 layer.setSkip(true);
755 } else {
756 layer.setTransform(orientation);
757 }
758#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700759}
760
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000761#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800762void Layer::forceClientComposition(int32_t hwcId) {
763 if (mHwcLayers.count(hwcId) == 0) {
764 ALOGE("forceClientComposition: no HWC layer found (%d)", hwcId);
765 return;
766 }
767
768 mHwcLayers[hwcId].forceClientComposition = true;
769}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800770
Dan Stoza9e56aa02015-11-02 13:00:03 -0800771void Layer::setPerFrameData(const sp<const DisplayDevice>& displayDevice) {
772 // Apply this display's projection's viewport to the visible region
773 // before giving it to the HWC HAL.
774 const Transform& tr = displayDevice->getTransform();
775 const auto& viewport = displayDevice->getViewport();
776 Region visible = tr.transform(visibleRegion.intersect(viewport));
777 auto hwcId = displayDevice->getHwcDisplayId();
Chia-I Wuaaff73f2017-02-13 12:28:24 -0800778 auto& hwcInfo = mHwcLayers[hwcId];
779 auto& hwcLayer = hwcInfo.layer;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800780 auto error = hwcLayer->setVisibleRegion(visible);
781 if (error != HWC2::Error::None) {
782 ALOGE("[%s] Failed to set visible region: %s (%d)", mName.string(),
783 to_string(error).c_str(), static_cast<int32_t>(error));
784 visible.dump(LOG_TAG);
785 }
786
787 error = hwcLayer->setSurfaceDamage(surfaceDamageRegion);
788 if (error != HWC2::Error::None) {
789 ALOGE("[%s] Failed to set surface damage: %s (%d)", mName.string(),
790 to_string(error).c_str(), static_cast<int32_t>(error));
791 surfaceDamageRegion.dump(LOG_TAG);
792 }
793
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700794 // Sideband layers
Dan Stoza9e56aa02015-11-02 13:00:03 -0800795 if (mSidebandStream.get()) {
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700796 setCompositionType(hwcId, HWC2::Composition::Sideband);
797 ALOGV("[%s] Requesting Sideband composition", mName.string());
798 error = hwcLayer->setSidebandStream(mSidebandStream->handle());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800799 if (error != HWC2::Error::None) {
800 ALOGE("[%s] Failed to set sideband stream %p: %s (%d)",
801 mName.string(), mSidebandStream->handle(),
802 to_string(error).c_str(), static_cast<int32_t>(error));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800803 }
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700804 return;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800805 }
806
Dan Stoza0a21df72016-07-20 12:52:38 -0700807 // Client layers
Chia-I Wuaaff73f2017-02-13 12:28:24 -0800808 if (hwcInfo.forceClientComposition ||
Dan Stoza0a21df72016-07-20 12:52:38 -0700809 (mActiveBuffer != nullptr && mActiveBuffer->handle == nullptr)) {
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700810 ALOGV("[%s] Requesting Client composition", mName.string());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800811 setCompositionType(hwcId, HWC2::Composition::Client);
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700812 return;
813 }
814
Dan Stoza0a21df72016-07-20 12:52:38 -0700815 // SolidColor layers
816 if (mActiveBuffer == nullptr) {
817 setCompositionType(hwcId, HWC2::Composition::SolidColor);
Dan Stozac6c89542016-07-27 10:16:52 -0700818
819 // For now, we only support black for DimLayer
Dan Stoza0a21df72016-07-20 12:52:38 -0700820 error = hwcLayer->setColor({0, 0, 0, 255});
821 if (error != HWC2::Error::None) {
822 ALOGE("[%s] Failed to set color: %s (%d)", mName.string(),
823 to_string(error).c_str(), static_cast<int32_t>(error));
824 }
Dan Stozac6c89542016-07-27 10:16:52 -0700825
826 // Clear out the transform, because it doesn't make sense absent a
827 // source buffer
828 error = hwcLayer->setTransform(HWC2::Transform::None);
829 if (error != HWC2::Error::None) {
830 ALOGE("[%s] Failed to clear transform: %s (%d)", mName.string(),
831 to_string(error).c_str(), static_cast<int32_t>(error));
832 }
833
Dan Stoza0a21df72016-07-20 12:52:38 -0700834 return;
835 }
836
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700837 // Device or Cursor layers
838 if (mPotentialCursor) {
839 ALOGV("[%s] Requesting Cursor composition", mName.string());
840 setCompositionType(hwcId, HWC2::Composition::Cursor);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800841 } else {
842 ALOGV("[%s] Requesting Device composition", mName.string());
843 setCompositionType(hwcId, HWC2::Composition::Device);
844 }
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700845
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -0700846 ALOGV("setPerFrameData: dataspace = %d", mCurrentState.dataSpace);
847 error = hwcLayer->setDataspace(mCurrentState.dataSpace);
848 if (error != HWC2::Error::None) {
849 ALOGE("[%s] Failed to set dataspace %d: %s (%d)", mName.string(),
850 mCurrentState.dataSpace, to_string(error).c_str(),
851 static_cast<int32_t>(error));
852 }
853
Chia-I Wu06d63de2017-01-04 14:58:51 +0800854 uint32_t hwcSlot = 0;
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400855 sp<GraphicBuffer> hwcBuffer;
856 hwcInfo.bufferCache.getHwcBuffer(mActiveBufferSlot, mActiveBuffer,
857 &hwcSlot, &hwcBuffer);
Chia-I Wu06d63de2017-01-04 14:58:51 +0800858
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700859 auto acquireFence = mSurfaceFlingerConsumer->getCurrentFence();
Daniel Nicoara1f42e3a2017-04-10 13:27:32 -0400860 error = hwcLayer->setBuffer(hwcSlot, hwcBuffer, acquireFence);
Dan Stoza0f67b3f2016-05-17 10:48:38 -0700861 if (error != HWC2::Error::None) {
862 ALOGE("[%s] Failed to set buffer %p: %s (%d)", mName.string(),
863 mActiveBuffer->handle, to_string(error).c_str(),
864 static_cast<int32_t>(error));
865 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800866}
Courtney Goeltzenleuchter9551fd32016-10-20 17:18:15 -0600867
868android_dataspace Layer::getDataSpace() const {
869 return mCurrentState.dataSpace;
870}
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000871#else
872void Layer::setPerFrameData(const sp<const DisplayDevice>& hw,
873 HWComposer::HWCLayerInterface& layer) {
874 // we have to set the visible region on every frame because
875 // we currently free it during onLayerDisplayed(), which is called
876 // after HWComposer::commit() -- every frame.
877 // Apply this display's projection's viewport to the visible region
878 // before giving it to the HWC HAL.
879 const Transform& tr = hw->getTransform();
880 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport()));
881 layer.setVisibleRegionScreen(visible);
882 layer.setSurfaceDamage(surfaceDamageRegion);
883 mIsGlesComposition = (layer.getCompositionType() == HWC_FRAMEBUFFER);
Dan Stozaee44edd2015-03-23 15:50:23 -0700884
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000885 if (mSidebandStream.get()) {
886 layer.setSidebandStream(mSidebandStream);
887 } else {
888 // NOTE: buffer can be NULL if the client never drew into this
889 // layer yet, or if we ran out of memory
890 layer.setBuffer(mActiveBuffer);
891 }
892}
893#endif
894
895#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800896void Layer::updateCursorPosition(const sp<const DisplayDevice>& displayDevice) {
897 auto hwcId = displayDevice->getHwcDisplayId();
898 if (mHwcLayers.count(hwcId) == 0 ||
899 getCompositionType(hwcId) != HWC2::Composition::Cursor) {
900 return;
901 }
902
903 // This gives us only the "orientation" component of the transform
904 const State& s(getCurrentState());
905
906 // Apply the layer's transform, followed by the display's global transform
907 // Here we're guaranteed that the layer's transform preserves rects
908 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700909 if (!s.crop.isEmpty()) {
910 win.intersect(s.crop, &win);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800911 }
912 // Subtract the transparent region and snap to the bounds
913 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700914 Rect frame(getTransform().transform(bounds));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800915 frame.intersect(displayDevice->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700916 if (!s.finalCrop.isEmpty()) {
917 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000918 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800919 auto& displayTransform(displayDevice->getTransform());
920 auto position = displayTransform.transform(frame);
921
922 auto error = mHwcLayers[hwcId].layer->setCursorPosition(position.left,
923 position.top);
924 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set cursor position "
925 "to (%d, %d): %s (%d)", mName.string(), position.left,
926 position.top, to_string(error).c_str(),
927 static_cast<int32_t>(error));
928}
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000929#else
930void Layer::setAcquireFence(const sp<const DisplayDevice>& /* hw */,
931 HWComposer::HWCLayerInterface& layer) {
932 int fenceFd = -1;
933
934 // TODO: there is a possible optimization here: we only need to set the
935 // acquire fence the first time a new buffer is acquired on EACH display.
936
937 if (layer.getCompositionType() == HWC_OVERLAY || layer.getCompositionType() == HWC_CURSOR_OVERLAY) {
938 sp<Fence> fence = mSurfaceFlingerConsumer->getCurrentFence();
939 if (fence->isValid()) {
940 fenceFd = fence->dup();
941 if (fenceFd == -1) {
942 ALOGW("failed to dup layer fence, skipping sync: %d", errno);
943 }
944 }
945 }
946 layer.setAcquireFenceFd(fenceFd);
947}
948
949Rect Layer::getPosition(
950 const sp<const DisplayDevice>& hw)
951{
952 // this gives us only the "orientation" component of the transform
953 const State& s(getCurrentState());
954
955 // apply the layer's transform, followed by the display's global transform
956 // here we're guaranteed that the layer's transform preserves rects
957 Rect win(s.active.w, s.active.h);
958 if (!s.crop.isEmpty()) {
959 win.intersect(s.crop, &win);
960 }
961 // subtract the transparent region and snap to the bounds
962 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700963 Rect frame(getTransform().transform(bounds));
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000964 frame.intersect(hw->getViewport(), &frame);
965 if (!s.finalCrop.isEmpty()) {
966 frame.intersect(s.finalCrop, &frame);
967 }
968 const Transform& tr(hw->getTransform());
969 return Rect(tr.transform(frame));
970}
971#endif
Riley Andrews03414a12014-07-01 14:22:59 -0700972
Mathias Agopian13127d82013-03-05 17:47:11 -0800973// ---------------------------------------------------------------------------
974// drawing...
975// ---------------------------------------------------------------------------
976
977void Layer::draw(const sp<const DisplayDevice>& hw, const Region& clip) const {
Dan Stozac7014012014-02-14 15:03:43 -0800978 onDraw(hw, clip, false);
Mathias Agopian13127d82013-03-05 17:47:11 -0800979}
980
Dan Stozac7014012014-02-14 15:03:43 -0800981void Layer::draw(const sp<const DisplayDevice>& hw,
982 bool useIdentityTransform) const {
983 onDraw(hw, Region(hw->bounds()), useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -0800984}
985
Dan Stozac7014012014-02-14 15:03:43 -0800986void Layer::draw(const sp<const DisplayDevice>& hw) const {
987 onDraw(hw, Region(hw->bounds()), false);
988}
989
Robert Carrcae605c2017-03-29 12:10:31 -0700990static constexpr mat4 inverseOrientation(uint32_t transform) {
991 const mat4 flipH(-1,0,0,0, 0,1,0,0, 0,0,1,0, 1,0,0,1);
992 const mat4 flipV( 1,0,0,0, 0,-1,0,0, 0,0,1,0, 0,1,0,1);
993 const mat4 rot90( 0,1,0,0, -1,0,0,0, 0,0,1,0, 1,0,0,1);
994 mat4 tr;
995
996 if (transform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
997 tr = tr * rot90;
998 }
999 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_H) {
1000 tr = tr * flipH;
1001 }
1002 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_V) {
1003 tr = tr * flipV;
1004 }
1005 return inverse(tr);
1006}
1007
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001008/*
1009 * onDraw will draw the current layer onto the presentable buffer
1010 */
Dan Stozac7014012014-02-14 15:03:43 -08001011void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip,
1012 bool useIdentityTransform) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001013{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001014 ATRACE_CALL();
1015
Mathias Agopiana67932f2011-04-20 14:20:59 -07001016 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001017 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -07001018 // in fact never been drawn into. This happens frequently with
1019 // SurfaceView because the WindowManager can't know when the client
1020 // has drawn the first time.
1021
1022 // If there is nothing under us, we paint the screen in black, otherwise
1023 // we just skip this update.
1024
1025 // figure out if there is something below us
1026 Region under;
Robert Carr1f0a16a2016-10-24 16:27:39 -07001027 bool finished = false;
1028 mFlinger->mDrawingState.layersSortedByZ.traverseInZOrder([&](Layer* layer) {
1029 if (finished || layer == static_cast<Layer const*>(this)) {
1030 finished = true;
1031 return;
1032 }
Mathias Agopian42977342012-08-05 00:40:46 -07001033 under.orSelf( hw->getTransform().transform(layer->visibleRegion) );
Robert Carr1f0a16a2016-10-24 16:27:39 -07001034 });
Mathias Agopian179169e2010-05-06 20:21:45 -07001035 // if not everything below us is covered, we plug the holes!
1036 Region holes(clip.subtract(under));
1037 if (!holes.isEmpty()) {
Fabien Sanglard17487192016-12-07 13:03:32 -08001038 clearWithOpenGL(hw, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -07001039 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001040 return;
1041 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001042
Andy McFadden97eba892012-12-11 15:21:45 -08001043 // Bind the current buffer to the GL texture, and wait for it to be
1044 // ready for us to draw into.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001045 status_t err = mSurfaceFlingerConsumer->bindTextureImage();
1046 if (err != NO_ERROR) {
Andy McFadden97eba892012-12-11 15:21:45 -08001047 ALOGW("onDraw: bindTextureImage failed (err=%d)", err);
Jesse Halldc5b4852012-06-29 15:21:18 -07001048 // Go ahead and draw the buffer anyway; no matter what we do the screen
1049 // is probably going to have something visibly wrong.
1050 }
1051
Jamie Gennisdd3cb842012-10-19 18:19:11 -07001052 bool blackOutLayer = isProtected() || (isSecure() && !hw->isSecure());
1053
Mathias Agopian875d8e12013-06-07 15:35:48 -07001054 RenderEngine& engine(mFlinger->getRenderEngine());
1055
Jamie Gennisdd3cb842012-10-19 18:19:11 -07001056 if (!blackOutLayer) {
Jamie Genniscbb1a952012-05-08 17:05:52 -07001057 // TODO: we could be more subtle with isFixedSize()
Mathias Agopianeba8c682012-09-19 23:14:45 -07001058 const bool useFiltering = getFiltering() || needsFiltering(hw) || isFixedSize();
Jamie Genniscbb1a952012-05-08 17:05:52 -07001059
1060 // Query the texture matrix given our current filtering mode.
1061 float textureMatrix[16];
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001062 mSurfaceFlingerConsumer->setFilteringEnabled(useFiltering);
1063 mSurfaceFlingerConsumer->getTransformMatrix(textureMatrix);
Jamie Genniscbb1a952012-05-08 17:05:52 -07001064
Robert Carrcae605c2017-03-29 12:10:31 -07001065 if (getTransformToDisplayInverse()) {
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001066
1067 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -07001068 * the code below applies the primary display's inverse transform to
1069 * the texture transform
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001070 */
Pablo Ceballos021623b2016-04-15 17:31:51 -07001071 uint32_t transform =
1072 DisplayDevice::getPrimaryDisplayOrientationTransform();
Robert Carrcae605c2017-03-29 12:10:31 -07001073 mat4 tr = inverseOrientation(transform);
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001074
Robert Carrcae605c2017-03-29 12:10:31 -07001075 /**
1076 * TODO(b/36727915): This is basically a hack.
1077 *
1078 * Ensure that regardless of the parent transformation,
1079 * this buffer is always transformed from native display
1080 * orientation to display orientation. For example, in the case
1081 * of a camera where the buffer remains in native orientation,
1082 * we want the pixels to always be upright.
1083 */
1084 if (getParent() != nullptr) {
1085 const auto parentTransform = getParent()->getTransform();
1086 tr = tr * inverseOrientation(parentTransform.getOrientation());
1087 }
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001088
1089 // and finally apply it to the original texture matrix
1090 const mat4 texTransform(mat4(static_cast<const float*>(textureMatrix)) * tr);
1091 memcpy(textureMatrix, texTransform.asArray(), sizeof(textureMatrix));
1092 }
1093
Jamie Genniscbb1a952012-05-08 17:05:52 -07001094 // Set things up for texturing.
Mathias Agopian49457ac2013-08-14 18:20:17 -07001095 mTexture.setDimensions(mActiveBuffer->getWidth(), mActiveBuffer->getHeight());
1096 mTexture.setFiltering(useFiltering);
1097 mTexture.setMatrix(textureMatrix);
1098
1099 engine.setupLayerTexturing(mTexture);
Mathias Agopiana67932f2011-04-20 14:20:59 -07001100 } else {
Mathias Agopian875d8e12013-06-07 15:35:48 -07001101 engine.setupLayerBlackedOut();
Mathias Agopiana67932f2011-04-20 14:20:59 -07001102 }
Fabien Sanglard85789802016-12-07 13:08:24 -08001103 drawWithOpenGL(hw, useIdentityTransform);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001104 engine.disableTexturing();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001105}
1106
Mathias Agopian13127d82013-03-05 17:47:11 -08001107
Dan Stozac7014012014-02-14 15:03:43 -08001108void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw,
Fabien Sanglard17487192016-12-07 13:03:32 -08001109 float red, float green, float blue,
Dan Stozac7014012014-02-14 15:03:43 -08001110 float alpha) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001111{
Mathias Agopian19733a32013-08-28 18:13:56 -07001112 RenderEngine& engine(mFlinger->getRenderEngine());
Dan Stozac7014012014-02-14 15:03:43 -08001113 computeGeometry(hw, mMesh, false);
Mathias Agopian19733a32013-08-28 18:13:56 -07001114 engine.setupFillWithColor(red, green, blue, alpha);
1115 engine.drawMesh(mMesh);
Mathias Agopian13127d82013-03-05 17:47:11 -08001116}
1117
1118void Layer::clearWithOpenGL(
Fabien Sanglard17487192016-12-07 13:03:32 -08001119 const sp<const DisplayDevice>& hw) const {
1120 clearWithOpenGL(hw, 0,0,0,0);
Mathias Agopian13127d82013-03-05 17:47:11 -08001121}
1122
Dan Stozac7014012014-02-14 15:03:43 -08001123void Layer::drawWithOpenGL(const sp<const DisplayDevice>& hw,
Fabien Sanglard85789802016-12-07 13:08:24 -08001124 bool useIdentityTransform) const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001125 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08001126
Dan Stozac7014012014-02-14 15:03:43 -08001127 computeGeometry(hw, mMesh, useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -08001128
Mathias Agopian13127d82013-03-05 17:47:11 -08001129 /*
1130 * NOTE: the way we compute the texture coordinates here produces
1131 * different results than when we take the HWC path -- in the later case
1132 * the "source crop" is rounded to texel boundaries.
1133 * This can produce significantly different results when the texture
1134 * is scaled by a large amount.
1135 *
1136 * The GL code below is more logical (imho), and the difference with
1137 * HWC is due to a limitation of the HWC API to integers -- a question
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001138 * is suspend is whether we should ignore this problem or revert to
Mathias Agopian13127d82013-03-05 17:47:11 -08001139 * GL composition when a buffer scaling is applied (maybe with some
1140 * minimal value)? Or, we could make GL behave like HWC -- but this feel
1141 * like more of a hack.
1142 */
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001143 Rect win(computeBounds());
1144
Robert Carr1f0a16a2016-10-24 16:27:39 -07001145 Transform t = getTransform();
Robert Carrb5d3d262016-03-25 15:08:13 -07001146 if (!s.finalCrop.isEmpty()) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001147 win = t.transform(win);
Robert Carrb5d3d262016-03-25 15:08:13 -07001148 if (!win.intersect(s.finalCrop, &win)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001149 win.clear();
1150 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07001151 win = t.inverse().transform(win);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001152 if (!win.intersect(computeBounds(), &win)) {
1153 win.clear();
1154 }
1155 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001156
Mathias Agopian3f844832013-08-07 21:24:32 -07001157 float left = float(win.left) / float(s.active.w);
1158 float top = float(win.top) / float(s.active.h);
1159 float right = float(win.right) / float(s.active.w);
1160 float bottom = float(win.bottom) / float(s.active.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001161
Mathias Agopian875d8e12013-06-07 15:35:48 -07001162 // TODO: we probably want to generate the texture coords with the mesh
1163 // here we assume that we only have 4 vertices
Mathias Agopianff2ed702013-09-01 21:36:12 -07001164 Mesh::VertexArray<vec2> texCoords(mMesh.getTexCoordArray<vec2>());
1165 texCoords[0] = vec2(left, 1.0f - top);
1166 texCoords[1] = vec2(left, 1.0f - bottom);
1167 texCoords[2] = vec2(right, 1.0f - bottom);
1168 texCoords[3] = vec2(right, 1.0f - top);
Mathias Agopian13127d82013-03-05 17:47:11 -08001169
Mathias Agopian875d8e12013-06-07 15:35:48 -07001170 RenderEngine& engine(mFlinger->getRenderEngine());
Robert Carr6452f122017-03-21 10:41:29 -07001171 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), getAlpha());
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001172#ifdef USE_HWC2
1173 engine.setSourceDataSpace(mCurrentState.dataSpace);
1174#endif
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001175 engine.drawMesh(mMesh);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001176 engine.disableBlending();
Mathias Agopian13127d82013-03-05 17:47:11 -08001177}
1178
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001179#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08001180void Layer::setCompositionType(int32_t hwcId, HWC2::Composition type,
1181 bool callIntoHwc) {
1182 if (mHwcLayers.count(hwcId) == 0) {
1183 ALOGE("setCompositionType called without a valid HWC layer");
1184 return;
1185 }
1186 auto& hwcInfo = mHwcLayers[hwcId];
1187 auto& hwcLayer = hwcInfo.layer;
1188 ALOGV("setCompositionType(%" PRIx64 ", %s, %d)", hwcLayer->getId(),
1189 to_string(type).c_str(), static_cast<int>(callIntoHwc));
1190 if (hwcInfo.compositionType != type) {
1191 ALOGV(" actually setting");
1192 hwcInfo.compositionType = type;
1193 if (callIntoHwc) {
1194 auto error = hwcLayer->setCompositionType(type);
1195 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set "
1196 "composition type %s: %s (%d)", mName.string(),
1197 to_string(type).c_str(), to_string(error).c_str(),
1198 static_cast<int32_t>(error));
1199 }
1200 }
1201}
1202
1203HWC2::Composition Layer::getCompositionType(int32_t hwcId) const {
Dan Stozaec0f7172016-07-21 11:09:40 -07001204 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
1205 // If we're querying the composition type for a display that does not
1206 // have a HWC counterpart, then it will always be Client
1207 return HWC2::Composition::Client;
1208 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001209 if (mHwcLayers.count(hwcId) == 0) {
Dan Stozaec0f7172016-07-21 11:09:40 -07001210 ALOGE("getCompositionType called with an invalid HWC layer");
Dan Stoza9e56aa02015-11-02 13:00:03 -08001211 return HWC2::Composition::Invalid;
1212 }
1213 return mHwcLayers.at(hwcId).compositionType;
1214}
1215
1216void Layer::setClearClientTarget(int32_t hwcId, bool clear) {
1217 if (mHwcLayers.count(hwcId) == 0) {
1218 ALOGE("setClearClientTarget called without a valid HWC layer");
1219 return;
1220 }
1221 mHwcLayers[hwcId].clearClientTarget = clear;
1222}
1223
1224bool Layer::getClearClientTarget(int32_t hwcId) const {
1225 if (mHwcLayers.count(hwcId) == 0) {
1226 ALOGE("getClearClientTarget called without a valid HWC layer");
1227 return false;
1228 }
1229 return mHwcLayers.at(hwcId).clearClientTarget;
1230}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001231#endif
Dan Stoza9e56aa02015-11-02 13:00:03 -08001232
Ruben Brunk1681d952014-06-27 15:51:55 -07001233uint32_t Layer::getProducerStickyTransform() const {
1234 int producerStickyTransform = 0;
1235 int ret = mProducer->query(NATIVE_WINDOW_STICKY_TRANSFORM, &producerStickyTransform);
1236 if (ret != OK) {
1237 ALOGW("%s: Error %s (%d) while querying window sticky transform.", __FUNCTION__,
1238 strerror(-ret), ret);
1239 return 0;
1240 }
1241 return static_cast<uint32_t>(producerStickyTransform);
1242}
1243
Dan Stozac5da2712016-07-20 15:38:12 -07001244bool Layer::latchUnsignaledBuffers() {
1245 static bool propertyLoaded = false;
1246 static bool latch = false;
1247 static std::mutex mutex;
1248 std::lock_guard<std::mutex> lock(mutex);
1249 if (!propertyLoaded) {
1250 char value[PROPERTY_VALUE_MAX] = {};
1251 property_get("debug.sf.latch_unsignaled", value, "0");
1252 latch = atoi(value);
1253 propertyLoaded = true;
1254 }
1255 return latch;
1256}
1257
Dan Stozacac35382016-01-27 12:21:06 -08001258uint64_t Layer::getHeadFrameNumber() const {
1259 Mutex::Autolock lock(mQueueItemLock);
1260 if (!mQueueItems.empty()) {
1261 return mQueueItems[0].mFrameNumber;
1262 } else {
1263 return mCurrentFrameNumber;
1264 }
1265}
1266
Dan Stoza1ce65812016-06-15 16:26:27 -07001267bool Layer::headFenceHasSignaled() const {
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001268#ifdef USE_HWC2
Dan Stozac5da2712016-07-20 15:38:12 -07001269 if (latchUnsignaledBuffers()) {
1270 return true;
1271 }
1272
Dan Stoza1ce65812016-06-15 16:26:27 -07001273 Mutex::Autolock lock(mQueueItemLock);
1274 if (mQueueItems.empty()) {
1275 return true;
1276 }
1277 if (mQueueItems[0].mIsDroppable) {
1278 // Even though this buffer's fence may not have signaled yet, it could
1279 // be replaced by another buffer before it has a chance to, which means
1280 // that it's possible to get into a situation where a buffer is never
1281 // able to be latched. To avoid this, grab this buffer anyway.
1282 return true;
1283 }
1284 return mQueueItems[0].mFence->getSignalTime() != INT64_MAX;
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001285#else
1286 return true;
1287#endif
Dan Stoza1ce65812016-06-15 16:26:27 -07001288}
1289
Dan Stozacac35382016-01-27 12:21:06 -08001290bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
1291 if (point->getFrameNumber() <= mCurrentFrameNumber) {
1292 // Don't bother with a SyncPoint, since we've already latched the
1293 // relevant frame
1294 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -07001295 }
1296
Dan Stozacac35382016-01-27 12:21:06 -08001297 Mutex::Autolock lock(mLocalSyncPointMutex);
1298 mLocalSyncPoints.push_back(point);
1299 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -07001300}
1301
Mathias Agopian13127d82013-03-05 17:47:11 -08001302void Layer::setFiltering(bool filtering) {
1303 mFiltering = filtering;
1304}
1305
1306bool Layer::getFiltering() const {
1307 return mFiltering;
1308}
1309
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001310// As documented in libhardware header, formats in the range
1311// 0x100 - 0x1FF are specific to the HAL implementation, and
1312// are known to have no alpha channel
1313// TODO: move definition for device-specific range into
1314// hardware.h, instead of using hard-coded values here.
1315#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
1316
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001317bool Layer::getOpacityForFormat(uint32_t format) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001318 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
1319 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001320 }
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001321 switch (format) {
1322 case HAL_PIXEL_FORMAT_RGBA_8888:
1323 case HAL_PIXEL_FORMAT_BGRA_8888:
Romain Guyff415142016-12-13 16:51:25 -08001324 case HAL_PIXEL_FORMAT_RGBA_FP16:
Romain Guy541f2262017-02-10 18:50:17 -08001325 case HAL_PIXEL_FORMAT_RGBA_1010102:
Mathias Agopiandd533712013-07-26 15:31:39 -07001326 return false;
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001327 }
1328 // in all other case, we have no blending (also for unknown formats)
Mathias Agopiandd533712013-07-26 15:31:39 -07001329 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001330}
1331
Mathias Agopian13127d82013-03-05 17:47:11 -08001332// ----------------------------------------------------------------------------
1333// local state
1334// ----------------------------------------------------------------------------
1335
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001336static void boundPoint(vec2* point, const Rect& crop) {
1337 if (point->x < crop.left) {
1338 point->x = crop.left;
1339 }
1340 if (point->x > crop.right) {
1341 point->x = crop.right;
1342 }
1343 if (point->y < crop.top) {
1344 point->y = crop.top;
1345 }
1346 if (point->y > crop.bottom) {
1347 point->y = crop.bottom;
1348 }
1349}
1350
Dan Stozac7014012014-02-14 15:03:43 -08001351void Layer::computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh,
1352 bool useIdentityTransform) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001353{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001354 const Layer::State& s(getDrawingState());
Robert Carr1f0a16a2016-10-24 16:27:39 -07001355 const Transform hwTransform(hw->getTransform());
Mathias Agopian13127d82013-03-05 17:47:11 -08001356 const uint32_t hw_h = hw->getHeight();
Robert Carr1f0a16a2016-10-24 16:27:39 -07001357 Rect win = computeBounds();
Mathias Agopian3f844832013-08-07 21:24:32 -07001358
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001359 vec2 lt = vec2(win.left, win.top);
1360 vec2 lb = vec2(win.left, win.bottom);
1361 vec2 rb = vec2(win.right, win.bottom);
1362 vec2 rt = vec2(win.right, win.top);
1363
Robert Carr1f0a16a2016-10-24 16:27:39 -07001364 Transform layerTransform = getTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001365 if (!useIdentityTransform) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001366 lt = layerTransform.transform(lt);
1367 lb = layerTransform.transform(lb);
1368 rb = layerTransform.transform(rb);
1369 rt = layerTransform.transform(rt);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001370 }
1371
Robert Carrb5d3d262016-03-25 15:08:13 -07001372 if (!s.finalCrop.isEmpty()) {
1373 boundPoint(&lt, s.finalCrop);
1374 boundPoint(&lb, s.finalCrop);
1375 boundPoint(&rb, s.finalCrop);
1376 boundPoint(&rt, s.finalCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001377 }
1378
Mathias Agopianff2ed702013-09-01 21:36:12 -07001379 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>());
Robert Carr1f0a16a2016-10-24 16:27:39 -07001380 position[0] = hwTransform.transform(lt);
1381 position[1] = hwTransform.transform(lb);
1382 position[2] = hwTransform.transform(rb);
1383 position[3] = hwTransform.transform(rt);
Mathias Agopian3f844832013-08-07 21:24:32 -07001384 for (size_t i=0 ; i<4 ; i++) {
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001385 position[i].y = hw_h - position[i].y;
Mathias Agopian13127d82013-03-05 17:47:11 -08001386 }
1387}
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001388
Andy McFadden4125a4f2014-01-29 17:17:11 -08001389bool Layer::isOpaque(const Layer::State& s) const
Mathias Agopiana7f66922010-05-26 22:08:52 -07001390{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001391 // if we don't have a buffer yet, we're translucent regardless of the
1392 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001393 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001394 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001395 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001396
1397 // if the layer has the opaque flag, then we're always opaque,
1398 // otherwise we use the current buffer's format.
Andy McFadden4125a4f2014-01-29 17:17:11 -08001399 return ((s.flags & layer_state_t::eLayerOpaque) != 0) || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -07001400}
1401
Dan Stoza23116082015-06-18 14:58:39 -07001402bool Layer::isSecure() const
1403{
1404 const Layer::State& s(mDrawingState);
1405 return (s.flags & layer_state_t::eLayerSecure);
1406}
1407
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001408bool Layer::isProtected() const
1409{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001410 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001411 return (activeBuffer != 0) &&
1412 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
1413}
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001414
Mathias Agopian13127d82013-03-05 17:47:11 -08001415bool Layer::isFixedSize() const {
Robert Carrc3574f72016-03-24 12:19:32 -07001416 return getEffectiveScalingMode() != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian13127d82013-03-05 17:47:11 -08001417}
1418
1419bool Layer::isCropped() const {
1420 return !mCurrentCrop.isEmpty();
1421}
1422
1423bool Layer::needsFiltering(const sp<const DisplayDevice>& hw) const {
1424 return mNeedsFiltering || hw->needsFiltering();
1425}
1426
1427void Layer::setVisibleRegion(const Region& visibleRegion) {
1428 // always called from main thread
1429 this->visibleRegion = visibleRegion;
1430}
1431
1432void Layer::setCoveredRegion(const Region& coveredRegion) {
1433 // always called from main thread
1434 this->coveredRegion = coveredRegion;
1435}
1436
1437void Layer::setVisibleNonTransparentRegion(const Region&
1438 setVisibleNonTransparentRegion) {
1439 // always called from main thread
1440 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
1441}
1442
1443// ----------------------------------------------------------------------------
1444// transaction
1445// ----------------------------------------------------------------------------
1446
Dan Stoza7dde5992015-05-22 09:51:44 -07001447void Layer::pushPendingState() {
1448 if (!mCurrentState.modified) {
1449 return;
1450 }
1451
Dan Stoza7dde5992015-05-22 09:51:44 -07001452 // If this transaction is waiting on the receipt of a frame, generate a sync
1453 // point and send it to the remote layer.
Robert Carr0d480722017-01-10 16:42:54 -08001454 if (mCurrentState.barrierLayer != nullptr) {
1455 sp<Layer> barrierLayer = mCurrentState.barrierLayer.promote();
1456 if (barrierLayer == nullptr) {
1457 ALOGE("[%s] Unable to promote barrier Layer.", mName.string());
Dan Stoza7dde5992015-05-22 09:51:44 -07001458 // If we can't promote the layer we are intended to wait on,
1459 // then it is expired or otherwise invalid. Allow this transaction
1460 // to be applied as per normal (no synchronization).
Robert Carr0d480722017-01-10 16:42:54 -08001461 mCurrentState.barrierLayer = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -08001462 } else {
1463 auto syncPoint = std::make_shared<SyncPoint>(
1464 mCurrentState.frameNumber);
Robert Carr0d480722017-01-10 16:42:54 -08001465 if (barrierLayer->addSyncPoint(syncPoint)) {
Dan Stozacac35382016-01-27 12:21:06 -08001466 mRemoteSyncPoints.push_back(std::move(syncPoint));
1467 } else {
1468 // We already missed the frame we're supposed to synchronize
1469 // on, so go ahead and apply the state update
Robert Carr0d480722017-01-10 16:42:54 -08001470 mCurrentState.barrierLayer = nullptr;
Dan Stozacac35382016-01-27 12:21:06 -08001471 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001472 }
1473
Dan Stoza7dde5992015-05-22 09:51:44 -07001474 // Wake us up to check if the frame has been received
1475 setTransactionFlags(eTransactionNeeded);
Dan Stozaf5702ff2016-11-02 16:27:47 -07001476 mFlinger->setTransactionFlags(eTraversalNeeded);
Dan Stoza7dde5992015-05-22 09:51:44 -07001477 }
1478 mPendingStates.push_back(mCurrentState);
1479}
1480
Pablo Ceballos05289c22016-04-14 15:49:55 -07001481void Layer::popPendingState(State* stateToCommit) {
1482 auto oldFlags = stateToCommit->flags;
1483 *stateToCommit = mPendingStates[0];
1484 stateToCommit->flags = (oldFlags & ~stateToCommit->mask) |
1485 (stateToCommit->flags & stateToCommit->mask);
Dan Stoza7dde5992015-05-22 09:51:44 -07001486
1487 mPendingStates.removeAt(0);
1488}
1489
Pablo Ceballos05289c22016-04-14 15:49:55 -07001490bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001491 bool stateUpdateAvailable = false;
1492 while (!mPendingStates.empty()) {
Robert Carr0d480722017-01-10 16:42:54 -08001493 if (mPendingStates[0].barrierLayer != nullptr) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001494 if (mRemoteSyncPoints.empty()) {
1495 // If we don't have a sync point for this, apply it anyway. It
1496 // will be visually wrong, but it should keep us from getting
1497 // into too much trouble.
1498 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -07001499 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001500 stateUpdateAvailable = true;
1501 continue;
1502 }
1503
Dan Stozacac35382016-01-27 12:21:06 -08001504 if (mRemoteSyncPoints.front()->getFrameNumber() !=
1505 mPendingStates[0].frameNumber) {
1506 ALOGE("[%s] Unexpected sync point frame number found",
1507 mName.string());
1508
1509 // Signal our end of the sync point and then dispose of it
1510 mRemoteSyncPoints.front()->setTransactionApplied();
1511 mRemoteSyncPoints.pop_front();
1512 continue;
1513 }
1514
Dan Stoza7dde5992015-05-22 09:51:44 -07001515 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
1516 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -07001517 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001518 stateUpdateAvailable = true;
1519
1520 // Signal our end of the sync point and then dispose of it
1521 mRemoteSyncPoints.front()->setTransactionApplied();
1522 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -08001523 } else {
1524 break;
Dan Stoza7dde5992015-05-22 09:51:44 -07001525 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001526 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001527 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001528 stateUpdateAvailable = true;
1529 }
1530 }
1531
1532 // If we still have pending updates, wake SurfaceFlinger back up and point
1533 // it at this layer so we can process them
1534 if (!mPendingStates.empty()) {
1535 setTransactionFlags(eTransactionNeeded);
1536 mFlinger->setTransactionFlags(eTraversalNeeded);
1537 }
1538
1539 mCurrentState.modified = false;
1540 return stateUpdateAvailable;
1541}
1542
1543void Layer::notifyAvailableFrames() {
Dan Stozacac35382016-01-27 12:21:06 -08001544 auto headFrameNumber = getHeadFrameNumber();
Dan Stoza1ce65812016-06-15 16:26:27 -07001545 bool headFenceSignaled = headFenceHasSignaled();
Dan Stozacac35382016-01-27 12:21:06 -08001546 Mutex::Autolock lock(mLocalSyncPointMutex);
1547 for (auto& point : mLocalSyncPoints) {
Dan Stoza1ce65812016-06-15 16:26:27 -07001548 if (headFrameNumber >= point->getFrameNumber() && headFenceSignaled) {
Dan Stozacac35382016-01-27 12:21:06 -08001549 point->setFrameAvailable();
1550 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001551 }
1552}
1553
Mathias Agopian13127d82013-03-05 17:47:11 -08001554uint32_t Layer::doTransaction(uint32_t flags) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001555 ATRACE_CALL();
1556
Dan Stoza7dde5992015-05-22 09:51:44 -07001557 pushPendingState();
Pablo Ceballos05289c22016-04-14 15:49:55 -07001558 Layer::State c = getCurrentState();
1559 if (!applyPendingStates(&c)) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001560 return 0;
1561 }
1562
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001563 const Layer::State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001564
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001565 const bool sizeChanged = (c.requested.w != s.requested.w) ||
1566 (c.requested.h != s.requested.h);
Mathias Agopiana138f892010-05-21 17:24:35 -07001567
1568 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001569 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +00001570 ALOGD_IF(DEBUG_RESIZE,
Andy McFadden69052052012-09-14 16:10:11 -07001571 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001572 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001573 " requested={ wh={%4u,%4u} }}\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001574 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001575 " requested={ wh={%4u,%4u} }}\n",
Robert Carrc3574f72016-03-24 12:19:32 -07001576 this, getName().string(), mCurrentTransform,
1577 getEffectiveScalingMode(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001578 c.active.w, c.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001579 c.crop.left,
1580 c.crop.top,
1581 c.crop.right,
1582 c.crop.bottom,
1583 c.crop.getWidth(),
1584 c.crop.getHeight(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001585 c.requested.w, c.requested.h,
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001586 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001587 s.crop.left,
1588 s.crop.top,
1589 s.crop.right,
1590 s.crop.bottom,
1591 s.crop.getWidth(),
1592 s.crop.getHeight(),
1593 s.requested.w, s.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001594
Jamie Gennis2a0d5b62011-09-26 16:54:44 -07001595 // record the new size, form this point on, when the client request
1596 // a buffer, it'll get the new size.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001597 mSurfaceFlingerConsumer->setDefaultBufferSize(
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001598 c.requested.w, c.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001599 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001600
Robert Carr82364e32016-05-15 11:27:47 -07001601 const bool resizePending = (c.requested.w != c.active.w) ||
1602 (c.requested.h != c.active.h);
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001603 if (!isFixedSize()) {
Dan Stoza9e9b0442015-04-22 14:59:08 -07001604 if (resizePending && mSidebandStream == NULL) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001605 // don't let Layer::doTransaction update the drawing state
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001606 // if we have a pending resize, unless we are in fixed-size mode.
1607 // the drawing state will be updated only once we receive a buffer
1608 // with the correct size.
1609 //
1610 // in particular, we want to make sure the clip (which is part
1611 // of the geometry state) is latched together with the size but is
1612 // latched immediately when no resizing is involved.
Dan Stoza9e9b0442015-04-22 14:59:08 -07001613 //
1614 // If a sideband stream is attached, however, we want to skip this
1615 // optimization so that transactions aren't missed when a buffer
1616 // never arrives
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001617
1618 flags |= eDontUpdateGeometryState;
1619 }
1620 }
1621
Mathias Agopian13127d82013-03-05 17:47:11 -08001622 // always set active to requested, unless we're asked not to
1623 // this is used by Layer, which special cases resizes.
1624 if (flags & eDontUpdateGeometryState) {
1625 } else {
Pablo Ceballos7d052572016-06-02 17:46:05 -07001626 Layer::State& editCurrentState(getCurrentState());
Robert Carr82364e32016-05-15 11:27:47 -07001627 if (mFreezePositionUpdates) {
1628 float tx = c.active.transform.tx();
1629 float ty = c.active.transform.ty();
1630 c.active = c.requested;
1631 c.active.transform.set(tx, ty);
1632 editCurrentState.active = c.active;
1633 } else {
1634 editCurrentState.active = editCurrentState.requested;
1635 c.active = c.requested;
1636 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001637 }
1638
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001639 if (s.active != c.active) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001640 // invalidate and recompute the visible regions if needed
1641 flags |= Layer::eVisibleRegion;
1642 }
1643
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001644 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001645 // invalidate and recompute the visible regions if needed
1646 flags |= eVisibleRegion;
1647 this->contentDirty = true;
1648
1649 // we may use linear filtering, if the matrix scales us
Robert Carr3dcabfa2016-03-01 18:36:58 -08001650 const uint8_t type = c.active.transform.getType();
1651 mNeedsFiltering = (!c.active.transform.preserveRects() ||
Mathias Agopian13127d82013-03-05 17:47:11 -08001652 (type >= Transform::SCALE));
1653 }
1654
Dan Stozac8145172016-04-28 16:29:06 -07001655 // If the layer is hidden, signal and clear out all local sync points so
1656 // that transactions for layers depending on this layer's frames becoming
1657 // visible are not blocked
1658 if (c.flags & layer_state_t::eLayerHidden) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001659 clearSyncPoints();
Dan Stozac8145172016-04-28 16:29:06 -07001660 }
1661
Mathias Agopian13127d82013-03-05 17:47:11 -08001662 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -07001663 commitTransaction(c);
Mathias Agopian13127d82013-03-05 17:47:11 -08001664 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001665}
1666
Pablo Ceballos05289c22016-04-14 15:49:55 -07001667void Layer::commitTransaction(const State& stateToCommit) {
1668 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001669}
1670
Mathias Agopian13127d82013-03-05 17:47:11 -08001671uint32_t Layer::getTransactionFlags(uint32_t flags) {
1672 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1673}
1674
1675uint32_t Layer::setTransactionFlags(uint32_t flags) {
1676 return android_atomic_or(flags, &mTransactionFlags);
1677}
1678
Robert Carr82364e32016-05-15 11:27:47 -07001679bool Layer::setPosition(float x, float y, bool immediate) {
Robert Carr3dcabfa2016-03-01 18:36:58 -08001680 if (mCurrentState.requested.transform.tx() == x && mCurrentState.requested.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -08001681 return false;
1682 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -07001683
1684 // We update the requested and active position simultaneously because
1685 // we want to apply the position portion of the transform matrix immediately,
1686 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Robert Carr3dcabfa2016-03-01 18:36:58 -08001687 mCurrentState.requested.transform.set(x, y);
Robert Carr82364e32016-05-15 11:27:47 -07001688 if (immediate && !mFreezePositionUpdates) {
1689 mCurrentState.active.transform.set(x, y);
1690 }
1691 mFreezePositionUpdates = mFreezePositionUpdates || !immediate;
Robert Carr69663fb2016-03-27 19:59:19 -07001692
Dan Stoza7dde5992015-05-22 09:51:44 -07001693 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001694 setTransactionFlags(eTransactionNeeded);
1695 return true;
1696}
Robert Carr82364e32016-05-15 11:27:47 -07001697
Robert Carr1f0a16a2016-10-24 16:27:39 -07001698bool Layer::setChildLayer(const sp<Layer>& childLayer, int32_t z) {
1699 ssize_t idx = mCurrentChildren.indexOf(childLayer);
1700 if (idx < 0) {
1701 return false;
1702 }
1703 if (childLayer->setLayer(z)) {
1704 mCurrentChildren.removeAt(idx);
1705 mCurrentChildren.add(childLayer);
1706 }
1707 return true;
1708}
1709
Robert Carrae060832016-11-28 10:51:00 -08001710bool Layer::setLayer(int32_t z) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001711 if (mCurrentState.z == z)
1712 return false;
1713 mCurrentState.sequence++;
1714 mCurrentState.z = z;
Dan Stoza7dde5992015-05-22 09:51:44 -07001715 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001716 setTransactionFlags(eTransactionNeeded);
1717 return true;
1718}
Robert Carr1f0a16a2016-10-24 16:27:39 -07001719
Mathias Agopian13127d82013-03-05 17:47:11 -08001720bool Layer::setSize(uint32_t w, uint32_t h) {
1721 if (mCurrentState.requested.w == w && mCurrentState.requested.h == h)
1722 return false;
1723 mCurrentState.requested.w = w;
1724 mCurrentState.requested.h = h;
Dan Stoza7dde5992015-05-22 09:51:44 -07001725 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001726 setTransactionFlags(eTransactionNeeded);
1727 return true;
1728}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001729#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08001730bool Layer::setAlpha(float alpha) {
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001731#else
1732bool Layer::setAlpha(uint8_t alpha) {
1733#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08001734 if (mCurrentState.alpha == alpha)
1735 return false;
1736 mCurrentState.sequence++;
1737 mCurrentState.alpha = alpha;
Dan Stoza7dde5992015-05-22 09:51:44 -07001738 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001739 setTransactionFlags(eTransactionNeeded);
1740 return true;
1741}
1742bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix) {
1743 mCurrentState.sequence++;
Robert Carr3dcabfa2016-03-01 18:36:58 -08001744 mCurrentState.requested.transform.set(
Robert Carrcb6e1e32017-02-21 19:48:26 -08001745 matrix.dsdx, matrix.dtdy, matrix.dtdx, matrix.dsdy);
Dan Stoza7dde5992015-05-22 09:51:44 -07001746 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001747 setTransactionFlags(eTransactionNeeded);
1748 return true;
1749}
1750bool Layer::setTransparentRegionHint(const Region& transparent) {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001751 mCurrentState.requestedTransparentRegion = transparent;
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}
1756bool Layer::setFlags(uint8_t flags, uint8_t mask) {
1757 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1758 if (mCurrentState.flags == newFlags)
1759 return false;
1760 mCurrentState.sequence++;
1761 mCurrentState.flags = newFlags;
Dan Stoza7dde5992015-05-22 09:51:44 -07001762 mCurrentState.mask = mask;
1763 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001764 setTransactionFlags(eTransactionNeeded);
1765 return true;
1766}
Robert Carr99e27f02016-06-16 15:18:02 -07001767
1768bool Layer::setCrop(const Rect& crop, bool immediate) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001769 if (mCurrentState.crop == crop)
Mathias Agopian13127d82013-03-05 17:47:11 -08001770 return false;
1771 mCurrentState.sequence++;
Robert Carr99e27f02016-06-16 15:18:02 -07001772 mCurrentState.requestedCrop = crop;
1773 if (immediate) {
1774 mCurrentState.crop = crop;
1775 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001776 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001777 setTransactionFlags(eTransactionNeeded);
1778 return true;
1779}
Robert Carr8d5227b2017-03-16 15:41:03 -07001780
1781bool Layer::setFinalCrop(const Rect& crop, bool immediate) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001782 if (mCurrentState.finalCrop == crop)
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001783 return false;
1784 mCurrentState.sequence++;
Robert Carr8d5227b2017-03-16 15:41:03 -07001785 mCurrentState.requestedFinalCrop = crop;
1786 if (immediate) {
1787 mCurrentState.finalCrop = crop;
1788 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001789 mCurrentState.modified = true;
1790 setTransactionFlags(eTransactionNeeded);
1791 return true;
1792}
Mathias Agopian13127d82013-03-05 17:47:11 -08001793
Robert Carrc3574f72016-03-24 12:19:32 -07001794bool Layer::setOverrideScalingMode(int32_t scalingMode) {
1795 if (scalingMode == mOverrideScalingMode)
1796 return false;
1797 mOverrideScalingMode = scalingMode;
Robert Carr82364e32016-05-15 11:27:47 -07001798 setTransactionFlags(eTransactionNeeded);
Robert Carrc3574f72016-03-24 12:19:32 -07001799 return true;
1800}
1801
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -05001802void Layer::setInfo(uint32_t type, uint32_t appId) {
1803 mCurrentState.appId = appId;
1804 mCurrentState.type = type;
1805 mCurrentState.modified = true;
1806 setTransactionFlags(eTransactionNeeded);
1807}
1808
Robert Carrc3574f72016-03-24 12:19:32 -07001809uint32_t Layer::getEffectiveScalingMode() const {
1810 if (mOverrideScalingMode >= 0) {
1811 return mOverrideScalingMode;
1812 }
1813 return mCurrentScalingMode;
1814}
1815
Mathias Agopian13127d82013-03-05 17:47:11 -08001816bool Layer::setLayerStack(uint32_t layerStack) {
1817 if (mCurrentState.layerStack == layerStack)
1818 return false;
1819 mCurrentState.sequence++;
1820 mCurrentState.layerStack = layerStack;
Dan Stoza7dde5992015-05-22 09:51:44 -07001821 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001822 setTransactionFlags(eTransactionNeeded);
1823 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001824}
1825
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -07001826bool Layer::setDataSpace(android_dataspace dataSpace) {
1827 if (mCurrentState.dataSpace == dataSpace)
1828 return false;
1829 mCurrentState.sequence++;
1830 mCurrentState.dataSpace = dataSpace;
1831 mCurrentState.modified = true;
1832 setTransactionFlags(eTransactionNeeded);
1833 return true;
1834}
1835
Robert Carr1f0a16a2016-10-24 16:27:39 -07001836uint32_t Layer::getLayerStack() const {
1837 auto p = getParent();
1838 if (p == nullptr) {
1839 return getDrawingState().layerStack;
1840 }
1841 return p->getLayerStack();
1842}
1843
Robert Carr0d480722017-01-10 16:42:54 -08001844void Layer::deferTransactionUntil(const sp<Layer>& barrierLayer,
Dan Stoza7dde5992015-05-22 09:51:44 -07001845 uint64_t frameNumber) {
Robert Carr0d480722017-01-10 16:42:54 -08001846 mCurrentState.barrierLayer = barrierLayer;
Dan Stoza7dde5992015-05-22 09:51:44 -07001847 mCurrentState.frameNumber = frameNumber;
1848 // We don't set eTransactionNeeded, because just receiving a deferral
1849 // request without any other state updates shouldn't actually induce a delay
1850 mCurrentState.modified = true;
1851 pushPendingState();
Robert Carr0d480722017-01-10 16:42:54 -08001852 mCurrentState.barrierLayer = nullptr;
Dan Stoza792e5292016-02-11 11:43:58 -08001853 mCurrentState.frameNumber = 0;
Dan Stoza7dde5992015-05-22 09:51:44 -07001854 mCurrentState.modified = false;
Robert Carr0d480722017-01-10 16:42:54 -08001855 ALOGE("Deferred transaction");
1856}
1857
1858void Layer::deferTransactionUntil(const sp<IBinder>& barrierHandle,
1859 uint64_t frameNumber) {
1860 sp<Handle> handle = static_cast<Handle*>(barrierHandle.get());
1861 deferTransactionUntil(handle->owner.promote(), frameNumber);
Dan Stoza7dde5992015-05-22 09:51:44 -07001862}
1863
Dan Stozaee44edd2015-03-23 15:50:23 -07001864void Layer::useSurfaceDamage() {
1865 if (mFlinger->mForceFullDamage) {
1866 surfaceDamageRegion = Region::INVALID_REGION;
1867 } else {
1868 surfaceDamageRegion = mSurfaceFlingerConsumer->getSurfaceDamage();
1869 }
1870}
1871
1872void Layer::useEmptyDamage() {
1873 surfaceDamageRegion.clear();
1874}
1875
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001876// ----------------------------------------------------------------------------
1877// pageflip handling...
1878// ----------------------------------------------------------------------------
1879
Dan Stoza6b9454d2014-11-07 16:00:59 -08001880bool Layer::shouldPresentNow(const DispSync& dispSync) const {
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001881 if (mSidebandStreamChanged || mAutoRefresh) {
Dan Stozad87defa2015-07-29 16:15:50 -07001882 return true;
1883 }
1884
Dan Stoza6b9454d2014-11-07 16:00:59 -08001885 Mutex::Autolock lock(mQueueItemLock);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001886 if (mQueueItems.empty()) {
1887 return false;
1888 }
1889 auto timestamp = mQueueItems[0].mTimestamp;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001890 nsecs_t expectedPresent =
1891 mSurfaceFlingerConsumer->computeExpectedPresent(dispSync);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001892
1893 // Ignore timestamps more than a second in the future
1894 bool isPlausible = timestamp < (expectedPresent + s2ns(1));
1895 ALOGW_IF(!isPlausible, "[%s] Timestamp %" PRId64 " seems implausible "
1896 "relative to expectedPresent %" PRId64, mName.string(), timestamp,
1897 expectedPresent);
1898
1899 bool isDue = timestamp < expectedPresent;
1900 return isDue || !isPlausible;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001901}
1902
Brian Andersond6927fb2016-07-23 23:37:30 -07001903bool Layer::onPreComposition(nsecs_t refreshStartTime) {
1904 if (mBufferLatched) {
1905 Mutex::Autolock lock(mFrameEventHistoryMutex);
1906 mFrameEventHistory.addPreComposition(mCurrentFrameNumber, refreshStartTime);
1907 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001908 mRefreshPending = false;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001909 return mQueuedFrames > 0 || mSidebandStreamChanged || mAutoRefresh;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001910}
1911
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001912bool Layer::onPostComposition(const std::shared_ptr<FenceTime>& glDoneFence,
Brian Anderson3d4039d2016-09-23 16:31:30 -07001913 const std::shared_ptr<FenceTime>& presentFence,
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001914 const CompositorTiming& compositorTiming) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001915 mAcquireTimeline.updateSignalTimes();
1916 mReleaseTimeline.updateSignalTimes();
1917
Brian Andersond6927fb2016-07-23 23:37:30 -07001918 // mFrameLatencyNeeded is true when a new frame was latched for the
1919 // composition.
Fabien Sanglard28e98082016-12-05 10:19:46 -08001920 if (!mFrameLatencyNeeded)
1921 return false;
1922
Fabien Sanglard28e98082016-12-05 10:19:46 -08001923 // Update mFrameEventHistory.
1924 {
1925 Mutex::Autolock lock(mFrameEventHistoryMutex);
1926 mFrameEventHistory.addPostComposition(mCurrentFrameNumber,
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001927 glDoneFence, presentFence, compositorTiming);
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001928 }
Fabien Sanglard28e98082016-12-05 10:19:46 -08001929
1930 // Update mFrameTracker.
1931 nsecs_t desiredPresentTime = mSurfaceFlingerConsumer->getTimestamp();
1932 mFrameTracker.setDesiredPresentTime(desiredPresentTime);
1933
Brian Anderson3d4039d2016-09-23 16:31:30 -07001934 std::shared_ptr<FenceTime> frameReadyFence =
1935 mSurfaceFlingerConsumer->getCurrentFenceTime();
Fabien Sanglard28e98082016-12-05 10:19:46 -08001936 if (frameReadyFence->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001937 mFrameTracker.setFrameReadyFence(std::move(frameReadyFence));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001938 } else {
1939 // There was no fence for this frame, so assume that it was ready
1940 // to be presented at the desired present time.
1941 mFrameTracker.setFrameReadyTime(desiredPresentTime);
1942 }
1943
Brian Anderson3d4039d2016-09-23 16:31:30 -07001944 if (presentFence->isValid()) {
1945 mFrameTracker.setActualPresentFence(
1946 std::shared_ptr<FenceTime>(presentFence));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001947 } else {
1948 // The HWC doesn't support present fences, so use the refresh
1949 // timestamp instead.
Brian Anderson3d4039d2016-09-23 16:31:30 -07001950 mFrameTracker.setActualPresentTime(
1951 mFlinger->getHwComposer().getRefreshTimestamp(
1952 HWC_DISPLAY_PRIMARY));
Fabien Sanglard28e98082016-12-05 10:19:46 -08001953 }
1954
1955 mFrameTracker.advanceFrame();
1956 mFrameLatencyNeeded = false;
1957 return true;
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001958}
1959
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001960#ifdef USE_HWC2
Brian Andersonf6386862016-10-31 16:34:13 -07001961void Layer::releasePendingBuffer(nsecs_t dequeueReadyTime) {
Brian Anderson5ea5e592016-12-01 16:54:33 -08001962 if (!mSurfaceFlingerConsumer->releasePendingBuffer()) {
1963 return;
1964 }
1965
Brian Anderson3d4039d2016-09-23 16:31:30 -07001966 auto releaseFenceTime = std::make_shared<FenceTime>(
Brian Andersond6927fb2016-07-23 23:37:30 -07001967 mSurfaceFlingerConsumer->getPrevFinalReleaseFence());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001968 mReleaseTimeline.push(releaseFenceTime);
1969
1970 Mutex::Autolock lock(mFrameEventHistoryMutex);
Brian Anderson8cc8b102016-10-21 12:43:09 -07001971 if (mPreviousFrameNumber != 0) {
1972 mFrameEventHistory.addRelease(mPreviousFrameNumber,
1973 dequeueReadyTime, std::move(releaseFenceTime));
1974 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001975}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001976#endif
Dan Stoza9e56aa02015-11-02 13:00:03 -08001977
Robert Carr1f0a16a2016-10-24 16:27:39 -07001978bool Layer::isHiddenByPolicy() const {
1979 const Layer::State& s(mDrawingState);
1980 const auto& parent = getParent();
1981 if (parent != nullptr && parent->isHiddenByPolicy()) {
1982 return true;
1983 }
1984 return s.flags & layer_state_t::eLayerHidden;
1985}
1986
Mathias Agopianda27af92012-09-13 18:17:13 -07001987bool Layer::isVisible() const {
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001988#ifdef USE_HWC2
Robert Carr6452f122017-03-21 10:41:29 -07001989 return !(isHiddenByPolicy()) && getAlpha() > 0.0f
Dan Stoza9e56aa02015-11-02 13:00:03 -08001990 && (mActiveBuffer != NULL || mSidebandStream != NULL);
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001991#else
Robert Carr6452f122017-03-21 10:41:29 -07001992 return !(isHiddenByPolicy()) && getAlpha()
Fabien Sanglard9d96de42016-10-11 00:15:18 +00001993 && (mActiveBuffer != NULL || mSidebandStream != NULL);
1994#endif
Mathias Agopianda27af92012-09-13 18:17:13 -07001995}
1996
Fabien Sanglardcd6fd542016-10-13 12:47:39 -07001997bool Layer::allTransactionsSignaled() {
1998 auto headFrameNumber = getHeadFrameNumber();
1999 bool matchingFramesFound = false;
2000 bool allTransactionsApplied = true;
2001 Mutex::Autolock lock(mLocalSyncPointMutex);
2002
2003 for (auto& point : mLocalSyncPoints) {
2004 if (point->getFrameNumber() > headFrameNumber) {
2005 break;
2006 }
2007 matchingFramesFound = true;
2008
2009 if (!point->frameIsAvailable()) {
2010 // We haven't notified the remote layer that the frame for
2011 // this point is available yet. Notify it now, and then
2012 // abort this attempt to latch.
2013 point->setFrameAvailable();
2014 allTransactionsApplied = false;
2015 break;
2016 }
2017
2018 allTransactionsApplied = allTransactionsApplied && point->transactionIsApplied();
2019 }
2020 return !matchingFramesFound || allTransactionsApplied;
2021}
2022
Brian Andersond6927fb2016-07-23 23:37:30 -07002023Region Layer::latchBuffer(bool& recomputeVisibleRegions, nsecs_t latchTime)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002024{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08002025 ATRACE_CALL();
2026
Jesse Hall399184a2014-03-03 15:42:54 -08002027 if (android_atomic_acquire_cas(true, false, &mSidebandStreamChanged) == 0) {
2028 // mSidebandStreamChanged was true
2029 mSidebandStream = mSurfaceFlingerConsumer->getSidebandStream();
Dan Stoza12e0a272015-05-05 14:00:52 -07002030 if (mSidebandStream != NULL) {
2031 setTransactionFlags(eTransactionNeeded);
2032 mFlinger->setTransactionFlags(eTraversalNeeded);
2033 }
Jesse Hall5bf786d2014-09-30 10:35:11 -07002034 recomputeVisibleRegions = true;
2035
2036 const State& s(getDrawingState());
Robert Carr1f0a16a2016-10-24 16:27:39 -07002037 return getTransform().transform(Region(Rect(s.active.w, s.active.h)));
Jesse Hall399184a2014-03-03 15:42:54 -08002038 }
2039
Mathias Agopian4fec8732012-06-29 14:12:52 -07002040 Region outDirtyRegion;
Fabien Sanglard223eb912016-10-13 10:15:06 -07002041 if (mQueuedFrames <= 0 && !mAutoRefresh) {
2042 return outDirtyRegion;
2043 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002044
Fabien Sanglard223eb912016-10-13 10:15:06 -07002045 // if we've already called updateTexImage() without going through
2046 // a composition step, we have to skip this layer at this point
2047 // because we cannot call updateTeximage() without a corresponding
2048 // compositionComplete() call.
2049 // we'll trigger an update in onPreComposition().
2050 if (mRefreshPending) {
2051 return outDirtyRegion;
2052 }
2053
2054 // If the head buffer's acquire fence hasn't signaled yet, return and
2055 // try again later
2056 if (!headFenceHasSignaled()) {
2057 mFlinger->signalLayerUpdate();
2058 return outDirtyRegion;
2059 }
2060
2061 // Capture the old state of the layer for comparisons later
2062 const State& s(getDrawingState());
2063 const bool oldOpacity = isOpaque(s);
2064 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
2065
Fabien Sanglardcd6fd542016-10-13 12:47:39 -07002066 if (!allTransactionsSignaled()) {
Fabien Sanglard223eb912016-10-13 10:15:06 -07002067 mFlinger->signalLayerUpdate();
2068 return outDirtyRegion;
2069 }
2070
2071 // This boolean is used to make sure that SurfaceFlinger's shadow copy
2072 // of the buffer queue isn't modified when the buffer queue is returning
2073 // BufferItem's that weren't actually queued. This can happen in shared
2074 // buffer mode.
2075 bool queuedBuffer = false;
Fabien Sanglard7b1563a2016-10-13 12:05:28 -07002076 LayerRejecter r(mDrawingState, getCurrentState(), recomputeVisibleRegions,
2077 getProducerStickyTransform() != 0, mName.string(),
2078 mOverrideScalingMode, mFreezePositionUpdates);
Fabien Sanglard223eb912016-10-13 10:15:06 -07002079 status_t updateResult = mSurfaceFlingerConsumer->updateTexImage(&r,
2080 mFlinger->mPrimaryDispSync, &mAutoRefresh, &queuedBuffer,
2081 mLastFrameNumberReceived);
2082 if (updateResult == BufferQueue::PRESENT_LATER) {
2083 // Producer doesn't want buffer to be displayed yet. Signal a
2084 // layer update so we check again at the next opportunity.
2085 mFlinger->signalLayerUpdate();
2086 return outDirtyRegion;
2087 } else if (updateResult == SurfaceFlingerConsumer::BUFFER_REJECTED) {
2088 // If the buffer has been rejected, remove it from the shadow queue
2089 // and return early
2090 if (queuedBuffer) {
2091 Mutex::Autolock lock(mQueueItemLock);
2092 mQueueItems.removeAt(0);
2093 android_atomic_dec(&mQueuedFrames);
2094 }
2095 return outDirtyRegion;
2096 } else if (updateResult != NO_ERROR || mUpdateTexImageFailed) {
2097 // This can occur if something goes wrong when trying to create the
2098 // EGLImage for this buffer. If this happens, the buffer has already
2099 // been released, so we need to clean up the queue and bug out
2100 // early.
2101 if (queuedBuffer) {
2102 Mutex::Autolock lock(mQueueItemLock);
2103 mQueueItems.clear();
2104 android_atomic_and(0, &mQueuedFrames);
Mathias Agopian702634a2012-05-23 17:50:31 -07002105 }
2106
Fabien Sanglard223eb912016-10-13 10:15:06 -07002107 // Once we have hit this state, the shadow queue may no longer
2108 // correctly reflect the incoming BufferQueue's contents, so even if
2109 // updateTexImage starts working, the only safe course of action is
2110 // to continue to ignore updates.
2111 mUpdateTexImageFailed = true;
2112
2113 return outDirtyRegion;
2114 }
2115
2116 if (queuedBuffer) {
2117 // Autolock scope
2118 auto currentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2119
2120 Mutex::Autolock lock(mQueueItemLock);
2121
2122 // Remove any stale buffers that have been dropped during
2123 // updateTexImage
2124 while (mQueueItems[0].mFrameNumber != currentFrameNumber) {
2125 mQueueItems.removeAt(0);
2126 android_atomic_dec(&mQueuedFrames);
2127 }
2128
2129 mQueueItems.removeAt(0);
2130 }
2131
2132
2133 // Decrement the queued-frames count. Signal another event if we
2134 // have more frames pending.
2135 if ((queuedBuffer && android_atomic_dec(&mQueuedFrames) > 1)
2136 || mAutoRefresh) {
2137 mFlinger->signalLayerUpdate();
2138 }
2139
Fabien Sanglard223eb912016-10-13 10:15:06 -07002140 // update the active buffer
Chia-I Wu06d63de2017-01-04 14:58:51 +08002141 mActiveBuffer = mSurfaceFlingerConsumer->getCurrentBuffer(
2142 &mActiveBufferSlot);
Fabien Sanglard223eb912016-10-13 10:15:06 -07002143 if (mActiveBuffer == NULL) {
2144 // this can only happen if the very first buffer was rejected.
2145 return outDirtyRegion;
2146 }
2147
Brian Andersond6927fb2016-07-23 23:37:30 -07002148 mBufferLatched = true;
2149 mPreviousFrameNumber = mCurrentFrameNumber;
2150 mCurrentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2151
2152 {
2153 Mutex::Autolock lock(mFrameEventHistoryMutex);
2154 mFrameEventHistory.addLatch(mCurrentFrameNumber, latchTime);
2155#ifndef USE_HWC2
Brian Anderson3d4039d2016-09-23 16:31:30 -07002156 auto releaseFenceTime = std::make_shared<FenceTime>(
Brian Andersond6927fb2016-07-23 23:37:30 -07002157 mSurfaceFlingerConsumer->getPrevFinalReleaseFence());
Brian Anderson3d4039d2016-09-23 16:31:30 -07002158 mReleaseTimeline.push(releaseFenceTime);
Brian Anderson8cc8b102016-10-21 12:43:09 -07002159 if (mPreviousFrameNumber != 0) {
2160 mFrameEventHistory.addRelease(mPreviousFrameNumber,
2161 latchTime, std::move(releaseFenceTime));
2162 }
Brian Andersond6927fb2016-07-23 23:37:30 -07002163#endif
2164 }
2165
Fabien Sanglard223eb912016-10-13 10:15:06 -07002166 mRefreshPending = true;
2167 mFrameLatencyNeeded = true;
2168 if (oldActiveBuffer == NULL) {
2169 // the first time we receive a buffer, we need to trigger a
2170 // geometry invalidation.
2171 recomputeVisibleRegions = true;
2172 }
2173
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -07002174 setDataSpace(mSurfaceFlingerConsumer->getCurrentDataSpace());
2175
Fabien Sanglard223eb912016-10-13 10:15:06 -07002176 Rect crop(mSurfaceFlingerConsumer->getCurrentCrop());
2177 const uint32_t transform(mSurfaceFlingerConsumer->getCurrentTransform());
2178 const uint32_t scalingMode(mSurfaceFlingerConsumer->getCurrentScalingMode());
2179 if ((crop != mCurrentCrop) ||
2180 (transform != mCurrentTransform) ||
2181 (scalingMode != mCurrentScalingMode))
2182 {
2183 mCurrentCrop = crop;
2184 mCurrentTransform = transform;
2185 mCurrentScalingMode = scalingMode;
2186 recomputeVisibleRegions = true;
2187 }
2188
2189 if (oldActiveBuffer != NULL) {
2190 uint32_t bufWidth = mActiveBuffer->getWidth();
2191 uint32_t bufHeight = mActiveBuffer->getHeight();
2192 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
2193 bufHeight != uint32_t(oldActiveBuffer->height)) {
Mathias Agopian702634a2012-05-23 17:50:31 -07002194 recomputeVisibleRegions = true;
2195 }
Fabien Sanglard223eb912016-10-13 10:15:06 -07002196 }
Mathias Agopian702634a2012-05-23 17:50:31 -07002197
Fabien Sanglard223eb912016-10-13 10:15:06 -07002198 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
2199 if (oldOpacity != isOpaque(s)) {
2200 recomputeVisibleRegions = true;
2201 }
Dan Stozacac35382016-01-27 12:21:06 -08002202
Fabien Sanglard223eb912016-10-13 10:15:06 -07002203 // Remove any sync points corresponding to the buffer which was just
2204 // latched
2205 {
2206 Mutex::Autolock lock(mLocalSyncPointMutex);
2207 auto point = mLocalSyncPoints.begin();
2208 while (point != mLocalSyncPoints.end()) {
2209 if (!(*point)->frameIsAvailable() ||
2210 !(*point)->transactionIsApplied()) {
2211 // This sync point must have been added since we started
2212 // latching. Don't drop it yet.
2213 ++point;
2214 continue;
2215 }
2216
2217 if ((*point)->getFrameNumber() <= mCurrentFrameNumber) {
2218 point = mLocalSyncPoints.erase(point);
2219 } else {
2220 ++point;
Dan Stozacac35382016-01-27 12:21:06 -08002221 }
2222 }
Mathias Agopiancaa600c2009-09-16 18:27:24 -07002223 }
Fabien Sanglard223eb912016-10-13 10:15:06 -07002224
2225 // FIXME: postedRegion should be dirty & bounds
2226 Region dirtyRegion(Rect(s.active.w, s.active.h));
2227
2228 // transform the dirty region to window-manager space
Robert Carr1f0a16a2016-10-24 16:27:39 -07002229 outDirtyRegion = (getTransform().transform(dirtyRegion));
Fabien Sanglard223eb912016-10-13 10:15:06 -07002230
Mathias Agopian4fec8732012-06-29 14:12:52 -07002231 return outDirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002232}
2233
Mathias Agopiana67932f2011-04-20 14:20:59 -07002234uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002235{
Mathias Agopiana67932f2011-04-20 14:20:59 -07002236 // TODO: should we do something special if mSecure is set?
2237 if (mProtectedByApp) {
2238 // need a hardware-protected path to external video sink
2239 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07002240 }
Riley Andrews03414a12014-07-01 14:22:59 -07002241 if (mPotentialCursor) {
2242 usage |= GraphicBuffer::USAGE_CURSOR;
2243 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07002244 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07002245 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07002246}
2247
Mathias Agopian84300952012-11-21 16:02:13 -08002248void Layer::updateTransformHint(const sp<const DisplayDevice>& hw) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07002249 uint32_t orientation = 0;
2250 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08002251 // The transform hint is used to improve performance, but we can
2252 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07002253 // apply to all displays.
Mathias Agopian42977342012-08-05 00:40:46 -07002254 const Transform& planeTransform(hw->getTransform());
Mathias Agopian4fec8732012-06-29 14:12:52 -07002255 orientation = planeTransform.getOrientation();
Mathias Agopiana4583642011-08-23 18:03:18 -07002256 if (orientation & Transform::ROT_INVALID) {
2257 orientation = 0;
2258 }
2259 }
Andy McFaddenbf974ab2012-12-04 16:51:15 -08002260 mSurfaceFlingerConsumer->setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07002261}
2262
Mathias Agopian13127d82013-03-05 17:47:11 -08002263// ----------------------------------------------------------------------------
2264// debugging
2265// ----------------------------------------------------------------------------
2266
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002267void Layer::dump(String8& result, Colorizer& colorizer) const
Mathias Agopian13127d82013-03-05 17:47:11 -08002268{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002269 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08002270
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002271 colorizer.colorize(result, Colorizer::GREEN);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002272 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002273 "+ %s %p (%s)\n",
2274 getTypeId(), this, getName().string());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002275 colorizer.reset(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002276
Mathias Agopian2ca79392013-04-02 18:30:32 -07002277 s.activeTransparentRegion.dump(result, "transparentRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002278 visibleRegion.dump(result, "visibleRegion");
Dan Stozaee44edd2015-03-23 15:50:23 -07002279 surfaceDamageRegion.dump(result, "surfaceDamageRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002280 sp<Client> client(mClientRef.promote());
2281
Mathias Agopian74d211a2013-04-22 16:55:35 +02002282 result.appendFormat( " "
Pablo Ceballosacbe6782016-03-04 17:54:21 +00002283 "layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), "
2284 "crop=(%4d,%4d,%4d,%4d), finalCrop=(%4d,%4d,%4d,%4d), "
Mathias Agopian13127d82013-03-05 17:47:11 -08002285 "isOpaque=%1d, invalidate=%1d, "
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002286#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -08002287 "alpha=%.3f, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002288#else
2289 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
2290#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08002291 " client=%p\n",
Robert Carr1f0a16a2016-10-24 16:27:39 -07002292 getLayerStack(), s.z,
2293 s.active.transform.tx(), s.active.transform.ty(),
2294 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07002295 s.crop.left, s.crop.top,
2296 s.crop.right, s.crop.bottom,
2297 s.finalCrop.left, s.finalCrop.top,
2298 s.finalCrop.right, s.finalCrop.bottom,
Andy McFadden4125a4f2014-01-29 17:17:11 -08002299 isOpaque(s), contentDirty,
Mathias Agopian13127d82013-03-05 17:47:11 -08002300 s.alpha, s.flags,
Robert Carr3dcabfa2016-03-01 18:36:58 -08002301 s.active.transform[0][0], s.active.transform[0][1],
2302 s.active.transform[1][0], s.active.transform[1][1],
Mathias Agopian13127d82013-03-05 17:47:11 -08002303 client.get());
Mathias Agopian13127d82013-03-05 17:47:11 -08002304
2305 sp<const GraphicBuffer> buf0(mActiveBuffer);
2306 uint32_t w0=0, h0=0, s0=0, f0=0;
2307 if (buf0 != 0) {
2308 w0 = buf0->getWidth();
2309 h0 = buf0->getHeight();
2310 s0 = buf0->getStride();
2311 f0 = buf0->format;
2312 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02002313 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002314 " "
2315 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
2316 " queued-frames=%d, mRefreshPending=%d\n",
2317 mFormat, w0, h0, s0,f0,
2318 mQueuedFrames, mRefreshPending);
2319
Mathias Agopian13127d82013-03-05 17:47:11 -08002320 if (mSurfaceFlingerConsumer != 0) {
Colin Cross3d1d2802016-09-26 18:10:16 -07002321 mSurfaceFlingerConsumer->dumpState(result, " ");
Mathias Agopian13127d82013-03-05 17:47:11 -08002322 }
2323}
2324
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002325#ifdef USE_HWC2
Dan Stozae22aec72016-08-01 13:20:59 -07002326void Layer::miniDumpHeader(String8& result) {
2327 result.append("----------------------------------------");
2328 result.append("---------------------------------------\n");
2329 result.append(" Layer name\n");
2330 result.append(" Z | ");
2331 result.append(" Comp Type | ");
2332 result.append(" Disp Frame (LTRB) | ");
2333 result.append(" Source Crop (LTRB)\n");
2334 result.append("----------------------------------------");
2335 result.append("---------------------------------------\n");
2336}
2337
2338void Layer::miniDump(String8& result, int32_t hwcId) const {
2339 if (mHwcLayers.count(hwcId) == 0) {
2340 return;
2341 }
2342
2343 String8 name;
2344 if (mName.length() > 77) {
2345 std::string shortened;
2346 shortened.append(mName.string(), 36);
2347 shortened.append("[...]");
2348 shortened.append(mName.string() + (mName.length() - 36), 36);
2349 name = shortened.c_str();
2350 } else {
2351 name = mName;
2352 }
2353
2354 result.appendFormat(" %s\n", name.string());
2355
2356 const Layer::State& layerState(getDrawingState());
2357 const HWCInfo& hwcInfo = mHwcLayers.at(hwcId);
2358 result.appendFormat(" %10u | ", layerState.z);
2359 result.appendFormat("%10s | ",
2360 to_string(getCompositionType(hwcId)).c_str());
2361 const Rect& frame = hwcInfo.displayFrame;
2362 result.appendFormat("%4d %4d %4d %4d | ", frame.left, frame.top,
2363 frame.right, frame.bottom);
Dan Stoza5a423ea2017-02-16 14:10:39 -08002364 const FloatRect& crop = hwcInfo.sourceCrop;
Dan Stozae22aec72016-08-01 13:20:59 -07002365 result.appendFormat("%6.1f %6.1f %6.1f %6.1f\n", crop.left, crop.top,
2366 crop.right, crop.bottom);
2367
2368 result.append("- - - - - - - - - - - - - - - - - - - - ");
2369 result.append("- - - - - - - - - - - - - - - - - - - -\n");
2370}
Fabien Sanglard9d96de42016-10-11 00:15:18 +00002371#endif
Dan Stozae22aec72016-08-01 13:20:59 -07002372
Svetoslavd85084b2014-03-20 10:28:31 -07002373void Layer::dumpFrameStats(String8& result) const {
2374 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002375}
2376
Svetoslavd85084b2014-03-20 10:28:31 -07002377void Layer::clearFrameStats() {
2378 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08002379}
2380
Jamie Gennis6547ff42013-07-16 20:12:42 -07002381void Layer::logFrameStats() {
2382 mFrameTracker.logAndResetStats(mName);
2383}
2384
Svetoslavd85084b2014-03-20 10:28:31 -07002385void Layer::getFrameStats(FrameStats* outStats) const {
2386 mFrameTracker.getStats(outStats);
2387}
2388
Brian Andersond6927fb2016-07-23 23:37:30 -07002389void Layer::dumpFrameEvents(String8& result) {
2390 result.appendFormat("- Layer %s (%s, %p)\n",
2391 getName().string(), getTypeId(), this);
2392 Mutex::Autolock lock(mFrameEventHistoryMutex);
2393 mFrameEventHistory.checkFencesForCompletion();
2394 mFrameEventHistory.dump(result);
2395}
Pablo Ceballos40845df2016-01-25 17:41:15 -08002396
Brian Anderson5ea5e592016-12-01 16:54:33 -08002397void Layer::onDisconnect() {
2398 Mutex::Autolock lock(mFrameEventHistoryMutex);
2399 mFrameEventHistory.onDisconnect();
2400}
2401
Brian Anderson3890c392016-07-25 12:48:08 -07002402void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
2403 FrameEventHistoryDelta *outDelta) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002404 Mutex::Autolock lock(mFrameEventHistoryMutex);
2405 if (newTimestamps) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07002406 mAcquireTimeline.push(newTimestamps->acquireFence);
Brian Andersond6927fb2016-07-23 23:37:30 -07002407 mFrameEventHistory.addQueue(*newTimestamps);
2408 }
2409
Brian Anderson3890c392016-07-25 12:48:08 -07002410 if (outDelta) {
2411 mFrameEventHistory.getAndResetDelta(outDelta);
Brian Andersond6927fb2016-07-23 23:37:30 -07002412 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08002413}
Dan Stozae77c7662016-05-13 11:37:28 -07002414
2415std::vector<OccupancyTracker::Segment> Layer::getOccupancyHistory(
2416 bool forceFlush) {
2417 std::vector<OccupancyTracker::Segment> history;
2418 status_t result = mSurfaceFlingerConsumer->getOccupancyHistory(forceFlush,
2419 &history);
2420 if (result != NO_ERROR) {
2421 ALOGW("[%s] Failed to obtain occupancy history (%d)", mName.string(),
2422 result);
2423 return {};
2424 }
2425 return history;
2426}
2427
Robert Carr367c5682016-06-20 11:55:28 -07002428bool Layer::getTransformToDisplayInverse() const {
2429 return mSurfaceFlingerConsumer->getTransformToDisplayInverse();
2430}
2431
Robert Carr1f0a16a2016-10-24 16:27:39 -07002432void Layer::addChild(const sp<Layer>& layer) {
2433 mCurrentChildren.add(layer);
2434 layer->setParent(this);
2435}
2436
2437ssize_t Layer::removeChild(const sp<Layer>& layer) {
2438 layer->setParent(nullptr);
2439 return mCurrentChildren.remove(layer);
2440}
2441
Robert Carr1db73f62016-12-21 12:58:51 -08002442bool Layer::reparentChildren(const sp<IBinder>& newParentHandle) {
2443 sp<Handle> handle = nullptr;
2444 sp<Layer> newParent = nullptr;
2445 if (newParentHandle == nullptr) {
2446 return false;
2447 }
2448 handle = static_cast<Handle*>(newParentHandle.get());
2449 newParent = handle->owner.promote();
2450 if (newParent == nullptr) {
2451 ALOGE("Unable to promote Layer handle");
2452 return false;
2453 }
2454
2455 for (const sp<Layer>& child : mCurrentChildren) {
2456 newParent->addChild(child);
2457
2458 sp<Client> client(child->mClientRef.promote());
2459 if (client != nullptr) {
2460 client->setParentLayer(newParent);
2461 }
2462 }
2463 mCurrentChildren.clear();
2464
2465 return true;
2466}
2467
Robert Carr9524cb32017-02-13 11:32:32 -08002468bool Layer::detachChildren() {
2469 traverseInZOrder([this](Layer* child) {
2470 if (child == this) {
2471 return;
2472 }
2473
2474 sp<Client> client(child->mClientRef.promote());
2475 if (client != nullptr) {
2476 client->detachLayer(child);
2477 }
2478 });
2479
2480 return true;
2481}
2482
Robert Carr1f0a16a2016-10-24 16:27:39 -07002483void Layer::setParent(const sp<Layer>& layer) {
2484 mParent = layer;
2485}
2486
2487void Layer::clearSyncPoints() {
2488 for (const auto& child : mCurrentChildren) {
2489 child->clearSyncPoints();
2490 }
2491
2492 Mutex::Autolock lock(mLocalSyncPointMutex);
2493 for (auto& point : mLocalSyncPoints) {
2494 point->setFrameAvailable();
2495 }
2496 mLocalSyncPoints.clear();
2497}
2498
2499int32_t Layer::getZ() const {
2500 return mDrawingState.z;
2501}
2502
2503/**
2504 * Negatively signed children are before 'this' in Z-order.
2505 */
2506void Layer::traverseInZOrder(const std::function<void(Layer*)>& exec) {
2507 size_t i = 0;
2508 for (; i < mDrawingChildren.size(); i++) {
2509 const auto& child = mDrawingChildren[i];
2510 if (child->getZ() >= 0)
2511 break;
2512 child->traverseInZOrder(exec);
2513 }
2514 exec(this);
2515 for (; i < mDrawingChildren.size(); i++) {
2516 const auto& child = mDrawingChildren[i];
2517 child->traverseInZOrder(exec);
2518 }
2519}
2520
2521/**
2522 * Positively signed children are before 'this' in reverse Z-order.
2523 */
2524void Layer::traverseInReverseZOrder(const std::function<void(Layer*)>& exec) {
2525 int32_t i = 0;
2526 for (i = mDrawingChildren.size()-1; i>=0; i--) {
2527 const auto& child = mDrawingChildren[i];
2528 if (child->getZ() < 0) {
2529 break;
2530 }
2531 child->traverseInReverseZOrder(exec);
2532 }
2533 exec(this);
2534 for (; i>=0; i--) {
2535 const auto& child = mDrawingChildren[i];
2536 child->traverseInReverseZOrder(exec);
2537 }
2538}
2539
2540Transform Layer::getTransform() const {
2541 Transform t;
2542 const auto& p = getParent();
2543 if (p != nullptr) {
2544 t = p->getTransform();
2545 }
2546 return t * getDrawingState().active.transform;
2547}
2548
Robert Carr6452f122017-03-21 10:41:29 -07002549#ifdef USE_HWC2
2550float Layer::getAlpha() const {
2551 const auto& p = getParent();
2552
2553 float parentAlpha = (p != nullptr) ? p->getAlpha() : 1.0;
2554 return parentAlpha * getDrawingState().alpha;
2555}
2556#else
2557uint8_t Layer::getAlpha() const {
2558 const auto& p = getParent();
2559
2560 float parentAlpha = (p != nullptr) ? (p->getAlpha() / 255.0f) : 1.0;
2561 float drawingAlpha = getDrawingState().alpha / 255.0f;
2562 drawingAlpha = drawingAlpha * parentAlpha;
2563 return static_cast<uint8_t>(std::round(drawingAlpha * 255));
2564}
2565#endif
2566
Robert Carr1f0a16a2016-10-24 16:27:39 -07002567void Layer::commitChildList() {
2568 for (size_t i = 0; i < mCurrentChildren.size(); i++) {
2569 const auto& child = mCurrentChildren[i];
2570 child->commitChildList();
2571 }
2572 mDrawingChildren = mCurrentChildren;
2573}
2574
Mathias Agopian13127d82013-03-05 17:47:11 -08002575// ---------------------------------------------------------------------------
2576
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002577}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002578
2579#if defined(__gl_h_)
2580#error "don't include gl/gl.h in this file"
2581#endif
2582
2583#if defined(__gl2_h_)
2584#error "don't include gl2/gl2.h in this file"
2585#endif