blob: 6ccd4ff5bda752e1c8ec9eb269ea37a388b2aa75 [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 Agopian90ac7992012-02-25 18:48:35 -080041#include <gui/Surface.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042
43#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020044#include "Colorizer.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070045#include "DisplayDevice.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080046#include "Layer.h"
Dan Stozab9b08832014-03-13 11:55:57 -070047#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080048#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080049
Mathias Agopian1b031492012-06-20 17:51:20 -070050#include "DisplayHardware/HWComposer.h"
51
Mathias Agopian875d8e12013-06-07 15:35:48 -070052#include "RenderEngine/RenderEngine.h"
53
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054#define DEBUG_RESIZE 0
55
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056namespace android {
57
58// ---------------------------------------------------------------------------
59
Mathias Agopian13127d82013-03-05 17:47:11 -080060int32_t Layer::sSequence = 1;
61
Mathias Agopian4d9b8222013-03-12 17:11:48 -070062Layer::Layer(SurfaceFlinger* flinger, const sp<Client>& client,
63 const String8& name, uint32_t w, uint32_t h, uint32_t flags)
Mathias Agopian13127d82013-03-05 17:47:11 -080064 : contentDirty(false),
65 sequence(uint32_t(android_atomic_inc(&sSequence))),
66 mFlinger(flinger),
Mathias Agopiana67932f2011-04-20 14:20:59 -070067 mTextureName(-1U),
Mathias Agopian13127d82013-03-05 17:47:11 -080068 mPremultipliedAlpha(true),
69 mName("unnamed"),
Mathias Agopian13127d82013-03-05 17:47:11 -080070 mFormat(PIXEL_FORMAT_NONE),
Mathias Agopian13127d82013-03-05 17:47:11 -080071 mTransactionFlags(0),
Dan Stoza7dde5992015-05-22 09:51:44 -070072 mPendingStateMutex(),
73 mPendingStates(),
Mathias Agopiana67932f2011-04-20 14:20:59 -070074 mQueuedFrames(0),
Jesse Hall399184a2014-03-03 15:42:54 -080075 mSidebandStreamChanged(false),
Mathias Agopiana67932f2011-04-20 14:20:59 -070076 mCurrentTransform(0),
Mathias Agopian933389f2011-07-18 16:15:08 -070077 mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
Robert Carrc3574f72016-03-24 12:19:32 -070078 mOverrideScalingMode(-1),
Mathias Agopiana67932f2011-04-20 14:20:59 -070079 mCurrentOpacity(true),
Dan Stozacac35382016-01-27 12:21:06 -080080 mCurrentFrameNumber(0),
Mathias Agopian4d143ee2012-02-23 20:05:39 -080081 mRefreshPending(false),
Mathias Agopian82d7ab62012-01-19 18:34:40 -080082 mFrameLatencyNeeded(false),
Mathias Agopian13127d82013-03-05 17:47:11 -080083 mFiltering(false),
84 mNeedsFiltering(false),
Mathias Agopian5cdc8992013-08-13 20:51:23 -070085 mMesh(Mesh::TRIANGLE_FAN, 4, 2, 2),
Pablo Ceballos40845df2016-01-25 17:41:15 -080086#ifndef USE_HWC2
87 mIsGlesComposition(false),
88#endif
Mathias Agopian13127d82013-03-05 17:47:11 -080089 mProtectedByApp(false),
90 mHasSurface(false),
Riley Andrews03414a12014-07-01 14:22:59 -070091 mClientRef(client),
Dan Stozaa4650a52015-05-12 12:56:16 -070092 mPotentialCursor(false),
93 mQueueItemLock(),
94 mQueueItemCondition(),
95 mQueueItems(),
Dan Stoza65476f32015-05-14 09:27:25 -070096 mLastFrameNumberReceived(0),
Pablo Ceballos04839ab2015-11-13 13:39:23 -080097 mUpdateTexImageFailed(false),
Pablo Ceballosff95aab2016-01-13 17:09:58 -080098 mAutoRefresh(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080099{
Dan Stoza9e56aa02015-11-02 13:00:03 -0800100#ifdef USE_HWC2
101 ALOGV("Creating Layer %s", name.string());
102#endif
103
Mathias Agopiana67932f2011-04-20 14:20:59 -0700104 mCurrentCrop.makeInvalid();
Mathias Agopian3f844832013-08-07 21:24:32 -0700105 mFlinger->getRenderEngine().genTextures(1, &mTextureName);
Mathias Agopian49457ac2013-08-14 18:20:17 -0700106 mTexture.init(Texture::TEXTURE_EXTERNAL, mTextureName);
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700107
108 uint32_t layerFlags = 0;
109 if (flags & ISurfaceComposerClient::eHidden)
Andy McFadden4125a4f2014-01-29 17:17:11 -0800110 layerFlags |= layer_state_t::eLayerHidden;
111 if (flags & ISurfaceComposerClient::eOpaque)
112 layerFlags |= layer_state_t::eLayerOpaque;
Dan Stoza23116082015-06-18 14:58:39 -0700113 if (flags & ISurfaceComposerClient::eSecure)
114 layerFlags |= layer_state_t::eLayerSecure;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700115
116 if (flags & ISurfaceComposerClient::eNonPremultiplied)
117 mPremultipliedAlpha = false;
118
119 mName = name;
120
121 mCurrentState.active.w = w;
122 mCurrentState.active.h = h;
Robert Carr3dcabfa2016-03-01 18:36:58 -0800123 mCurrentState.active.transform.set(0, 0);
Robert Carrb5d3d262016-03-25 15:08:13 -0700124 mCurrentState.crop.makeInvalid();
125 mCurrentState.finalCrop.makeInvalid();
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700126 mCurrentState.z = 0;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800127#ifdef USE_HWC2
128 mCurrentState.alpha = 1.0f;
129#else
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700130 mCurrentState.alpha = 0xFF;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800131#endif
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700132 mCurrentState.layerStack = 0;
133 mCurrentState.flags = layerFlags;
134 mCurrentState.sequence = 0;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700135 mCurrentState.requested = mCurrentState.active;
136
137 // drawing state & current state are identical
138 mDrawingState = mCurrentState;
Jamie Gennis6547ff42013-07-16 20:12:42 -0700139
Dan Stoza9e56aa02015-11-02 13:00:03 -0800140#ifdef USE_HWC2
141 const auto& hwc = flinger->getHwComposer();
142 const auto& activeConfig = hwc.getActiveConfig(HWC_DISPLAY_PRIMARY);
143 nsecs_t displayPeriod = activeConfig->getVsyncPeriod();
144#else
Jamie Gennis6547ff42013-07-16 20:12:42 -0700145 nsecs_t displayPeriod =
146 flinger->getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800147#endif
Jamie Gennis6547ff42013-07-16 20:12:42 -0700148 mFrameTracker.setDisplayRefreshPeriod(displayPeriod);
Jamie Gennise8696a42012-01-15 18:54:57 -0800149}
150
Mathias Agopian3f844832013-08-07 21:24:32 -0700151void Layer::onFirstRef() {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800152 // Creates a custom BufferQueue for SurfaceFlingerConsumer to use
Dan Stozab3d0bdf2014-04-07 16:33:59 -0700153 sp<IGraphicBufferProducer> producer;
154 sp<IGraphicBufferConsumer> consumer;
Dan Stozab9b08832014-03-13 11:55:57 -0700155 BufferQueue::createBufferQueue(&producer, &consumer);
156 mProducer = new MonitoredProducer(producer, mFlinger);
157 mSurfaceFlingerConsumer = new SurfaceFlingerConsumer(consumer, mTextureName);
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800158 mSurfaceFlingerConsumer->setConsumerUsageBits(getEffectiveUsage(0));
Jesse Hall399184a2014-03-03 15:42:54 -0800159 mSurfaceFlingerConsumer->setContentsChangedListener(this);
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700160 mSurfaceFlingerConsumer->setName(mName);
Daniel Lamb2675792012-02-23 14:35:13 -0800161
Mathias Agopian7f42a9c2012-04-23 20:00:16 -0700162#ifdef TARGET_DISABLE_TRIPLE_BUFFERING
163#warning "disabling triple buffering"
Mathias Agopian7f42a9c2012-04-23 20:00:16 -0700164#else
Pablo Ceballos19e3e062015-08-19 16:16:06 -0700165 mProducer->setMaxDequeuedBufferCount(2);
Mathias Agopian303d5382012-02-05 01:49:16 -0800166#endif
Andy McFadden69052052012-09-14 16:10:11 -0700167
Mathias Agopian84300952012-11-21 16:02:13 -0800168 const sp<const DisplayDevice> hw(mFlinger->getDefaultDisplayDevice());
169 updateTransformHint(hw);
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700170}
171
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700172Layer::~Layer() {
Pablo Ceballos8ea4e7b2016-03-03 15:20:02 -0800173 sp<Client> c(mClientRef.promote());
174 if (c != 0) {
175 c->detachLayer(this);
176 }
177
Dan Stozacac35382016-01-27 12:21:06 -0800178 for (auto& point : mRemoteSyncPoints) {
179 point->setTransactionApplied();
180 }
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700181 mFlinger->deleteTextureAsync(mTextureName);
Jamie Gennis6547ff42013-07-16 20:12:42 -0700182 mFrameTracker.logAndResetStats(mName);
Mathias Agopian96f08192010-06-02 23:28:45 -0700183}
184
Mathias Agopian13127d82013-03-05 17:47:11 -0800185// ---------------------------------------------------------------------------
186// callbacks
187// ---------------------------------------------------------------------------
188
Dan Stoza9e56aa02015-11-02 13:00:03 -0800189#ifdef USE_HWC2
190void Layer::onLayerDisplayed(const sp<Fence>& releaseFence) {
191 if (mHwcLayers.empty()) {
192 return;
193 }
194 mSurfaceFlingerConsumer->setReleaseFence(releaseFence);
195}
196#else
Dan Stozac7014012014-02-14 15:03:43 -0800197void Layer::onLayerDisplayed(const sp<const DisplayDevice>& /* hw */,
Mathias Agopian13127d82013-03-05 17:47:11 -0800198 HWComposer::HWCLayerInterface* layer) {
199 if (layer) {
200 layer->onDisplayed();
Jesse Hall13f01cb2013-03-20 11:37:21 -0700201 mSurfaceFlingerConsumer->setReleaseFence(layer->getAndResetReleaseFence());
Mathias Agopian13127d82013-03-05 17:47:11 -0800202 }
203}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800204#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800205
Dan Stoza6b9454d2014-11-07 16:00:59 -0800206void Layer::onFrameAvailable(const BufferItem& item) {
207 // Add this buffer from our internal queue tracker
208 { // Autolock scope
209 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaa4650a52015-05-12 12:56:16 -0700210
211 // Reset the frame number tracker when we receive the first buffer after
212 // a frame number reset
213 if (item.mFrameNumber == 1) {
214 mLastFrameNumberReceived = 0;
215 }
216
217 // Ensure that callbacks are handled in order
218 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
219 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
220 ms2ns(500));
221 if (result != NO_ERROR) {
222 ALOGE("[%s] Timed out waiting on callback", mName.string());
223 }
224 }
225
Dan Stoza6b9454d2014-11-07 16:00:59 -0800226 mQueueItems.push_back(item);
Dan Stozaecc50402015-04-28 14:42:06 -0700227 android_atomic_inc(&mQueuedFrames);
Dan Stozaa4650a52015-05-12 12:56:16 -0700228
229 // Wake up any pending callbacks
230 mLastFrameNumberReceived = item.mFrameNumber;
231 mQueueItemCondition.broadcast();
Dan Stoza6b9454d2014-11-07 16:00:59 -0800232 }
233
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800234 mFlinger->signalLayerUpdate();
Mathias Agopian579b3f82010-06-08 19:54:15 -0700235}
236
Dan Stoza6b9454d2014-11-07 16:00:59 -0800237void Layer::onFrameReplaced(const BufferItem& item) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700238 { // Autolock scope
239 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaa4650a52015-05-12 12:56:16 -0700240
Dan Stoza7dde5992015-05-22 09:51:44 -0700241 // Ensure that callbacks are handled in order
242 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
243 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
244 ms2ns(500));
245 if (result != NO_ERROR) {
246 ALOGE("[%s] Timed out waiting on callback", mName.string());
247 }
Dan Stozaa4650a52015-05-12 12:56:16 -0700248 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700249
250 if (mQueueItems.empty()) {
251 ALOGE("Can't replace a frame on an empty queue");
252 return;
253 }
254 mQueueItems.editItemAt(0) = item;
255
256 // Wake up any pending callbacks
257 mLastFrameNumberReceived = item.mFrameNumber;
258 mQueueItemCondition.broadcast();
Dan Stozaa4650a52015-05-12 12:56:16 -0700259 }
Dan Stoza6b9454d2014-11-07 16:00:59 -0800260}
261
Jesse Hall399184a2014-03-03 15:42:54 -0800262void Layer::onSidebandStreamChanged() {
263 if (android_atomic_release_cas(false, true, &mSidebandStreamChanged) == 0) {
264 // mSidebandStreamChanged was false
265 mFlinger->signalLayerUpdate();
266 }
267}
268
Mathias Agopian67106042013-03-14 19:18:13 -0700269// called with SurfaceFlinger::mStateLock from the drawing thread after
270// the layer has been remove from the current state list (and just before
271// it's removed from the drawing state list)
Mathias Agopian13127d82013-03-05 17:47:11 -0800272void Layer::onRemoved() {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800273 mSurfaceFlingerConsumer->abandon();
Mathias Agopian48d819a2009-09-10 19:41:18 -0700274}
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700275
Mathias Agopian13127d82013-03-05 17:47:11 -0800276// ---------------------------------------------------------------------------
277// set-up
278// ---------------------------------------------------------------------------
279
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700280const String8& Layer::getName() const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800281 return mName;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800282}
283
Mathias Agopianf9d93272009-06-19 17:00:27 -0700284status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800285 PixelFormat format, uint32_t flags)
286{
Mathias Agopianca99fb82010-04-14 16:43:44 -0700287 uint32_t const maxSurfaceDims = min(
Mathias Agopiana4912602012-07-12 14:25:33 -0700288 mFlinger->getMaxTextureSize(), mFlinger->getMaxViewportDims());
Mathias Agopianca99fb82010-04-14 16:43:44 -0700289
290 // never allow a surface larger than what our underlying GL implementation
291 // can handle.
292 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
Mathias Agopianff615cc2012-02-24 14:58:36 -0800293 ALOGE("dimensions too large %u x %u", uint32_t(w), uint32_t(h));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700294 return BAD_VALUE;
295 }
296
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700297 mFormat = format;
Mathias Agopianeff062c2010-08-25 14:59:15 -0700298
Riley Andrews03414a12014-07-01 14:22:59 -0700299 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700300 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700301 mCurrentOpacity = getOpacityForFormat(format);
302
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800303 mSurfaceFlingerConsumer->setDefaultBufferSize(w, h);
304 mSurfaceFlingerConsumer->setDefaultBufferFormat(format);
305 mSurfaceFlingerConsumer->setConsumerUsageBits(getEffectiveUsage(0));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700306
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800307 return NO_ERROR;
308}
309
Dan Stoza7dde5992015-05-22 09:51:44 -0700310/*
311 * The layer handle is just a BBinder object passed to the client
312 * (remote process) -- we don't keep any reference on our side such that
313 * the dtor is called when the remote side let go of its reference.
314 *
315 * LayerCleaner ensures that mFlinger->onLayerDestroyed() is called for
316 * this layer when the handle is destroyed.
317 */
318class Layer::Handle : public BBinder, public LayerCleaner {
319 public:
320 Handle(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer)
321 : LayerCleaner(flinger, layer), owner(layer) {}
322
323 wp<Layer> owner;
324};
325
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700326sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800327 Mutex::Autolock _l(mLock);
328
329 LOG_ALWAYS_FATAL_IF(mHasSurface,
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700330 "Layer::getHandle() has already been called");
Mathias Agopian13127d82013-03-05 17:47:11 -0800331
332 mHasSurface = true;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700333
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700334 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800335}
336
Dan Stozab9b08832014-03-13 11:55:57 -0700337sp<IGraphicBufferProducer> Layer::getProducer() const {
338 return mProducer;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700339}
340
Mathias Agopian13127d82013-03-05 17:47:11 -0800341// ---------------------------------------------------------------------------
342// h/w composer set-up
343// ---------------------------------------------------------------------------
344
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800345Rect Layer::getContentCrop() const {
346 // this is the crop rectangle that applies to the buffer
347 // itself (as opposed to the window)
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700348 Rect crop;
349 if (!mCurrentCrop.isEmpty()) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800350 // if the buffer crop is defined, we use that
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700351 crop = mCurrentCrop;
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800352 } else if (mActiveBuffer != NULL) {
353 // otherwise we use the whole buffer
354 crop = mActiveBuffer->getBounds();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700355 } else {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800356 // if we don't have a buffer yet, we use an empty/invalid crop
Mathias Agopian4fec8732012-06-29 14:12:52 -0700357 crop.makeInvalid();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700358 }
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700359 return crop;
360}
361
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700362static Rect reduce(const Rect& win, const Region& exclude) {
363 if (CC_LIKELY(exclude.isEmpty())) {
364 return win;
365 }
366 if (exclude.isRect()) {
367 return win.reduce(exclude.getBounds());
368 }
369 return Region(win).subtract(exclude).getBounds();
370}
371
Mathias Agopian13127d82013-03-05 17:47:11 -0800372Rect Layer::computeBounds() const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700373 const Layer::State& s(getDrawingState());
Michael Lentine6c925ed2014-09-26 17:55:01 -0700374 return computeBounds(s.activeTransparentRegion);
375}
376
377Rect Layer::computeBounds(const Region& activeTransparentRegion) const {
378 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800379 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700380
381 if (!s.crop.isEmpty()) {
382 win.intersect(s.crop, &win);
Mathias Agopian13127d82013-03-05 17:47:11 -0800383 }
Mathias Agopian6c7f25a2013-05-09 20:37:10 -0700384 // subtract the transparent region and snap to the bounds
Michael Lentine6c925ed2014-09-26 17:55:01 -0700385 return reduce(win, activeTransparentRegion);
Mathias Agopian13127d82013-03-05 17:47:11 -0800386}
387
Mathias Agopian6b442672013-07-09 21:24:52 -0700388FloatRect Layer::computeCrop(const sp<const DisplayDevice>& hw) const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800389 // the content crop is the area of the content that gets scaled to the
390 // layer's size.
Mathias Agopian6b442672013-07-09 21:24:52 -0700391 FloatRect crop(getContentCrop());
Mathias Agopian13127d82013-03-05 17:47:11 -0800392
Robert Carrb5d3d262016-03-25 15:08:13 -0700393 // the crop is the area of the window that gets cropped, but not
Mathias Agopian13127d82013-03-05 17:47:11 -0800394 // scaled in any ways.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700395 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800396
397 // apply the projection's clipping to the window crop in
398 // layerstack space, and convert-back to layer space.
Mathias Agopian6b442672013-07-09 21:24:52 -0700399 // if there are no window scaling involved, this operation will map to full
400 // pixels in the buffer.
401 // FIXME: the 3 lines below can produce slightly incorrect clipping when we have
402 // a viewport clipping and a window transform. we should use floating point to fix this.
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700403
404 Rect activeCrop(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700405 if (!s.crop.isEmpty()) {
406 activeCrop = s.crop;
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700407 }
408
Robert Carr3dcabfa2016-03-01 18:36:58 -0800409 activeCrop = s.active.transform.transform(activeCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000410 if (!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
411 activeCrop.clear();
412 }
Robert Carrb5d3d262016-03-25 15:08:13 -0700413 if (!s.finalCrop.isEmpty()) {
414 if(!activeCrop.intersect(s.finalCrop, &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000415 activeCrop.clear();
416 }
417 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800418 activeCrop = s.active.transform.inverse().transform(activeCrop);
Mathias Agopian13127d82013-03-05 17:47:11 -0800419
Michael Lentine28ea2172014-11-19 18:32:37 -0800420 // This needs to be here as transform.transform(Rect) computes the
421 // transformed rect and then takes the bounding box of the result before
422 // returning. This means
423 // transform.inverse().transform(transform.transform(Rect)) != Rect
424 // in which case we need to make sure the final rect is clipped to the
425 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000426 if (!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
427 activeCrop.clear();
428 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800429
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700430 // subtract the transparent region and snap to the bounds
431 activeCrop = reduce(activeCrop, s.activeTransparentRegion);
432
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000433 // Transform the window crop to match the buffer coordinate system,
434 // which means using the inverse of the current transform set on the
435 // SurfaceFlingerConsumer.
436 uint32_t invTransform = mCurrentTransform;
437 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
438 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700439 * the code below applies the primary display's inverse transform to the
440 * buffer
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000441 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700442 uint32_t invTransformOrient =
443 DisplayDevice::getPrimaryDisplayOrientationTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000444 // calculate the inverse transform
445 if (invTransformOrient & NATIVE_WINDOW_TRANSFORM_ROT_90) {
446 invTransformOrient ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
447 NATIVE_WINDOW_TRANSFORM_FLIP_H;
448 // If the transform has been rotated the axis of flip has been swapped
449 // so we need to swap which flip operations we are performing
Michael Lentine7b902582014-08-19 18:14:06 -0700450 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
451 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000452 if (is_h_flipped != is_v_flipped) {
Michael Lentine7b902582014-08-19 18:14:06 -0700453 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
454 NATIVE_WINDOW_TRANSFORM_FLIP_H;
455 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800456 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000457 // and apply to the current transform
458 invTransform = (Transform(invTransform) * Transform(invTransformOrient)).getOrientation();
Mathias Agopian13127d82013-03-05 17:47:11 -0800459 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000460
461 int winWidth = s.active.w;
462 int winHeight = s.active.h;
463 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
464 // If the activeCrop has been rotate the ends are rotated but not
465 // the space itself so when transforming ends back we can't rely on
466 // a modification of the axes of rotation. To account for this we
467 // need to reorient the inverse rotation in terms of the current
468 // axes of rotation.
469 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
470 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
471 if (is_h_flipped == is_v_flipped) {
472 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
473 NATIVE_WINDOW_TRANSFORM_FLIP_H;
474 }
475 winWidth = s.active.h;
476 winHeight = s.active.w;
477 }
478 const Rect winCrop = activeCrop.transform(
479 invTransform, s.active.w, s.active.h);
480
481 // below, crop is intersected with winCrop expressed in crop's coordinate space
482 float xScale = crop.getWidth() / float(winWidth);
483 float yScale = crop.getHeight() / float(winHeight);
484
485 float insetL = winCrop.left * xScale;
486 float insetT = winCrop.top * yScale;
487 float insetR = (winWidth - winCrop.right ) * xScale;
488 float insetB = (winHeight - winCrop.bottom) * yScale;
489
490 crop.left += insetL;
491 crop.top += insetT;
492 crop.right -= insetR;
493 crop.bottom -= insetB;
494
Mathias Agopian13127d82013-03-05 17:47:11 -0800495 return crop;
496}
497
Dan Stoza9e56aa02015-11-02 13:00:03 -0800498#ifdef USE_HWC2
499void Layer::setGeometry(const sp<const DisplayDevice>& displayDevice)
500#else
Mathias Agopian4fec8732012-06-29 14:12:52 -0700501void Layer::setGeometry(
Mathias Agopian42977342012-08-05 00:40:46 -0700502 const sp<const DisplayDevice>& hw,
Mathias Agopian4fec8732012-06-29 14:12:52 -0700503 HWComposer::HWCLayerInterface& layer)
Dan Stoza9e56aa02015-11-02 13:00:03 -0800504#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700505{
Dan Stoza9e56aa02015-11-02 13:00:03 -0800506#ifdef USE_HWC2
507 const auto hwcId = displayDevice->getHwcDisplayId();
508 auto& hwcInfo = mHwcLayers[hwcId];
509#else
Mathias Agopian13127d82013-03-05 17:47:11 -0800510 layer.setDefaultState();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800511#endif
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700512
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700513 // enable this layer
Dan Stoza9e56aa02015-11-02 13:00:03 -0800514#ifdef USE_HWC2
515 hwcInfo.forceClientComposition = false;
516
517 if (isSecure() && !displayDevice->isSecure()) {
518 hwcInfo.forceClientComposition = true;
519 }
520
521 auto& hwcLayer = hwcInfo.layer;
522#else
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700523 layer.setSkip(false);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700524
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700525 if (isSecure() && !hw->isSecure()) {
526 layer.setSkip(true);
527 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800528#endif
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700529
Mathias Agopian13127d82013-03-05 17:47:11 -0800530 // this gives us only the "orientation" component of the transform
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700531 const State& s(getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800532#ifdef USE_HWC2
533 if (!isOpaque(s) || s.alpha != 1.0f) {
534 auto blendMode = mPremultipliedAlpha ?
535 HWC2::BlendMode::Premultiplied : HWC2::BlendMode::Coverage;
536 auto error = hwcLayer->setBlendMode(blendMode);
537 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set blend mode %s:"
538 " %s (%d)", mName.string(), to_string(blendMode).c_str(),
539 to_string(error).c_str(), static_cast<int32_t>(error));
540 }
541#else
Andy McFadden4125a4f2014-01-29 17:17:11 -0800542 if (!isOpaque(s) || s.alpha != 0xFF) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800543 layer.setBlending(mPremultipliedAlpha ?
544 HWC_BLENDING_PREMULT :
545 HWC_BLENDING_COVERAGE);
546 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800547#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800548
549 // apply the layer's transform, followed by the display's global transform
550 // here we're guaranteed that the layer's transform preserves rects
Michael Lentine6c925ed2014-09-26 17:55:01 -0700551 Region activeTransparentRegion(s.activeTransparentRegion);
Robert Carrb5d3d262016-03-25 15:08:13 -0700552 if (!s.crop.isEmpty()) {
553 Rect activeCrop(s.crop);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800554 activeCrop = s.active.transform.transform(activeCrop);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800555#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000556 if(!activeCrop.intersect(displayDevice->getViewport(), &activeCrop)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800557#else
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000558 if(!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800559#endif
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000560 activeCrop.clear();
561 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800562 activeCrop = s.active.transform.inverse().transform(activeCrop);
Michael Lentine28ea2172014-11-19 18:32:37 -0800563 // This needs to be here as transform.transform(Rect) computes the
564 // transformed rect and then takes the bounding box of the result before
565 // returning. This means
566 // transform.inverse().transform(transform.transform(Rect)) != Rect
567 // in which case we need to make sure the final rect is clipped to the
568 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000569 if(!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
570 activeCrop.clear();
571 }
Michael Lentine6c925ed2014-09-26 17:55:01 -0700572 // mark regions outside the crop as transparent
573 activeTransparentRegion.orSelf(Rect(0, 0, s.active.w, activeCrop.top));
574 activeTransparentRegion.orSelf(Rect(0, activeCrop.bottom,
575 s.active.w, s.active.h));
576 activeTransparentRegion.orSelf(Rect(0, activeCrop.top,
577 activeCrop.left, activeCrop.bottom));
578 activeTransparentRegion.orSelf(Rect(activeCrop.right, activeCrop.top,
579 s.active.w, activeCrop.bottom));
580 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800581 Rect frame(s.active.transform.transform(computeBounds(activeTransparentRegion)));
Robert Carrb5d3d262016-03-25 15:08:13 -0700582 if (!s.finalCrop.isEmpty()) {
583 if(!frame.intersect(s.finalCrop, &frame)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000584 frame.clear();
585 }
586 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800587#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000588 if (!frame.intersect(displayDevice->getViewport(), &frame)) {
589 frame.clear();
590 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800591 const Transform& tr(displayDevice->getTransform());
592 Rect transformedFrame = tr.transform(frame);
593 auto error = hwcLayer->setDisplayFrame(transformedFrame);
594 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set display frame "
595 "[%d, %d, %d, %d]: %s (%d)", mName.string(), transformedFrame.left,
596 transformedFrame.top, transformedFrame.right,
597 transformedFrame.bottom, to_string(error).c_str(),
598 static_cast<int32_t>(error));
599
600 FloatRect sourceCrop = computeCrop(displayDevice);
601 error = hwcLayer->setSourceCrop(sourceCrop);
602 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set source crop "
603 "[%.3f, %.3f, %.3f, %.3f]: %s (%d)", mName.string(),
604 sourceCrop.left, sourceCrop.top, sourceCrop.right,
605 sourceCrop.bottom, to_string(error).c_str(),
606 static_cast<int32_t>(error));
607
608 error = hwcLayer->setPlaneAlpha(s.alpha);
609 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set plane alpha %.3f: "
610 "%s (%d)", mName.string(), s.alpha, to_string(error).c_str(),
611 static_cast<int32_t>(error));
612
613 error = hwcLayer->setZOrder(s.z);
614 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set Z %u: %s (%d)",
615 mName.string(), s.z, to_string(error).c_str(),
616 static_cast<int32_t>(error));
617#else
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000618 if (!frame.intersect(hw->getViewport(), &frame)) {
619 frame.clear();
620 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800621 const Transform& tr(hw->getTransform());
622 layer.setFrame(tr.transform(frame));
623 layer.setCrop(computeCrop(hw));
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800624 layer.setPlaneAlpha(s.alpha);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800625#endif
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800626
Mathias Agopian29a367b2011-07-12 14:51:45 -0700627 /*
628 * Transformations are applied in this order:
629 * 1) buffer orientation/flip/mirror
630 * 2) state transformation (window manager)
631 * 3) layer orientation (screen orientation)
632 * (NOTE: the matrices are multiplied in reverse order)
633 */
634
635 const Transform bufferOrientation(mCurrentTransform);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800636 Transform transform(tr * s.active.transform * bufferOrientation);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700637
638 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
639 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700640 * the code below applies the primary display's inverse transform to the
641 * buffer
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700642 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700643 uint32_t invTransform =
644 DisplayDevice::getPrimaryDisplayOrientationTransform();
645
Michael Lentine14409632014-08-19 11:27:30 -0700646 uint32_t t_orientation = transform.getOrientation();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700647 // calculate the inverse transform
648 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
649 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
650 NATIVE_WINDOW_TRANSFORM_FLIP_H;
Michael Lentine14409632014-08-19 11:27:30 -0700651 // If the transform has been rotated the axis of flip has been swapped
652 // so we need to swap which flip operations we are performing
653 bool is_h_flipped = (t_orientation & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
654 bool is_v_flipped = (t_orientation & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
655 if (is_h_flipped != is_v_flipped) {
656 t_orientation ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
657 NATIVE_WINDOW_TRANSFORM_FLIP_H;
658 }
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700659 }
660 // and apply to the current transform
Michael Lentine14409632014-08-19 11:27:30 -0700661 transform = Transform(t_orientation) * Transform(invTransform);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700662 }
Mathias Agopian29a367b2011-07-12 14:51:45 -0700663
664 // this gives us only the "orientation" component of the transform
Mathias Agopian13127d82013-03-05 17:47:11 -0800665 const uint32_t orientation = transform.getOrientation();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800666#ifdef USE_HWC2
667 if (orientation & Transform::ROT_INVALID) {
668 // we can only handle simple transformation
669 hwcInfo.forceClientComposition = true;
670 } else {
671 auto transform = static_cast<HWC2::Transform>(orientation);
672 auto error = hwcLayer->setTransform(transform);
673 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set transform %s: "
674 "%s (%d)", mName.string(), to_string(transform).c_str(),
675 to_string(error).c_str(), static_cast<int32_t>(error));
676 }
677#else
Mathias Agopian13127d82013-03-05 17:47:11 -0800678 if (orientation & Transform::ROT_INVALID) {
679 // we can only handle simple transformation
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700680 layer.setSkip(true);
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700681 } else {
Mathias Agopian13127d82013-03-05 17:47:11 -0800682 layer.setTransform(orientation);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700683 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800684#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700685}
686
Dan Stoza9e56aa02015-11-02 13:00:03 -0800687#ifdef USE_HWC2
688void Layer::forceClientComposition(int32_t hwcId) {
689 if (mHwcLayers.count(hwcId) == 0) {
690 ALOGE("forceClientComposition: no HWC layer found (%d)", hwcId);
691 return;
692 }
693
694 mHwcLayers[hwcId].forceClientComposition = true;
695}
696#endif
697
698#ifdef USE_HWC2
699void Layer::setPerFrameData(const sp<const DisplayDevice>& displayDevice) {
700 // Apply this display's projection's viewport to the visible region
701 // before giving it to the HWC HAL.
702 const Transform& tr = displayDevice->getTransform();
703 const auto& viewport = displayDevice->getViewport();
704 Region visible = tr.transform(visibleRegion.intersect(viewport));
705 auto hwcId = displayDevice->getHwcDisplayId();
706 auto& hwcLayer = mHwcLayers[hwcId].layer;
707 auto error = hwcLayer->setVisibleRegion(visible);
708 if (error != HWC2::Error::None) {
709 ALOGE("[%s] Failed to set visible region: %s (%d)", mName.string(),
710 to_string(error).c_str(), static_cast<int32_t>(error));
711 visible.dump(LOG_TAG);
712 }
713
714 error = hwcLayer->setSurfaceDamage(surfaceDamageRegion);
715 if (error != HWC2::Error::None) {
716 ALOGE("[%s] Failed to set surface damage: %s (%d)", mName.string(),
717 to_string(error).c_str(), static_cast<int32_t>(error));
718 surfaceDamageRegion.dump(LOG_TAG);
719 }
720
721 auto compositionType = HWC2::Composition::Invalid;
722 if (mSidebandStream.get()) {
723 compositionType = HWC2::Composition::Sideband;
724 auto error = hwcLayer->setSidebandStream(mSidebandStream->handle());
725 if (error != HWC2::Error::None) {
726 ALOGE("[%s] Failed to set sideband stream %p: %s (%d)",
727 mName.string(), mSidebandStream->handle(),
728 to_string(error).c_str(), static_cast<int32_t>(error));
729 return;
730 }
731 } else {
732 if (mActiveBuffer == nullptr || mActiveBuffer->handle == nullptr) {
733 compositionType = HWC2::Composition::Client;
734 auto error = hwcLayer->setBuffer(nullptr, Fence::NO_FENCE);
735 if (error != HWC2::Error::None) {
736 ALOGE("[%s] Failed to set null buffer: %s (%d)", mName.string(),
737 to_string(error).c_str(), static_cast<int32_t>(error));
738 return;
739 }
740 } else {
741 if (mPotentialCursor) {
742 compositionType = HWC2::Composition::Cursor;
743 }
744 auto acquireFence = mSurfaceFlingerConsumer->getCurrentFence();
745 auto error = hwcLayer->setBuffer(mActiveBuffer->handle,
746 acquireFence);
747 if (error != HWC2::Error::None) {
748 ALOGE("[%s] Failed to set buffer %p: %s (%d)", mName.string(),
749 mActiveBuffer->handle, to_string(error).c_str(),
750 static_cast<int32_t>(error));
751 return;
752 }
753 // If it's not a cursor, default to device composition
754 }
755 }
756
757 if (mHwcLayers[hwcId].forceClientComposition) {
758 ALOGV("[%s] Forcing Client composition", mName.string());
759 setCompositionType(hwcId, HWC2::Composition::Client);
760 } else if (compositionType != HWC2::Composition::Invalid) {
761 ALOGV("[%s] Requesting %s composition", mName.string(),
762 to_string(compositionType).c_str());
763 setCompositionType(hwcId, compositionType);
764 } else {
765 ALOGV("[%s] Requesting Device composition", mName.string());
766 setCompositionType(hwcId, HWC2::Composition::Device);
767 }
768}
769#else
Mathias Agopian42977342012-08-05 00:40:46 -0700770void Layer::setPerFrameData(const sp<const DisplayDevice>& hw,
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700771 HWComposer::HWCLayerInterface& layer) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800772 // we have to set the visible region on every frame because
773 // we currently free it during onLayerDisplayed(), which is called
774 // after HWComposer::commit() -- every frame.
775 // Apply this display's projection's viewport to the visible region
776 // before giving it to the HWC HAL.
777 const Transform& tr = hw->getTransform();
778 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport()));
779 layer.setVisibleRegionScreen(visible);
Dan Stozadb4850c2015-06-25 16:10:18 -0700780 layer.setSurfaceDamage(surfaceDamageRegion);
Pablo Ceballos40845df2016-01-25 17:41:15 -0800781 mIsGlesComposition = (layer.getCompositionType() == HWC_FRAMEBUFFER);
Dan Stozaee44edd2015-03-23 15:50:23 -0700782
Jesse Hall399184a2014-03-03 15:42:54 -0800783 if (mSidebandStream.get()) {
784 layer.setSidebandStream(mSidebandStream);
785 } else {
786 // NOTE: buffer can be NULL if the client never drew into this
787 // layer yet, or if we ran out of memory
788 layer.setBuffer(mActiveBuffer);
789 }
Jesse Hallc5c5a142012-07-02 16:49:28 -0700790}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800791#endif
Jesse Halldc5b4852012-06-29 15:21:18 -0700792
Dan Stoza9e56aa02015-11-02 13:00:03 -0800793#ifdef USE_HWC2
794void Layer::updateCursorPosition(const sp<const DisplayDevice>& displayDevice) {
795 auto hwcId = displayDevice->getHwcDisplayId();
796 if (mHwcLayers.count(hwcId) == 0 ||
797 getCompositionType(hwcId) != HWC2::Composition::Cursor) {
798 return;
799 }
800
801 // This gives us only the "orientation" component of the transform
802 const State& s(getCurrentState());
803
804 // Apply the layer's transform, followed by the display's global transform
805 // Here we're guaranteed that the layer's transform preserves rects
806 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700807 if (!s.crop.isEmpty()) {
808 win.intersect(s.crop, &win);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800809 }
810 // Subtract the transparent region and snap to the bounds
811 Rect bounds = reduce(win, s.activeTransparentRegion);
Dan Stozabaf416d2016-03-10 11:57:08 -0800812 Rect frame(s.active.transform.transform(bounds));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800813 frame.intersect(displayDevice->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700814 if (!s.finalCrop.isEmpty()) {
815 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000816 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800817 auto& displayTransform(displayDevice->getTransform());
818 auto position = displayTransform.transform(frame);
819
820 auto error = mHwcLayers[hwcId].layer->setCursorPosition(position.left,
821 position.top);
822 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set cursor position "
823 "to (%d, %d): %s (%d)", mName.string(), position.left,
824 position.top, to_string(error).c_str(),
825 static_cast<int32_t>(error));
826}
827#else
Dan Stozac7014012014-02-14 15:03:43 -0800828void Layer::setAcquireFence(const sp<const DisplayDevice>& /* hw */,
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700829 HWComposer::HWCLayerInterface& layer) {
Jesse Hallc5c5a142012-07-02 16:49:28 -0700830 int fenceFd = -1;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700831
832 // TODO: there is a possible optimization here: we only need to set the
833 // acquire fence the first time a new buffer is acquired on EACH display.
834
Riley Andrews03414a12014-07-01 14:22:59 -0700835 if (layer.getCompositionType() == HWC_OVERLAY || layer.getCompositionType() == HWC_CURSOR_OVERLAY) {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800836 sp<Fence> fence = mSurfaceFlingerConsumer->getCurrentFence();
Jamie Gennis1df8c342012-12-20 14:05:45 -0800837 if (fence->isValid()) {
Jesse Hallc5c5a142012-07-02 16:49:28 -0700838 fenceFd = fence->dup();
Jesse Halldc5b4852012-06-29 15:21:18 -0700839 if (fenceFd == -1) {
840 ALOGW("failed to dup layer fence, skipping sync: %d", errno);
841 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700842 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700843 }
Jesse Hallc5c5a142012-07-02 16:49:28 -0700844 layer.setAcquireFenceFd(fenceFd);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700845}
846
Riley Andrews03414a12014-07-01 14:22:59 -0700847Rect Layer::getPosition(
848 const sp<const DisplayDevice>& hw)
849{
850 // this gives us only the "orientation" component of the transform
851 const State& s(getCurrentState());
852
853 // apply the layer's transform, followed by the display's global transform
854 // here we're guaranteed that the layer's transform preserves rects
855 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700856 if (!s.crop.isEmpty()) {
857 win.intersect(s.crop, &win);
Riley Andrews03414a12014-07-01 14:22:59 -0700858 }
859 // subtract the transparent region and snap to the bounds
860 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800861 Rect frame(s.active.transform.transform(bounds));
Riley Andrews03414a12014-07-01 14:22:59 -0700862 frame.intersect(hw->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700863 if (!s.finalCrop.isEmpty()) {
864 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000865 }
Riley Andrews03414a12014-07-01 14:22:59 -0700866 const Transform& tr(hw->getTransform());
867 return Rect(tr.transform(frame));
868}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800869#endif
Riley Andrews03414a12014-07-01 14:22:59 -0700870
Mathias Agopian13127d82013-03-05 17:47:11 -0800871// ---------------------------------------------------------------------------
872// drawing...
873// ---------------------------------------------------------------------------
874
875void Layer::draw(const sp<const DisplayDevice>& hw, const Region& clip) const {
Dan Stozac7014012014-02-14 15:03:43 -0800876 onDraw(hw, clip, false);
Mathias Agopian13127d82013-03-05 17:47:11 -0800877}
878
Dan Stozac7014012014-02-14 15:03:43 -0800879void Layer::draw(const sp<const DisplayDevice>& hw,
880 bool useIdentityTransform) const {
881 onDraw(hw, Region(hw->bounds()), useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -0800882}
883
Dan Stozac7014012014-02-14 15:03:43 -0800884void Layer::draw(const sp<const DisplayDevice>& hw) const {
885 onDraw(hw, Region(hw->bounds()), false);
886}
887
888void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip,
889 bool useIdentityTransform) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800890{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800891 ATRACE_CALL();
892
Mathias Agopiana67932f2011-04-20 14:20:59 -0700893 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800894 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -0700895 // in fact never been drawn into. This happens frequently with
896 // SurfaceView because the WindowManager can't know when the client
897 // has drawn the first time.
898
899 // If there is nothing under us, we paint the screen in black, otherwise
900 // we just skip this update.
901
902 // figure out if there is something below us
903 Region under;
Mathias Agopianf7ae69d2011-08-23 12:34:29 -0700904 const SurfaceFlinger::LayerVector& drawingLayers(
905 mFlinger->mDrawingState.layersSortedByZ);
Mathias Agopian179169e2010-05-06 20:21:45 -0700906 const size_t count = drawingLayers.size();
907 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800908 const sp<Layer>& layer(drawingLayers[i]);
909 if (layer.get() == static_cast<Layer const*>(this))
Mathias Agopian179169e2010-05-06 20:21:45 -0700910 break;
Mathias Agopian42977342012-08-05 00:40:46 -0700911 under.orSelf( hw->getTransform().transform(layer->visibleRegion) );
Mathias Agopian179169e2010-05-06 20:21:45 -0700912 }
913 // if not everything below us is covered, we plug the holes!
914 Region holes(clip.subtract(under));
915 if (!holes.isEmpty()) {
Mathias Agopian1b031492012-06-20 17:51:20 -0700916 clearWithOpenGL(hw, holes, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -0700917 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800918 return;
919 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700920
Andy McFadden97eba892012-12-11 15:21:45 -0800921 // Bind the current buffer to the GL texture, and wait for it to be
922 // ready for us to draw into.
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800923 status_t err = mSurfaceFlingerConsumer->bindTextureImage();
924 if (err != NO_ERROR) {
Andy McFadden97eba892012-12-11 15:21:45 -0800925 ALOGW("onDraw: bindTextureImage failed (err=%d)", err);
Jesse Halldc5b4852012-06-29 15:21:18 -0700926 // Go ahead and draw the buffer anyway; no matter what we do the screen
927 // is probably going to have something visibly wrong.
928 }
929
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700930 bool blackOutLayer = isProtected() || (isSecure() && !hw->isSecure());
931
Mathias Agopian875d8e12013-06-07 15:35:48 -0700932 RenderEngine& engine(mFlinger->getRenderEngine());
933
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700934 if (!blackOutLayer) {
Jamie Genniscbb1a952012-05-08 17:05:52 -0700935 // TODO: we could be more subtle with isFixedSize()
Mathias Agopianeba8c682012-09-19 23:14:45 -0700936 const bool useFiltering = getFiltering() || needsFiltering(hw) || isFixedSize();
Jamie Genniscbb1a952012-05-08 17:05:52 -0700937
938 // Query the texture matrix given our current filtering mode.
939 float textureMatrix[16];
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800940 mSurfaceFlingerConsumer->setFilteringEnabled(useFiltering);
941 mSurfaceFlingerConsumer->getTransformMatrix(textureMatrix);
Jamie Genniscbb1a952012-05-08 17:05:52 -0700942
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700943 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
944
945 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700946 * the code below applies the primary display's inverse transform to
947 * the texture transform
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700948 */
949
950 // create a 4x4 transform matrix from the display transform flags
951 const mat4 flipH(-1,0,0,0, 0,1,0,0, 0,0,1,0, 1,0,0,1);
952 const mat4 flipV( 1,0,0,0, 0,-1,0,0, 0,0,1,0, 0,1,0,1);
953 const mat4 rot90( 0,1,0,0, -1,0,0,0, 0,0,1,0, 1,0,0,1);
954
955 mat4 tr;
Pablo Ceballos021623b2016-04-15 17:31:51 -0700956 uint32_t transform =
957 DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700958 if (transform & NATIVE_WINDOW_TRANSFORM_ROT_90)
959 tr = tr * rot90;
960 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_H)
961 tr = tr * flipH;
962 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_V)
963 tr = tr * flipV;
964
965 // calculate the inverse
966 tr = inverse(tr);
967
968 // and finally apply it to the original texture matrix
969 const mat4 texTransform(mat4(static_cast<const float*>(textureMatrix)) * tr);
970 memcpy(textureMatrix, texTransform.asArray(), sizeof(textureMatrix));
971 }
972
Jamie Genniscbb1a952012-05-08 17:05:52 -0700973 // Set things up for texturing.
Mathias Agopian49457ac2013-08-14 18:20:17 -0700974 mTexture.setDimensions(mActiveBuffer->getWidth(), mActiveBuffer->getHeight());
975 mTexture.setFiltering(useFiltering);
976 mTexture.setMatrix(textureMatrix);
977
978 engine.setupLayerTexturing(mTexture);
Mathias Agopiana67932f2011-04-20 14:20:59 -0700979 } else {
Mathias Agopian875d8e12013-06-07 15:35:48 -0700980 engine.setupLayerBlackedOut();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700981 }
Dan Stozac7014012014-02-14 15:03:43 -0800982 drawWithOpenGL(hw, clip, useIdentityTransform);
Mathias Agopian875d8e12013-06-07 15:35:48 -0700983 engine.disableTexturing();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800984}
985
Mathias Agopian13127d82013-03-05 17:47:11 -0800986
Dan Stozac7014012014-02-14 15:03:43 -0800987void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw,
988 const Region& /* clip */, float red, float green, float blue,
989 float alpha) const
Mathias Agopian13127d82013-03-05 17:47:11 -0800990{
Mathias Agopian19733a32013-08-28 18:13:56 -0700991 RenderEngine& engine(mFlinger->getRenderEngine());
Dan Stozac7014012014-02-14 15:03:43 -0800992 computeGeometry(hw, mMesh, false);
Mathias Agopian19733a32013-08-28 18:13:56 -0700993 engine.setupFillWithColor(red, green, blue, alpha);
994 engine.drawMesh(mMesh);
Mathias Agopian13127d82013-03-05 17:47:11 -0800995}
996
997void Layer::clearWithOpenGL(
998 const sp<const DisplayDevice>& hw, const Region& clip) const {
999 clearWithOpenGL(hw, clip, 0,0,0,0);
1000}
1001
Dan Stozac7014012014-02-14 15:03:43 -08001002void Layer::drawWithOpenGL(const sp<const DisplayDevice>& hw,
1003 const Region& /* clip */, bool useIdentityTransform) const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001004 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08001005
Dan Stozac7014012014-02-14 15:03:43 -08001006 computeGeometry(hw, mMesh, useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -08001007
Mathias Agopian13127d82013-03-05 17:47:11 -08001008 /*
1009 * NOTE: the way we compute the texture coordinates here produces
1010 * different results than when we take the HWC path -- in the later case
1011 * the "source crop" is rounded to texel boundaries.
1012 * This can produce significantly different results when the texture
1013 * is scaled by a large amount.
1014 *
1015 * The GL code below is more logical (imho), and the difference with
1016 * HWC is due to a limitation of the HWC API to integers -- a question
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001017 * is suspend is whether we should ignore this problem or revert to
Mathias Agopian13127d82013-03-05 17:47:11 -08001018 * GL composition when a buffer scaling is applied (maybe with some
1019 * minimal value)? Or, we could make GL behave like HWC -- but this feel
1020 * like more of a hack.
1021 */
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001022 Rect win(computeBounds());
1023
Robert Carrb5d3d262016-03-25 15:08:13 -07001024 if (!s.finalCrop.isEmpty()) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001025 win = s.active.transform.transform(win);
Robert Carrb5d3d262016-03-25 15:08:13 -07001026 if (!win.intersect(s.finalCrop, &win)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001027 win.clear();
1028 }
1029 win = s.active.transform.inverse().transform(win);
1030 if (!win.intersect(computeBounds(), &win)) {
1031 win.clear();
1032 }
1033 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001034
Mathias Agopian3f844832013-08-07 21:24:32 -07001035 float left = float(win.left) / float(s.active.w);
1036 float top = float(win.top) / float(s.active.h);
1037 float right = float(win.right) / float(s.active.w);
1038 float bottom = float(win.bottom) / float(s.active.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001039
Mathias Agopian875d8e12013-06-07 15:35:48 -07001040 // TODO: we probably want to generate the texture coords with the mesh
1041 // here we assume that we only have 4 vertices
Mathias Agopianff2ed702013-09-01 21:36:12 -07001042 Mesh::VertexArray<vec2> texCoords(mMesh.getTexCoordArray<vec2>());
1043 texCoords[0] = vec2(left, 1.0f - top);
1044 texCoords[1] = vec2(left, 1.0f - bottom);
1045 texCoords[2] = vec2(right, 1.0f - bottom);
1046 texCoords[3] = vec2(right, 1.0f - top);
Mathias Agopian13127d82013-03-05 17:47:11 -08001047
Mathias Agopian875d8e12013-06-07 15:35:48 -07001048 RenderEngine& engine(mFlinger->getRenderEngine());
Andy McFadden4125a4f2014-01-29 17:17:11 -08001049 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), s.alpha);
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001050 engine.drawMesh(mMesh);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001051 engine.disableBlending();
Mathias Agopian13127d82013-03-05 17:47:11 -08001052}
1053
Dan Stoza9e56aa02015-11-02 13:00:03 -08001054#ifdef USE_HWC2
1055void Layer::setCompositionType(int32_t hwcId, HWC2::Composition type,
1056 bool callIntoHwc) {
1057 if (mHwcLayers.count(hwcId) == 0) {
1058 ALOGE("setCompositionType called without a valid HWC layer");
1059 return;
1060 }
1061 auto& hwcInfo = mHwcLayers[hwcId];
1062 auto& hwcLayer = hwcInfo.layer;
1063 ALOGV("setCompositionType(%" PRIx64 ", %s, %d)", hwcLayer->getId(),
1064 to_string(type).c_str(), static_cast<int>(callIntoHwc));
1065 if (hwcInfo.compositionType != type) {
1066 ALOGV(" actually setting");
1067 hwcInfo.compositionType = type;
1068 if (callIntoHwc) {
1069 auto error = hwcLayer->setCompositionType(type);
1070 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set "
1071 "composition type %s: %s (%d)", mName.string(),
1072 to_string(type).c_str(), to_string(error).c_str(),
1073 static_cast<int32_t>(error));
1074 }
1075 }
1076}
1077
1078HWC2::Composition Layer::getCompositionType(int32_t hwcId) const {
1079 if (mHwcLayers.count(hwcId) == 0) {
1080 ALOGE("getCompositionType called without a valid HWC layer");
1081 return HWC2::Composition::Invalid;
1082 }
1083 return mHwcLayers.at(hwcId).compositionType;
1084}
1085
1086void Layer::setClearClientTarget(int32_t hwcId, bool clear) {
1087 if (mHwcLayers.count(hwcId) == 0) {
1088 ALOGE("setClearClientTarget called without a valid HWC layer");
1089 return;
1090 }
1091 mHwcLayers[hwcId].clearClientTarget = clear;
1092}
1093
1094bool Layer::getClearClientTarget(int32_t hwcId) const {
1095 if (mHwcLayers.count(hwcId) == 0) {
1096 ALOGE("getClearClientTarget called without a valid HWC layer");
1097 return false;
1098 }
1099 return mHwcLayers.at(hwcId).clearClientTarget;
1100}
1101#endif
1102
Ruben Brunk1681d952014-06-27 15:51:55 -07001103uint32_t Layer::getProducerStickyTransform() const {
1104 int producerStickyTransform = 0;
1105 int ret = mProducer->query(NATIVE_WINDOW_STICKY_TRANSFORM, &producerStickyTransform);
1106 if (ret != OK) {
1107 ALOGW("%s: Error %s (%d) while querying window sticky transform.", __FUNCTION__,
1108 strerror(-ret), ret);
1109 return 0;
1110 }
1111 return static_cast<uint32_t>(producerStickyTransform);
1112}
1113
Dan Stozacac35382016-01-27 12:21:06 -08001114uint64_t Layer::getHeadFrameNumber() const {
1115 Mutex::Autolock lock(mQueueItemLock);
1116 if (!mQueueItems.empty()) {
1117 return mQueueItems[0].mFrameNumber;
1118 } else {
1119 return mCurrentFrameNumber;
1120 }
1121}
1122
1123bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
1124 if (point->getFrameNumber() <= mCurrentFrameNumber) {
1125 // Don't bother with a SyncPoint, since we've already latched the
1126 // relevant frame
1127 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -07001128 }
1129
Dan Stozacac35382016-01-27 12:21:06 -08001130 Mutex::Autolock lock(mLocalSyncPointMutex);
1131 mLocalSyncPoints.push_back(point);
1132 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -07001133}
1134
Mathias Agopian13127d82013-03-05 17:47:11 -08001135void Layer::setFiltering(bool filtering) {
1136 mFiltering = filtering;
1137}
1138
1139bool Layer::getFiltering() const {
1140 return mFiltering;
1141}
1142
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001143// As documented in libhardware header, formats in the range
1144// 0x100 - 0x1FF are specific to the HAL implementation, and
1145// are known to have no alpha channel
1146// TODO: move definition for device-specific range into
1147// hardware.h, instead of using hard-coded values here.
1148#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
1149
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001150bool Layer::getOpacityForFormat(uint32_t format) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001151 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
1152 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001153 }
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001154 switch (format) {
1155 case HAL_PIXEL_FORMAT_RGBA_8888:
1156 case HAL_PIXEL_FORMAT_BGRA_8888:
Mathias Agopiandd533712013-07-26 15:31:39 -07001157 return false;
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001158 }
1159 // in all other case, we have no blending (also for unknown formats)
Mathias Agopiandd533712013-07-26 15:31:39 -07001160 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001161}
1162
Mathias Agopian13127d82013-03-05 17:47:11 -08001163// ----------------------------------------------------------------------------
1164// local state
1165// ----------------------------------------------------------------------------
1166
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001167static void boundPoint(vec2* point, const Rect& crop) {
1168 if (point->x < crop.left) {
1169 point->x = crop.left;
1170 }
1171 if (point->x > crop.right) {
1172 point->x = crop.right;
1173 }
1174 if (point->y < crop.top) {
1175 point->y = crop.top;
1176 }
1177 if (point->y > crop.bottom) {
1178 point->y = crop.bottom;
1179 }
1180}
1181
Dan Stozac7014012014-02-14 15:03:43 -08001182void Layer::computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh,
1183 bool useIdentityTransform) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001184{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001185 const Layer::State& s(getDrawingState());
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001186 const Transform tr(hw->getTransform());
Mathias Agopian13127d82013-03-05 17:47:11 -08001187 const uint32_t hw_h = hw->getHeight();
1188 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -07001189 if (!s.crop.isEmpty()) {
1190 win.intersect(s.crop, &win);
Mathias Agopian13127d82013-03-05 17:47:11 -08001191 }
Mathias Agopian6c7f25a2013-05-09 20:37:10 -07001192 // subtract the transparent region and snap to the bounds
Mathias Agopianf3e85d42013-05-10 18:01:12 -07001193 win = reduce(win, s.activeTransparentRegion);
Mathias Agopian3f844832013-08-07 21:24:32 -07001194
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001195 vec2 lt = vec2(win.left, win.top);
1196 vec2 lb = vec2(win.left, win.bottom);
1197 vec2 rb = vec2(win.right, win.bottom);
1198 vec2 rt = vec2(win.right, win.top);
1199
1200 if (!useIdentityTransform) {
1201 lt = s.active.transform.transform(lt);
1202 lb = s.active.transform.transform(lb);
1203 rb = s.active.transform.transform(rb);
1204 rt = s.active.transform.transform(rt);
1205 }
1206
Robert Carrb5d3d262016-03-25 15:08:13 -07001207 if (!s.finalCrop.isEmpty()) {
1208 boundPoint(&lt, s.finalCrop);
1209 boundPoint(&lb, s.finalCrop);
1210 boundPoint(&rb, s.finalCrop);
1211 boundPoint(&rt, s.finalCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001212 }
1213
Mathias Agopianff2ed702013-09-01 21:36:12 -07001214 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>());
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001215 position[0] = tr.transform(lt);
1216 position[1] = tr.transform(lb);
1217 position[2] = tr.transform(rb);
1218 position[3] = tr.transform(rt);
Mathias Agopian3f844832013-08-07 21:24:32 -07001219 for (size_t i=0 ; i<4 ; i++) {
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001220 position[i].y = hw_h - position[i].y;
Mathias Agopian13127d82013-03-05 17:47:11 -08001221 }
1222}
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001223
Andy McFadden4125a4f2014-01-29 17:17:11 -08001224bool Layer::isOpaque(const Layer::State& s) const
Mathias Agopiana7f66922010-05-26 22:08:52 -07001225{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001226 // if we don't have a buffer yet, we're translucent regardless of the
1227 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001228 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001229 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001230 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001231
1232 // if the layer has the opaque flag, then we're always opaque,
1233 // otherwise we use the current buffer's format.
Andy McFadden4125a4f2014-01-29 17:17:11 -08001234 return ((s.flags & layer_state_t::eLayerOpaque) != 0) || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -07001235}
1236
Dan Stoza23116082015-06-18 14:58:39 -07001237bool Layer::isSecure() const
1238{
1239 const Layer::State& s(mDrawingState);
1240 return (s.flags & layer_state_t::eLayerSecure);
1241}
1242
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001243bool Layer::isProtected() const
1244{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001245 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001246 return (activeBuffer != 0) &&
1247 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
1248}
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001249
Mathias Agopian13127d82013-03-05 17:47:11 -08001250bool Layer::isFixedSize() const {
Robert Carrc3574f72016-03-24 12:19:32 -07001251 return getEffectiveScalingMode() != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian13127d82013-03-05 17:47:11 -08001252}
1253
1254bool Layer::isCropped() const {
1255 return !mCurrentCrop.isEmpty();
1256}
1257
1258bool Layer::needsFiltering(const sp<const DisplayDevice>& hw) const {
1259 return mNeedsFiltering || hw->needsFiltering();
1260}
1261
1262void Layer::setVisibleRegion(const Region& visibleRegion) {
1263 // always called from main thread
1264 this->visibleRegion = visibleRegion;
1265}
1266
1267void Layer::setCoveredRegion(const Region& coveredRegion) {
1268 // always called from main thread
1269 this->coveredRegion = coveredRegion;
1270}
1271
1272void Layer::setVisibleNonTransparentRegion(const Region&
1273 setVisibleNonTransparentRegion) {
1274 // always called from main thread
1275 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
1276}
1277
1278// ----------------------------------------------------------------------------
1279// transaction
1280// ----------------------------------------------------------------------------
1281
Dan Stoza7dde5992015-05-22 09:51:44 -07001282void Layer::pushPendingState() {
1283 if (!mCurrentState.modified) {
1284 return;
1285 }
1286
Dan Stoza7dde5992015-05-22 09:51:44 -07001287 // If this transaction is waiting on the receipt of a frame, generate a sync
1288 // point and send it to the remote layer.
1289 if (mCurrentState.handle != nullptr) {
1290 sp<Handle> handle = static_cast<Handle*>(mCurrentState.handle.get());
1291 sp<Layer> handleLayer = handle->owner.promote();
1292 if (handleLayer == nullptr) {
1293 ALOGE("[%s] Unable to promote Layer handle", mName.string());
1294 // If we can't promote the layer we are intended to wait on,
1295 // then it is expired or otherwise invalid. Allow this transaction
1296 // to be applied as per normal (no synchronization).
1297 mCurrentState.handle = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -08001298 } else {
1299 auto syncPoint = std::make_shared<SyncPoint>(
1300 mCurrentState.frameNumber);
Dan Stozacac35382016-01-27 12:21:06 -08001301 if (handleLayer->addSyncPoint(syncPoint)) {
1302 mRemoteSyncPoints.push_back(std::move(syncPoint));
1303 } else {
1304 // We already missed the frame we're supposed to synchronize
1305 // on, so go ahead and apply the state update
1306 mCurrentState.handle = nullptr;
1307 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001308 }
1309
Dan Stoza7dde5992015-05-22 09:51:44 -07001310 // Wake us up to check if the frame has been received
1311 setTransactionFlags(eTransactionNeeded);
1312 }
1313 mPendingStates.push_back(mCurrentState);
1314}
1315
Pablo Ceballos05289c22016-04-14 15:49:55 -07001316void Layer::popPendingState(State* stateToCommit) {
1317 auto oldFlags = stateToCommit->flags;
1318 *stateToCommit = mPendingStates[0];
1319 stateToCommit->flags = (oldFlags & ~stateToCommit->mask) |
1320 (stateToCommit->flags & stateToCommit->mask);
Dan Stoza7dde5992015-05-22 09:51:44 -07001321
1322 mPendingStates.removeAt(0);
1323}
1324
Pablo Ceballos05289c22016-04-14 15:49:55 -07001325bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001326 bool stateUpdateAvailable = false;
1327 while (!mPendingStates.empty()) {
1328 if (mPendingStates[0].handle != nullptr) {
1329 if (mRemoteSyncPoints.empty()) {
1330 // If we don't have a sync point for this, apply it anyway. It
1331 // will be visually wrong, but it should keep us from getting
1332 // into too much trouble.
1333 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -07001334 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001335 stateUpdateAvailable = true;
1336 continue;
1337 }
1338
Dan Stozacac35382016-01-27 12:21:06 -08001339 if (mRemoteSyncPoints.front()->getFrameNumber() !=
1340 mPendingStates[0].frameNumber) {
1341 ALOGE("[%s] Unexpected sync point frame number found",
1342 mName.string());
1343
1344 // Signal our end of the sync point and then dispose of it
1345 mRemoteSyncPoints.front()->setTransactionApplied();
1346 mRemoteSyncPoints.pop_front();
1347 continue;
1348 }
1349
Dan Stoza7dde5992015-05-22 09:51:44 -07001350 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
1351 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -07001352 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001353 stateUpdateAvailable = true;
1354
1355 // Signal our end of the sync point and then dispose of it
1356 mRemoteSyncPoints.front()->setTransactionApplied();
1357 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -08001358 } else {
1359 break;
Dan Stoza7dde5992015-05-22 09:51:44 -07001360 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001361 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001362 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001363 stateUpdateAvailable = true;
1364 }
1365 }
1366
1367 // If we still have pending updates, wake SurfaceFlinger back up and point
1368 // it at this layer so we can process them
1369 if (!mPendingStates.empty()) {
1370 setTransactionFlags(eTransactionNeeded);
1371 mFlinger->setTransactionFlags(eTraversalNeeded);
1372 }
1373
1374 mCurrentState.modified = false;
1375 return stateUpdateAvailable;
1376}
1377
1378void Layer::notifyAvailableFrames() {
Dan Stozacac35382016-01-27 12:21:06 -08001379 auto headFrameNumber = getHeadFrameNumber();
1380 Mutex::Autolock lock(mLocalSyncPointMutex);
1381 for (auto& point : mLocalSyncPoints) {
1382 if (headFrameNumber >= point->getFrameNumber()) {
1383 point->setFrameAvailable();
1384 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001385 }
1386}
1387
Mathias Agopian13127d82013-03-05 17:47:11 -08001388uint32_t Layer::doTransaction(uint32_t flags) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001389 ATRACE_CALL();
1390
Dan Stoza7dde5992015-05-22 09:51:44 -07001391 pushPendingState();
Pablo Ceballos05289c22016-04-14 15:49:55 -07001392 Layer::State c = getCurrentState();
1393 if (!applyPendingStates(&c)) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001394 return 0;
1395 }
1396
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001397 const Layer::State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001398
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001399 const bool sizeChanged = (c.requested.w != s.requested.w) ||
1400 (c.requested.h != s.requested.h);
Mathias Agopiana138f892010-05-21 17:24:35 -07001401
1402 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001403 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +00001404 ALOGD_IF(DEBUG_RESIZE,
Andy McFadden69052052012-09-14 16:10:11 -07001405 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001406 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001407 " requested={ wh={%4u,%4u} }}\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001408 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001409 " requested={ wh={%4u,%4u} }}\n",
Robert Carrc3574f72016-03-24 12:19:32 -07001410 this, getName().string(), mCurrentTransform,
1411 getEffectiveScalingMode(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001412 c.active.w, c.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001413 c.crop.left,
1414 c.crop.top,
1415 c.crop.right,
1416 c.crop.bottom,
1417 c.crop.getWidth(),
1418 c.crop.getHeight(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001419 c.requested.w, c.requested.h,
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001420 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001421 s.crop.left,
1422 s.crop.top,
1423 s.crop.right,
1424 s.crop.bottom,
1425 s.crop.getWidth(),
1426 s.crop.getHeight(),
1427 s.requested.w, s.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001428
Jamie Gennis2a0d5b62011-09-26 16:54:44 -07001429 // record the new size, form this point on, when the client request
1430 // a buffer, it'll get the new size.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001431 mSurfaceFlingerConsumer->setDefaultBufferSize(
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001432 c.requested.w, c.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001433 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001434
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001435 if (!isFixedSize()) {
1436
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001437 const bool resizePending = (c.requested.w != c.active.w) ||
1438 (c.requested.h != c.active.h);
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001439
Dan Stoza9e9b0442015-04-22 14:59:08 -07001440 if (resizePending && mSidebandStream == NULL) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001441 // don't let Layer::doTransaction update the drawing state
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001442 // if we have a pending resize, unless we are in fixed-size mode.
1443 // the drawing state will be updated only once we receive a buffer
1444 // with the correct size.
1445 //
1446 // in particular, we want to make sure the clip (which is part
1447 // of the geometry state) is latched together with the size but is
1448 // latched immediately when no resizing is involved.
Dan Stoza9e9b0442015-04-22 14:59:08 -07001449 //
1450 // If a sideband stream is attached, however, we want to skip this
1451 // optimization so that transactions aren't missed when a buffer
1452 // never arrives
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001453
1454 flags |= eDontUpdateGeometryState;
1455 }
1456 }
1457
Mathias Agopian13127d82013-03-05 17:47:11 -08001458 // always set active to requested, unless we're asked not to
1459 // this is used by Layer, which special cases resizes.
1460 if (flags & eDontUpdateGeometryState) {
1461 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001462 c.active = c.requested;
Mathias Agopian13127d82013-03-05 17:47:11 -08001463 }
1464
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001465 if (s.active != c.active) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001466 // invalidate and recompute the visible regions if needed
1467 flags |= Layer::eVisibleRegion;
1468 }
1469
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001470 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001471 // invalidate and recompute the visible regions if needed
1472 flags |= eVisibleRegion;
1473 this->contentDirty = true;
1474
1475 // we may use linear filtering, if the matrix scales us
Robert Carr3dcabfa2016-03-01 18:36:58 -08001476 const uint8_t type = c.active.transform.getType();
1477 mNeedsFiltering = (!c.active.transform.preserveRects() ||
Mathias Agopian13127d82013-03-05 17:47:11 -08001478 (type >= Transform::SCALE));
1479 }
1480
1481 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -07001482 commitTransaction(c);
Mathias Agopian13127d82013-03-05 17:47:11 -08001483 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001484}
1485
Pablo Ceballos05289c22016-04-14 15:49:55 -07001486void Layer::commitTransaction(const State& stateToCommit) {
1487 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001488}
1489
Mathias Agopian13127d82013-03-05 17:47:11 -08001490uint32_t Layer::getTransactionFlags(uint32_t flags) {
1491 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1492}
1493
1494uint32_t Layer::setTransactionFlags(uint32_t flags) {
1495 return android_atomic_or(flags, &mTransactionFlags);
1496}
1497
1498bool Layer::setPosition(float x, float y) {
Robert Carr3dcabfa2016-03-01 18:36:58 -08001499 if (mCurrentState.requested.transform.tx() == x && mCurrentState.requested.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -08001500 return false;
1501 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -07001502
1503 // We update the requested and active position simultaneously because
1504 // we want to apply the position portion of the transform matrix immediately,
1505 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Robert Carr3dcabfa2016-03-01 18:36:58 -08001506 mCurrentState.requested.transform.set(x, y);
Robert Carr69663fb2016-03-27 19:59:19 -07001507 mCurrentState.active.transform.set(x, y);
1508
Dan Stoza7dde5992015-05-22 09:51:44 -07001509 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001510 setTransactionFlags(eTransactionNeeded);
1511 return true;
1512}
1513bool Layer::setLayer(uint32_t z) {
1514 if (mCurrentState.z == z)
1515 return false;
1516 mCurrentState.sequence++;
1517 mCurrentState.z = z;
Dan Stoza7dde5992015-05-22 09:51:44 -07001518 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001519 setTransactionFlags(eTransactionNeeded);
1520 return true;
1521}
1522bool Layer::setSize(uint32_t w, uint32_t h) {
1523 if (mCurrentState.requested.w == w && mCurrentState.requested.h == h)
1524 return false;
1525 mCurrentState.requested.w = w;
1526 mCurrentState.requested.h = h;
Dan Stoza7dde5992015-05-22 09:51:44 -07001527 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001528 setTransactionFlags(eTransactionNeeded);
1529 return true;
1530}
Dan Stoza9e56aa02015-11-02 13:00:03 -08001531#ifdef USE_HWC2
1532bool Layer::setAlpha(float alpha) {
1533#else
Mathias Agopian13127d82013-03-05 17:47:11 -08001534bool Layer::setAlpha(uint8_t alpha) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001535#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08001536 if (mCurrentState.alpha == alpha)
1537 return false;
1538 mCurrentState.sequence++;
1539 mCurrentState.alpha = alpha;
Dan Stoza7dde5992015-05-22 09:51:44 -07001540 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001541 setTransactionFlags(eTransactionNeeded);
1542 return true;
1543}
1544bool Layer::setMatrix(const layer_state_t::matrix22_t& matrix) {
1545 mCurrentState.sequence++;
Robert Carr3dcabfa2016-03-01 18:36:58 -08001546 mCurrentState.requested.transform.set(
Mathias Agopian13127d82013-03-05 17:47:11 -08001547 matrix.dsdx, matrix.dsdy, matrix.dtdx, matrix.dtdy);
Dan Stoza7dde5992015-05-22 09:51:44 -07001548 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001549 setTransactionFlags(eTransactionNeeded);
1550 return true;
1551}
1552bool Layer::setTransparentRegionHint(const Region& transparent) {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001553 mCurrentState.requestedTransparentRegion = transparent;
Dan Stoza7dde5992015-05-22 09:51:44 -07001554 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001555 setTransactionFlags(eTransactionNeeded);
1556 return true;
1557}
1558bool Layer::setFlags(uint8_t flags, uint8_t mask) {
1559 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1560 if (mCurrentState.flags == newFlags)
1561 return false;
1562 mCurrentState.sequence++;
1563 mCurrentState.flags = newFlags;
Dan Stoza7dde5992015-05-22 09:51:44 -07001564 mCurrentState.mask = mask;
1565 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001566 setTransactionFlags(eTransactionNeeded);
1567 return true;
1568}
1569bool Layer::setCrop(const Rect& crop) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001570 if (mCurrentState.crop == crop)
Mathias Agopian13127d82013-03-05 17:47:11 -08001571 return false;
1572 mCurrentState.sequence++;
Robert Carrb5d3d262016-03-25 15:08:13 -07001573 mCurrentState.crop = crop;
Dan Stoza7dde5992015-05-22 09:51:44 -07001574 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001575 setTransactionFlags(eTransactionNeeded);
1576 return true;
1577}
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001578bool Layer::setFinalCrop(const Rect& crop) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001579 if (mCurrentState.finalCrop == crop)
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001580 return false;
1581 mCurrentState.sequence++;
Robert Carrb5d3d262016-03-25 15:08:13 -07001582 mCurrentState.finalCrop = crop;
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001583 mCurrentState.modified = true;
1584 setTransactionFlags(eTransactionNeeded);
1585 return true;
1586}
Mathias Agopian13127d82013-03-05 17:47:11 -08001587
Robert Carrc3574f72016-03-24 12:19:32 -07001588bool Layer::setOverrideScalingMode(int32_t scalingMode) {
1589 if (scalingMode == mOverrideScalingMode)
1590 return false;
1591 mOverrideScalingMode = scalingMode;
1592 return true;
1593}
1594
1595uint32_t Layer::getEffectiveScalingMode() const {
1596 if (mOverrideScalingMode >= 0) {
1597 return mOverrideScalingMode;
1598 }
1599 return mCurrentScalingMode;
1600}
1601
Mathias Agopian13127d82013-03-05 17:47:11 -08001602bool Layer::setLayerStack(uint32_t layerStack) {
1603 if (mCurrentState.layerStack == layerStack)
1604 return false;
1605 mCurrentState.sequence++;
1606 mCurrentState.layerStack = layerStack;
Dan Stoza7dde5992015-05-22 09:51:44 -07001607 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001608 setTransactionFlags(eTransactionNeeded);
1609 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001610}
1611
Dan Stoza7dde5992015-05-22 09:51:44 -07001612void Layer::deferTransactionUntil(const sp<IBinder>& handle,
1613 uint64_t frameNumber) {
1614 mCurrentState.handle = handle;
1615 mCurrentState.frameNumber = frameNumber;
1616 // We don't set eTransactionNeeded, because just receiving a deferral
1617 // request without any other state updates shouldn't actually induce a delay
1618 mCurrentState.modified = true;
1619 pushPendingState();
Dan Stoza792e5292016-02-11 11:43:58 -08001620 mCurrentState.handle = nullptr;
1621 mCurrentState.frameNumber = 0;
Dan Stoza7dde5992015-05-22 09:51:44 -07001622 mCurrentState.modified = false;
1623}
1624
Dan Stozaee44edd2015-03-23 15:50:23 -07001625void Layer::useSurfaceDamage() {
1626 if (mFlinger->mForceFullDamage) {
1627 surfaceDamageRegion = Region::INVALID_REGION;
1628 } else {
1629 surfaceDamageRegion = mSurfaceFlingerConsumer->getSurfaceDamage();
1630 }
1631}
1632
1633void Layer::useEmptyDamage() {
1634 surfaceDamageRegion.clear();
1635}
1636
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001637// ----------------------------------------------------------------------------
1638// pageflip handling...
1639// ----------------------------------------------------------------------------
1640
Dan Stoza6b9454d2014-11-07 16:00:59 -08001641bool Layer::shouldPresentNow(const DispSync& dispSync) const {
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001642 if (mSidebandStreamChanged || mAutoRefresh) {
Dan Stozad87defa2015-07-29 16:15:50 -07001643 return true;
1644 }
1645
Dan Stoza6b9454d2014-11-07 16:00:59 -08001646 Mutex::Autolock lock(mQueueItemLock);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001647 if (mQueueItems.empty()) {
1648 return false;
1649 }
1650 auto timestamp = mQueueItems[0].mTimestamp;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001651 nsecs_t expectedPresent =
1652 mSurfaceFlingerConsumer->computeExpectedPresent(dispSync);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001653
1654 // Ignore timestamps more than a second in the future
1655 bool isPlausible = timestamp < (expectedPresent + s2ns(1));
1656 ALOGW_IF(!isPlausible, "[%s] Timestamp %" PRId64 " seems implausible "
1657 "relative to expectedPresent %" PRId64, mName.string(), timestamp,
1658 expectedPresent);
1659
1660 bool isDue = timestamp < expectedPresent;
1661 return isDue || !isPlausible;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001662}
1663
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001664bool Layer::onPreComposition() {
1665 mRefreshPending = false;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001666 return mQueuedFrames > 0 || mSidebandStreamChanged || mAutoRefresh;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001667}
1668
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001669void Layer::onPostComposition() {
1670 if (mFrameLatencyNeeded) {
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001671 nsecs_t desiredPresentTime = mSurfaceFlingerConsumer->getTimestamp();
Jamie Gennis82dbc742012-11-08 19:23:28 -08001672 mFrameTracker.setDesiredPresentTime(desiredPresentTime);
1673
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001674 sp<Fence> frameReadyFence = mSurfaceFlingerConsumer->getCurrentFence();
Jamie Gennis789a6c32013-02-25 13:37:54 -08001675 if (frameReadyFence->isValid()) {
Jamie Gennis82dbc742012-11-08 19:23:28 -08001676 mFrameTracker.setFrameReadyFence(frameReadyFence);
1677 } else {
1678 // There was no fence for this frame, so assume that it was ready
1679 // to be presented at the desired present time.
1680 mFrameTracker.setFrameReadyTime(desiredPresentTime);
1681 }
1682
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001683 const HWComposer& hwc = mFlinger->getHwComposer();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001684#ifdef USE_HWC2
1685 sp<Fence> presentFence = hwc.getRetireFence(HWC_DISPLAY_PRIMARY);
1686#else
Jamie Gennis82dbc742012-11-08 19:23:28 -08001687 sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001688#endif
Jamie Gennis789a6c32013-02-25 13:37:54 -08001689 if (presentFence->isValid()) {
Jamie Gennis82dbc742012-11-08 19:23:28 -08001690 mFrameTracker.setActualPresentFence(presentFence);
1691 } else {
1692 // The HWC doesn't support present fences, so use the refresh
1693 // timestamp instead.
1694 nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
1695 mFrameTracker.setActualPresentTime(presentTime);
1696 }
1697
1698 mFrameTracker.advanceFrame();
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001699 mFrameLatencyNeeded = false;
1700 }
1701}
1702
Dan Stoza9e56aa02015-11-02 13:00:03 -08001703#ifdef USE_HWC2
1704void Layer::releasePendingBuffer() {
1705 mSurfaceFlingerConsumer->releasePendingBuffer();
1706}
1707#endif
1708
Mathias Agopianda27af92012-09-13 18:17:13 -07001709bool Layer::isVisible() const {
Mathias Agopian13127d82013-03-05 17:47:11 -08001710 const Layer::State& s(mDrawingState);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001711#ifdef USE_HWC2
1712 return !(s.flags & layer_state_t::eLayerHidden) && s.alpha > 0.0f
1713 && (mActiveBuffer != NULL || mSidebandStream != NULL);
1714#else
Mathias Agopian13127d82013-03-05 17:47:11 -08001715 return !(s.flags & layer_state_t::eLayerHidden) && s.alpha
Wonsik Kimafe30812014-03-31 23:16:08 +09001716 && (mActiveBuffer != NULL || mSidebandStream != NULL);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001717#endif
Mathias Agopianda27af92012-09-13 18:17:13 -07001718}
1719
Mathias Agopian4fec8732012-06-29 14:12:52 -07001720Region Layer::latchBuffer(bool& recomputeVisibleRegions)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001721{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001722 ATRACE_CALL();
1723
Jesse Hall399184a2014-03-03 15:42:54 -08001724 if (android_atomic_acquire_cas(true, false, &mSidebandStreamChanged) == 0) {
1725 // mSidebandStreamChanged was true
1726 mSidebandStream = mSurfaceFlingerConsumer->getSidebandStream();
Dan Stoza12e0a272015-05-05 14:00:52 -07001727 if (mSidebandStream != NULL) {
1728 setTransactionFlags(eTransactionNeeded);
1729 mFlinger->setTransactionFlags(eTraversalNeeded);
1730 }
Jesse Hall5bf786d2014-09-30 10:35:11 -07001731 recomputeVisibleRegions = true;
1732
1733 const State& s(getDrawingState());
Robert Carr3dcabfa2016-03-01 18:36:58 -08001734 return s.active.transform.transform(Region(Rect(s.active.w, s.active.h)));
Jesse Hall399184a2014-03-03 15:42:54 -08001735 }
1736
Mathias Agopian4fec8732012-06-29 14:12:52 -07001737 Region outDirtyRegion;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001738 if (mQueuedFrames > 0 || mAutoRefresh) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001739
1740 // if we've already called updateTexImage() without going through
1741 // a composition step, we have to skip this layer at this point
1742 // because we cannot call updateTeximage() without a corresponding
1743 // compositionComplete() call.
1744 // we'll trigger an update in onPreComposition().
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001745 if (mRefreshPending) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07001746 return outDirtyRegion;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001747 }
1748
Jamie Gennis351a5132011-09-14 18:23:37 -07001749 // Capture the old state of the layer for comparisons later
Andy McFadden4125a4f2014-01-29 17:17:11 -08001750 const State& s(getDrawingState());
1751 const bool oldOpacity = isOpaque(s);
Jamie Gennis351a5132011-09-14 18:23:37 -07001752 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001753
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001754 struct Reject : public SurfaceFlingerConsumer::BufferRejecter {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001755 Layer::State& front;
1756 Layer::State& current;
1757 bool& recomputeVisibleRegions;
Ruben Brunk1681d952014-06-27 15:51:55 -07001758 bool stickyTransformSet;
Robert Carrb5d3d262016-03-25 15:08:13 -07001759 const char* name;
Robert Carrc3574f72016-03-24 12:19:32 -07001760 int32_t overrideScalingMode;
Robert Carrb5d3d262016-03-25 15:08:13 -07001761
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001762 Reject(Layer::State& front, Layer::State& current,
Robert Carrb5d3d262016-03-25 15:08:13 -07001763 bool& recomputeVisibleRegions, bool stickySet,
Robert Carrc3574f72016-03-24 12:19:32 -07001764 const char* name,
1765 int32_t overrideScalingMode)
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001766 : front(front), current(current),
Ruben Brunk1681d952014-06-27 15:51:55 -07001767 recomputeVisibleRegions(recomputeVisibleRegions),
Robert Carrb5d3d262016-03-25 15:08:13 -07001768 stickyTransformSet(stickySet),
Robert Carrc3574f72016-03-24 12:19:32 -07001769 name(name),
1770 overrideScalingMode(overrideScalingMode) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001771 }
1772
1773 virtual bool reject(const sp<GraphicBuffer>& buf,
Dan Stoza11611f92015-03-12 15:12:44 -07001774 const BufferItem& item) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001775 if (buf == NULL) {
1776 return false;
1777 }
1778
1779 uint32_t bufWidth = buf->getWidth();
1780 uint32_t bufHeight = buf->getHeight();
1781
1782 // check that we received a buffer of the right size
1783 // (Take the buffer's orientation into account)
1784 if (item.mTransform & Transform::ROT_90) {
1785 swap(bufWidth, bufHeight);
1786 }
1787
Robert Carrc3574f72016-03-24 12:19:32 -07001788 int actualScalingMode = overrideScalingMode >= 0 ?
1789 overrideScalingMode : item.mScalingMode;
1790 bool isFixedSize = actualScalingMode != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001791 if (front.active != front.requested) {
1792
1793 if (isFixedSize ||
1794 (bufWidth == front.requested.w &&
1795 bufHeight == front.requested.h))
1796 {
1797 // Here we pretend the transaction happened by updating the
1798 // current and drawing states. Drawing state is only accessed
1799 // in this thread, no need to have it locked
1800 front.active = front.requested;
1801
1802 // We also need to update the current state so that
1803 // we don't end-up overwriting the drawing state with
1804 // this stale current state during the next transaction
1805 //
1806 // NOTE: We don't need to hold the transaction lock here
1807 // because State::active is only accessed from this thread.
1808 current.active = front.active;
1809
1810 // recompute visible region
1811 recomputeVisibleRegions = true;
1812 }
1813
1814 ALOGD_IF(DEBUG_RESIZE,
Robert Carrb5d3d262016-03-25 15:08:13 -07001815 "[%s] latchBuffer/reject: buffer (%ux%u, tr=%02x), scalingMode=%d\n"
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001816 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001817 " requested={ wh={%4u,%4u} }}\n",
1818 name,
Andy McFadden69052052012-09-14 16:10:11 -07001819 bufWidth, bufHeight, item.mTransform, item.mScalingMode,
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001820 front.active.w, front.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001821 front.crop.left,
1822 front.crop.top,
1823 front.crop.right,
1824 front.crop.bottom,
1825 front.crop.getWidth(),
1826 front.crop.getHeight(),
1827 front.requested.w, front.requested.h);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001828 }
1829
Ruben Brunk1681d952014-06-27 15:51:55 -07001830 if (!isFixedSize && !stickyTransformSet) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001831 if (front.active.w != bufWidth ||
1832 front.active.h != bufHeight) {
Mathias Agopian4824d402012-06-04 18:16:30 -07001833 // reject this buffer
Robert Carrb5d3d262016-03-25 15:08:13 -07001834 ALOGE("[%s] rejecting buffer: "
1835 "bufWidth=%d, bufHeight=%d, front.active.{w=%d, h=%d}",
1836 name, bufWidth, bufHeight, front.active.w, front.active.h);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001837 return true;
1838 }
1839 }
Mathias Agopian2ca79392013-04-02 18:30:32 -07001840
1841 // if the transparent region has changed (this test is
1842 // conservative, but that's fine, worst case we're doing
1843 // a bit of extra work), we latch the new one and we
1844 // trigger a visible-region recompute.
1845 if (!front.activeTransparentRegion.isTriviallyEqual(
1846 front.requestedTransparentRegion)) {
1847 front.activeTransparentRegion = front.requestedTransparentRegion;
Mathias Agopian6c67f0f2013-04-12 16:58:11 -07001848
1849 // We also need to update the current state so that
1850 // we don't end-up overwriting the drawing state with
1851 // this stale current state during the next transaction
1852 //
1853 // NOTE: We don't need to hold the transaction lock here
1854 // because State::active is only accessed from this thread.
1855 current.activeTransparentRegion = front.activeTransparentRegion;
1856
1857 // recompute visible region
Mathias Agopian2ca79392013-04-02 18:30:32 -07001858 recomputeVisibleRegions = true;
1859 }
1860
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001861 return false;
1862 }
1863 };
1864
Ruben Brunk1681d952014-06-27 15:51:55 -07001865 Reject r(mDrawingState, getCurrentState(), recomputeVisibleRegions,
Robert Carrc3574f72016-03-24 12:19:32 -07001866 getProducerStickyTransform() != 0, mName.string(),
1867 mOverrideScalingMode);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001868
Dan Stozacac35382016-01-27 12:21:06 -08001869
1870 // Check all of our local sync points to ensure that all transactions
1871 // which need to have been applied prior to the frame which is about to
1872 // be latched have signaled
1873
1874 auto headFrameNumber = getHeadFrameNumber();
1875 bool matchingFramesFound = false;
1876 bool allTransactionsApplied = true;
Dan Stozaa4650a52015-05-12 12:56:16 -07001877 {
Dan Stozacac35382016-01-27 12:21:06 -08001878 Mutex::Autolock lock(mLocalSyncPointMutex);
1879 for (auto& point : mLocalSyncPoints) {
1880 if (point->getFrameNumber() > headFrameNumber) {
1881 break;
1882 }
1883
1884 matchingFramesFound = true;
1885
1886 if (!point->frameIsAvailable()) {
1887 // We haven't notified the remote layer that the frame for
1888 // this point is available yet. Notify it now, and then
1889 // abort this attempt to latch.
1890 point->setFrameAvailable();
1891 allTransactionsApplied = false;
1892 break;
1893 }
1894
1895 allTransactionsApplied &= point->transactionIsApplied();
Dan Stoza7dde5992015-05-22 09:51:44 -07001896 }
1897 }
1898
Dan Stozacac35382016-01-27 12:21:06 -08001899 if (matchingFramesFound && !allTransactionsApplied) {
1900 mFlinger->signalLayerUpdate();
1901 return outDirtyRegion;
Dan Stozaa4650a52015-05-12 12:56:16 -07001902 }
1903
Pablo Ceballos06312182015-10-07 16:32:12 -07001904 // This boolean is used to make sure that SurfaceFlinger's shadow copy
1905 // of the buffer queue isn't modified when the buffer queue is returning
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001906 // BufferItem's that weren't actually queued. This can happen in shared
Pablo Ceballos06312182015-10-07 16:32:12 -07001907 // buffer mode.
1908 bool queuedBuffer = false;
Andy McFadden41d67d72014-04-25 16:58:34 -07001909 status_t updateResult = mSurfaceFlingerConsumer->updateTexImage(&r,
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001910 mFlinger->mPrimaryDispSync, &mAutoRefresh, &queuedBuffer,
Dan Stozacac35382016-01-27 12:21:06 -08001911 mLastFrameNumberReceived);
Andy McFadden1585c4d2013-06-28 13:52:40 -07001912 if (updateResult == BufferQueue::PRESENT_LATER) {
1913 // Producer doesn't want buffer to be displayed yet. Signal a
1914 // layer update so we check again at the next opportunity.
1915 mFlinger->signalLayerUpdate();
1916 return outDirtyRegion;
Dan Stozaecc50402015-04-28 14:42:06 -07001917 } else if (updateResult == SurfaceFlingerConsumer::BUFFER_REJECTED) {
1918 // If the buffer has been rejected, remove it from the shadow queue
1919 // and return early
Pablo Ceballos06312182015-10-07 16:32:12 -07001920 if (queuedBuffer) {
1921 Mutex::Autolock lock(mQueueItemLock);
1922 mQueueItems.removeAt(0);
1923 android_atomic_dec(&mQueuedFrames);
1924 }
Dan Stozaecc50402015-04-28 14:42:06 -07001925 return outDirtyRegion;
Dan Stoza65476f32015-05-14 09:27:25 -07001926 } else if (updateResult != NO_ERROR || mUpdateTexImageFailed) {
1927 // This can occur if something goes wrong when trying to create the
1928 // EGLImage for this buffer. If this happens, the buffer has already
1929 // been released, so we need to clean up the queue and bug out
1930 // early.
Pablo Ceballos06312182015-10-07 16:32:12 -07001931 if (queuedBuffer) {
Dan Stoza65476f32015-05-14 09:27:25 -07001932 Mutex::Autolock lock(mQueueItemLock);
1933 mQueueItems.clear();
1934 android_atomic_and(0, &mQueuedFrames);
1935 }
1936
1937 // Once we have hit this state, the shadow queue may no longer
1938 // correctly reflect the incoming BufferQueue's contents, so even if
1939 // updateTexImage starts working, the only safe course of action is
1940 // to continue to ignore updates.
1941 mUpdateTexImageFailed = true;
1942
1943 return outDirtyRegion;
Andy McFadden1585c4d2013-06-28 13:52:40 -07001944 }
1945
Pablo Ceballos06312182015-10-07 16:32:12 -07001946 if (queuedBuffer) {
1947 // Autolock scope
Dan Stozaecc50402015-04-28 14:42:06 -07001948 auto currentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
1949
Dan Stoza6b9454d2014-11-07 16:00:59 -08001950 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaecc50402015-04-28 14:42:06 -07001951
1952 // Remove any stale buffers that have been dropped during
1953 // updateTexImage
1954 while (mQueueItems[0].mFrameNumber != currentFrameNumber) {
1955 mQueueItems.removeAt(0);
1956 android_atomic_dec(&mQueuedFrames);
1957 }
1958
Dan Stoza6b9454d2014-11-07 16:00:59 -08001959 mQueueItems.removeAt(0);
1960 }
1961
Dan Stozaecc50402015-04-28 14:42:06 -07001962
Andy McFadden1585c4d2013-06-28 13:52:40 -07001963 // Decrement the queued-frames count. Signal another event if we
1964 // have more frames pending.
Pablo Ceballos06312182015-10-07 16:32:12 -07001965 if ((queuedBuffer && android_atomic_dec(&mQueuedFrames) > 1)
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001966 || mAutoRefresh) {
Andy McFadden1585c4d2013-06-28 13:52:40 -07001967 mFlinger->signalLayerUpdate();
1968 }
1969
1970 if (updateResult != NO_ERROR) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001971 // something happened!
1972 recomputeVisibleRegions = true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001973 return outDirtyRegion;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001974 }
Mathias Agopian96f08192010-06-02 23:28:45 -07001975
Jamie Gennis351a5132011-09-14 18:23:37 -07001976 // update the active buffer
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001977 mActiveBuffer = mSurfaceFlingerConsumer->getCurrentBuffer();
Mathias Agopiane31564d2012-05-29 20:41:03 -07001978 if (mActiveBuffer == NULL) {
1979 // this can only happen if the very first buffer was rejected.
Mathias Agopian4fec8732012-06-29 14:12:52 -07001980 return outDirtyRegion;
Mathias Agopiane31564d2012-05-29 20:41:03 -07001981 }
Mathias Agopianda9584d2010-12-13 18:51:59 -08001982
Mathias Agopian4824d402012-06-04 18:16:30 -07001983 mRefreshPending = true;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001984 mFrameLatencyNeeded = true;
Mathias Agopiane31564d2012-05-29 20:41:03 -07001985 if (oldActiveBuffer == NULL) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001986 // the first time we receive a buffer, we need to trigger a
1987 // geometry invalidation.
Andy McFaddenab10c582012-09-26 16:19:12 -07001988 recomputeVisibleRegions = true;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001989 }
1990
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001991 Rect crop(mSurfaceFlingerConsumer->getCurrentCrop());
1992 const uint32_t transform(mSurfaceFlingerConsumer->getCurrentTransform());
1993 const uint32_t scalingMode(mSurfaceFlingerConsumer->getCurrentScalingMode());
Mathias Agopian702634a2012-05-23 17:50:31 -07001994 if ((crop != mCurrentCrop) ||
1995 (transform != mCurrentTransform) ||
1996 (scalingMode != mCurrentScalingMode))
1997 {
1998 mCurrentCrop = crop;
1999 mCurrentTransform = transform;
2000 mCurrentScalingMode = scalingMode;
Andy McFaddenab10c582012-09-26 16:19:12 -07002001 recomputeVisibleRegions = true;
Mathias Agopian702634a2012-05-23 17:50:31 -07002002 }
2003
2004 if (oldActiveBuffer != NULL) {
Mathias Agopiane31564d2012-05-29 20:41:03 -07002005 uint32_t bufWidth = mActiveBuffer->getWidth();
2006 uint32_t bufHeight = mActiveBuffer->getHeight();
Mathias Agopian702634a2012-05-23 17:50:31 -07002007 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
2008 bufHeight != uint32_t(oldActiveBuffer->height)) {
Andy McFaddenab10c582012-09-26 16:19:12 -07002009 recomputeVisibleRegions = true;
Mathias Agopian702634a2012-05-23 17:50:31 -07002010 }
2011 }
2012
2013 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
Andy McFadden4125a4f2014-01-29 17:17:11 -08002014 if (oldOpacity != isOpaque(s)) {
Mathias Agopian702634a2012-05-23 17:50:31 -07002015 recomputeVisibleRegions = true;
2016 }
2017
Dan Stozacac35382016-01-27 12:21:06 -08002018 mCurrentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2019
2020 // Remove any sync points corresponding to the buffer which was just
2021 // latched
2022 {
2023 Mutex::Autolock lock(mLocalSyncPointMutex);
2024 auto point = mLocalSyncPoints.begin();
2025 while (point != mLocalSyncPoints.end()) {
2026 if (!(*point)->frameIsAvailable() ||
2027 !(*point)->transactionIsApplied()) {
2028 // This sync point must have been added since we started
2029 // latching. Don't drop it yet.
2030 ++point;
2031 continue;
2032 }
2033
2034 if ((*point)->getFrameNumber() <= mCurrentFrameNumber) {
2035 point = mLocalSyncPoints.erase(point);
2036 } else {
2037 ++point;
2038 }
2039 }
2040 }
2041
Mathias Agopian4fec8732012-06-29 14:12:52 -07002042 // FIXME: postedRegion should be dirty & bounds
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002043 Region dirtyRegion(Rect(s.active.w, s.active.h));
Mathias Agopian4fec8732012-06-29 14:12:52 -07002044
2045 // transform the dirty region to window-manager space
Robert Carr3dcabfa2016-03-01 18:36:58 -08002046 outDirtyRegion = (s.active.transform.transform(dirtyRegion));
Mathias Agopiancaa600c2009-09-16 18:27:24 -07002047 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002048 return outDirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002049}
2050
Mathias Agopiana67932f2011-04-20 14:20:59 -07002051uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002052{
Mathias Agopiana67932f2011-04-20 14:20:59 -07002053 // TODO: should we do something special if mSecure is set?
2054 if (mProtectedByApp) {
2055 // need a hardware-protected path to external video sink
2056 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07002057 }
Riley Andrews03414a12014-07-01 14:22:59 -07002058 if (mPotentialCursor) {
2059 usage |= GraphicBuffer::USAGE_CURSOR;
2060 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07002061 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07002062 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07002063}
2064
Mathias Agopian84300952012-11-21 16:02:13 -08002065void Layer::updateTransformHint(const sp<const DisplayDevice>& hw) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07002066 uint32_t orientation = 0;
2067 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08002068 // The transform hint is used to improve performance, but we can
2069 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07002070 // apply to all displays.
Mathias Agopian42977342012-08-05 00:40:46 -07002071 const Transform& planeTransform(hw->getTransform());
Mathias Agopian4fec8732012-06-29 14:12:52 -07002072 orientation = planeTransform.getOrientation();
Mathias Agopiana4583642011-08-23 18:03:18 -07002073 if (orientation & Transform::ROT_INVALID) {
2074 orientation = 0;
2075 }
2076 }
Andy McFaddenbf974ab2012-12-04 16:51:15 -08002077 mSurfaceFlingerConsumer->setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07002078}
2079
Mathias Agopian13127d82013-03-05 17:47:11 -08002080// ----------------------------------------------------------------------------
2081// debugging
2082// ----------------------------------------------------------------------------
2083
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002084void Layer::dump(String8& result, Colorizer& colorizer) const
Mathias Agopian13127d82013-03-05 17:47:11 -08002085{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002086 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08002087
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002088 colorizer.colorize(result, Colorizer::GREEN);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002089 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002090 "+ %s %p (%s)\n",
2091 getTypeId(), this, getName().string());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002092 colorizer.reset(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002093
Mathias Agopian2ca79392013-04-02 18:30:32 -07002094 s.activeTransparentRegion.dump(result, "transparentRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002095 visibleRegion.dump(result, "visibleRegion");
Dan Stozaee44edd2015-03-23 15:50:23 -07002096 surfaceDamageRegion.dump(result, "surfaceDamageRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002097 sp<Client> client(mClientRef.promote());
2098
Mathias Agopian74d211a2013-04-22 16:55:35 +02002099 result.appendFormat( " "
Pablo Ceballosacbe6782016-03-04 17:54:21 +00002100 "layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), "
2101 "crop=(%4d,%4d,%4d,%4d), finalCrop=(%4d,%4d,%4d,%4d), "
Mathias Agopian13127d82013-03-05 17:47:11 -08002102 "isOpaque=%1d, invalidate=%1d, "
Dan Stoza9e56aa02015-11-02 13:00:03 -08002103#ifdef USE_HWC2
2104 "alpha=%.3f, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
2105#else
Mathias Agopian13127d82013-03-05 17:47:11 -08002106 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
Dan Stoza9e56aa02015-11-02 13:00:03 -08002107#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08002108 " client=%p\n",
Robert Carr3dcabfa2016-03-01 18:36:58 -08002109 s.layerStack, s.z, s.active.transform.tx(), s.active.transform.ty(), s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07002110 s.crop.left, s.crop.top,
2111 s.crop.right, s.crop.bottom,
2112 s.finalCrop.left, s.finalCrop.top,
2113 s.finalCrop.right, s.finalCrop.bottom,
Andy McFadden4125a4f2014-01-29 17:17:11 -08002114 isOpaque(s), contentDirty,
Mathias Agopian13127d82013-03-05 17:47:11 -08002115 s.alpha, s.flags,
Robert Carr3dcabfa2016-03-01 18:36:58 -08002116 s.active.transform[0][0], s.active.transform[0][1],
2117 s.active.transform[1][0], s.active.transform[1][1],
Mathias Agopian13127d82013-03-05 17:47:11 -08002118 client.get());
Mathias Agopian13127d82013-03-05 17:47:11 -08002119
2120 sp<const GraphicBuffer> buf0(mActiveBuffer);
2121 uint32_t w0=0, h0=0, s0=0, f0=0;
2122 if (buf0 != 0) {
2123 w0 = buf0->getWidth();
2124 h0 = buf0->getHeight();
2125 s0 = buf0->getStride();
2126 f0 = buf0->format;
2127 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02002128 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002129 " "
2130 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
2131 " queued-frames=%d, mRefreshPending=%d\n",
2132 mFormat, w0, h0, s0,f0,
2133 mQueuedFrames, mRefreshPending);
2134
Mathias Agopian13127d82013-03-05 17:47:11 -08002135 if (mSurfaceFlingerConsumer != 0) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002136 mSurfaceFlingerConsumer->dump(result, " ");
Mathias Agopian13127d82013-03-05 17:47:11 -08002137 }
2138}
2139
Svetoslavd85084b2014-03-20 10:28:31 -07002140void Layer::dumpFrameStats(String8& result) const {
2141 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002142}
2143
Svetoslavd85084b2014-03-20 10:28:31 -07002144void Layer::clearFrameStats() {
2145 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08002146}
2147
Jamie Gennis6547ff42013-07-16 20:12:42 -07002148void Layer::logFrameStats() {
2149 mFrameTracker.logAndResetStats(mName);
2150}
2151
Svetoslavd85084b2014-03-20 10:28:31 -07002152void Layer::getFrameStats(FrameStats* outStats) const {
2153 mFrameTracker.getStats(outStats);
2154}
2155
Pablo Ceballos40845df2016-01-25 17:41:15 -08002156void Layer::getFenceData(String8* outName, uint64_t* outFrameNumber,
2157 bool* outIsGlesComposition, nsecs_t* outPostedTime,
2158 sp<Fence>* outAcquireFence, sp<Fence>* outPrevReleaseFence) const {
2159 *outName = mName;
2160 *outFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2161
2162#ifdef USE_HWC2
2163 *outIsGlesComposition = mHwcLayers.count(HWC_DISPLAY_PRIMARY) ?
2164 mHwcLayers.at(HWC_DISPLAY_PRIMARY).compositionType ==
2165 HWC2::Composition::Client : true;
2166#else
2167 *outIsGlesComposition = mIsGlesComposition;
2168#endif
2169 *outPostedTime = mSurfaceFlingerConsumer->getTimestamp();
2170 *outAcquireFence = mSurfaceFlingerConsumer->getCurrentFence();
2171 *outPrevReleaseFence = mSurfaceFlingerConsumer->getPrevReleaseFence();
2172}
Mathias Agopian13127d82013-03-05 17:47:11 -08002173// ---------------------------------------------------------------------------
2174
2175Layer::LayerCleaner::LayerCleaner(const sp<SurfaceFlinger>& flinger,
2176 const sp<Layer>& layer)
2177 : mFlinger(flinger), mLayer(layer) {
2178}
2179
2180Layer::LayerCleaner::~LayerCleaner() {
2181 // destroy client resources
2182 mFlinger->onLayerDestroyed(mLayer);
2183}
2184
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002185// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002186}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002187
2188#if defined(__gl_h_)
2189#error "don't include gl/gl.h in this file"
2190#endif
2191
2192#if defined(__gl2_h_)
2193#error "don't include gl2/gl2.h in this file"
2194#endif