blob: 96252f3ef1ac3f9dd838a738b40500ed0aacb3c4 [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 }
Dan Stozac8145172016-04-28 16:29:06 -0700181 for (auto& point : mLocalSyncPoints) {
182 point->setFrameAvailable();
183 }
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700184 mFlinger->deleteTextureAsync(mTextureName);
Jamie Gennis6547ff42013-07-16 20:12:42 -0700185 mFrameTracker.logAndResetStats(mName);
Mathias Agopian96f08192010-06-02 23:28:45 -0700186}
187
Mathias Agopian13127d82013-03-05 17:47:11 -0800188// ---------------------------------------------------------------------------
189// callbacks
190// ---------------------------------------------------------------------------
191
Dan Stoza9e56aa02015-11-02 13:00:03 -0800192#ifdef USE_HWC2
193void Layer::onLayerDisplayed(const sp<Fence>& releaseFence) {
194 if (mHwcLayers.empty()) {
195 return;
196 }
197 mSurfaceFlingerConsumer->setReleaseFence(releaseFence);
198}
199#else
Dan Stozac7014012014-02-14 15:03:43 -0800200void Layer::onLayerDisplayed(const sp<const DisplayDevice>& /* hw */,
Mathias Agopian13127d82013-03-05 17:47:11 -0800201 HWComposer::HWCLayerInterface* layer) {
202 if (layer) {
203 layer->onDisplayed();
Jesse Hall13f01cb2013-03-20 11:37:21 -0700204 mSurfaceFlingerConsumer->setReleaseFence(layer->getAndResetReleaseFence());
Mathias Agopian13127d82013-03-05 17:47:11 -0800205 }
206}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800207#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800208
Dan Stoza6b9454d2014-11-07 16:00:59 -0800209void Layer::onFrameAvailable(const BufferItem& item) {
210 // Add this buffer from our internal queue tracker
211 { // Autolock scope
212 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaa4650a52015-05-12 12:56:16 -0700213
214 // Reset the frame number tracker when we receive the first buffer after
215 // a frame number reset
216 if (item.mFrameNumber == 1) {
217 mLastFrameNumberReceived = 0;
218 }
219
220 // Ensure that callbacks are handled in order
221 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
222 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
223 ms2ns(500));
224 if (result != NO_ERROR) {
225 ALOGE("[%s] Timed out waiting on callback", mName.string());
226 }
227 }
228
Dan Stoza6b9454d2014-11-07 16:00:59 -0800229 mQueueItems.push_back(item);
Dan Stozaecc50402015-04-28 14:42:06 -0700230 android_atomic_inc(&mQueuedFrames);
Dan Stozaa4650a52015-05-12 12:56:16 -0700231
232 // Wake up any pending callbacks
233 mLastFrameNumberReceived = item.mFrameNumber;
234 mQueueItemCondition.broadcast();
Dan Stoza6b9454d2014-11-07 16:00:59 -0800235 }
236
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800237 mFlinger->signalLayerUpdate();
Mathias Agopian579b3f82010-06-08 19:54:15 -0700238}
239
Dan Stoza6b9454d2014-11-07 16:00:59 -0800240void Layer::onFrameReplaced(const BufferItem& item) {
Dan Stoza7dde5992015-05-22 09:51:44 -0700241 { // Autolock scope
242 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaa4650a52015-05-12 12:56:16 -0700243
Dan Stoza7dde5992015-05-22 09:51:44 -0700244 // Ensure that callbacks are handled in order
245 while (item.mFrameNumber != mLastFrameNumberReceived + 1) {
246 status_t result = mQueueItemCondition.waitRelative(mQueueItemLock,
247 ms2ns(500));
248 if (result != NO_ERROR) {
249 ALOGE("[%s] Timed out waiting on callback", mName.string());
250 }
Dan Stozaa4650a52015-05-12 12:56:16 -0700251 }
Dan Stoza7dde5992015-05-22 09:51:44 -0700252
253 if (mQueueItems.empty()) {
254 ALOGE("Can't replace a frame on an empty queue");
255 return;
256 }
Pablo Ceballos4d85da42016-04-19 20:11:56 -0700257 mQueueItems.editItemAt(mQueueItems.size() - 1) = item;
Dan Stoza7dde5992015-05-22 09:51:44 -0700258
259 // Wake up any pending callbacks
260 mLastFrameNumberReceived = item.mFrameNumber;
261 mQueueItemCondition.broadcast();
Dan Stozaa4650a52015-05-12 12:56:16 -0700262 }
Dan Stoza6b9454d2014-11-07 16:00:59 -0800263}
264
Jesse Hall399184a2014-03-03 15:42:54 -0800265void Layer::onSidebandStreamChanged() {
266 if (android_atomic_release_cas(false, true, &mSidebandStreamChanged) == 0) {
267 // mSidebandStreamChanged was false
268 mFlinger->signalLayerUpdate();
269 }
270}
271
Mathias Agopian67106042013-03-14 19:18:13 -0700272// called with SurfaceFlinger::mStateLock from the drawing thread after
273// the layer has been remove from the current state list (and just before
274// it's removed from the drawing state list)
Mathias Agopian13127d82013-03-05 17:47:11 -0800275void Layer::onRemoved() {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800276 mSurfaceFlingerConsumer->abandon();
Mathias Agopian48d819a2009-09-10 19:41:18 -0700277}
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700278
Mathias Agopian13127d82013-03-05 17:47:11 -0800279// ---------------------------------------------------------------------------
280// set-up
281// ---------------------------------------------------------------------------
282
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700283const String8& Layer::getName() const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800284 return mName;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800285}
286
Mathias Agopianf9d93272009-06-19 17:00:27 -0700287status_t Layer::setBuffers( uint32_t w, uint32_t h,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800288 PixelFormat format, uint32_t flags)
289{
Mathias Agopianca99fb82010-04-14 16:43:44 -0700290 uint32_t const maxSurfaceDims = min(
Mathias Agopiana4912602012-07-12 14:25:33 -0700291 mFlinger->getMaxTextureSize(), mFlinger->getMaxViewportDims());
Mathias Agopianca99fb82010-04-14 16:43:44 -0700292
293 // never allow a surface larger than what our underlying GL implementation
294 // can handle.
295 if ((uint32_t(w)>maxSurfaceDims) || (uint32_t(h)>maxSurfaceDims)) {
Mathias Agopianff615cc2012-02-24 14:58:36 -0800296 ALOGE("dimensions too large %u x %u", uint32_t(w), uint32_t(h));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700297 return BAD_VALUE;
298 }
299
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700300 mFormat = format;
Mathias Agopianeff062c2010-08-25 14:59:15 -0700301
Riley Andrews03414a12014-07-01 14:22:59 -0700302 mPotentialCursor = (flags & ISurfaceComposerClient::eCursorWindow) ? true : false;
Mathias Agopian3165cc22012-08-08 19:42:09 -0700303 mProtectedByApp = (flags & ISurfaceComposerClient::eProtectedByApp) ? true : false;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700304 mCurrentOpacity = getOpacityForFormat(format);
305
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800306 mSurfaceFlingerConsumer->setDefaultBufferSize(w, h);
307 mSurfaceFlingerConsumer->setDefaultBufferFormat(format);
308 mSurfaceFlingerConsumer->setConsumerUsageBits(getEffectiveUsage(0));
Mathias Agopianca99fb82010-04-14 16:43:44 -0700309
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800310 return NO_ERROR;
311}
312
Dan Stoza7dde5992015-05-22 09:51:44 -0700313/*
314 * The layer handle is just a BBinder object passed to the client
315 * (remote process) -- we don't keep any reference on our side such that
316 * the dtor is called when the remote side let go of its reference.
317 *
318 * LayerCleaner ensures that mFlinger->onLayerDestroyed() is called for
319 * this layer when the handle is destroyed.
320 */
321class Layer::Handle : public BBinder, public LayerCleaner {
322 public:
323 Handle(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer)
324 : LayerCleaner(flinger, layer), owner(layer) {}
325
326 wp<Layer> owner;
327};
328
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700329sp<IBinder> Layer::getHandle() {
Mathias Agopian13127d82013-03-05 17:47:11 -0800330 Mutex::Autolock _l(mLock);
331
332 LOG_ALWAYS_FATAL_IF(mHasSurface,
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700333 "Layer::getHandle() has already been called");
Mathias Agopian13127d82013-03-05 17:47:11 -0800334
335 mHasSurface = true;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700336
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700337 return new Handle(mFlinger, this);
Mathias Agopian13127d82013-03-05 17:47:11 -0800338}
339
Dan Stozab9b08832014-03-13 11:55:57 -0700340sp<IGraphicBufferProducer> Layer::getProducer() const {
341 return mProducer;
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700342}
343
Mathias Agopian13127d82013-03-05 17:47:11 -0800344// ---------------------------------------------------------------------------
345// h/w composer set-up
346// ---------------------------------------------------------------------------
347
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800348Rect Layer::getContentCrop() const {
349 // this is the crop rectangle that applies to the buffer
350 // itself (as opposed to the window)
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700351 Rect crop;
352 if (!mCurrentCrop.isEmpty()) {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800353 // if the buffer crop is defined, we use that
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700354 crop = mCurrentCrop;
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800355 } else if (mActiveBuffer != NULL) {
356 // otherwise we use the whole buffer
357 crop = mActiveBuffer->getBounds();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700358 } else {
Mathias Agopiana8bca8d2013-02-27 22:03:19 -0800359 // if we don't have a buffer yet, we use an empty/invalid crop
Mathias Agopian4fec8732012-06-29 14:12:52 -0700360 crop.makeInvalid();
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700361 }
Jamie Gennisf15a83f2012-05-10 20:43:55 -0700362 return crop;
363}
364
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700365static Rect reduce(const Rect& win, const Region& exclude) {
366 if (CC_LIKELY(exclude.isEmpty())) {
367 return win;
368 }
369 if (exclude.isRect()) {
370 return win.reduce(exclude.getBounds());
371 }
372 return Region(win).subtract(exclude).getBounds();
373}
374
Mathias Agopian13127d82013-03-05 17:47:11 -0800375Rect Layer::computeBounds() const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700376 const Layer::State& s(getDrawingState());
Michael Lentine6c925ed2014-09-26 17:55:01 -0700377 return computeBounds(s.activeTransparentRegion);
378}
379
380Rect Layer::computeBounds(const Region& activeTransparentRegion) const {
381 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800382 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700383
384 if (!s.crop.isEmpty()) {
385 win.intersect(s.crop, &win);
Mathias Agopian13127d82013-03-05 17:47:11 -0800386 }
Mathias Agopian6c7f25a2013-05-09 20:37:10 -0700387 // subtract the transparent region and snap to the bounds
Michael Lentine6c925ed2014-09-26 17:55:01 -0700388 return reduce(win, activeTransparentRegion);
Mathias Agopian13127d82013-03-05 17:47:11 -0800389}
390
Mathias Agopian6b442672013-07-09 21:24:52 -0700391FloatRect Layer::computeCrop(const sp<const DisplayDevice>& hw) const {
Mathias Agopian13127d82013-03-05 17:47:11 -0800392 // the content crop is the area of the content that gets scaled to the
393 // layer's size.
Mathias Agopian6b442672013-07-09 21:24:52 -0700394 FloatRect crop(getContentCrop());
Mathias Agopian13127d82013-03-05 17:47:11 -0800395
Robert Carrb5d3d262016-03-25 15:08:13 -0700396 // the crop is the area of the window that gets cropped, but not
Mathias Agopian13127d82013-03-05 17:47:11 -0800397 // scaled in any ways.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700398 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -0800399
400 // apply the projection's clipping to the window crop in
401 // layerstack space, and convert-back to layer space.
Mathias Agopian6b442672013-07-09 21:24:52 -0700402 // if there are no window scaling involved, this operation will map to full
403 // pixels in the buffer.
404 // FIXME: the 3 lines below can produce slightly incorrect clipping when we have
405 // a viewport clipping and a window transform. we should use floating point to fix this.
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700406
407 Rect activeCrop(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700408 if (!s.crop.isEmpty()) {
409 activeCrop = s.crop;
Mathias Agopian0e8f1442013-08-20 21:41:07 -0700410 }
411
Robert Carr3dcabfa2016-03-01 18:36:58 -0800412 activeCrop = s.active.transform.transform(activeCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000413 if (!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
414 activeCrop.clear();
415 }
Robert Carrb5d3d262016-03-25 15:08:13 -0700416 if (!s.finalCrop.isEmpty()) {
417 if(!activeCrop.intersect(s.finalCrop, &activeCrop)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000418 activeCrop.clear();
419 }
420 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800421 activeCrop = s.active.transform.inverse().transform(activeCrop);
Mathias Agopian13127d82013-03-05 17:47:11 -0800422
Michael Lentine28ea2172014-11-19 18:32:37 -0800423 // This needs to be here as transform.transform(Rect) computes the
424 // transformed rect and then takes the bounding box of the result before
425 // returning. This means
426 // transform.inverse().transform(transform.transform(Rect)) != Rect
427 // in which case we need to make sure the final rect is clipped to the
428 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000429 if (!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
430 activeCrop.clear();
431 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800432
Mathias Agopianf3e85d42013-05-10 18:01:12 -0700433 // subtract the transparent region and snap to the bounds
434 activeCrop = reduce(activeCrop, s.activeTransparentRegion);
435
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000436 // Transform the window crop to match the buffer coordinate system,
437 // which means using the inverse of the current transform set on the
438 // SurfaceFlingerConsumer.
439 uint32_t invTransform = mCurrentTransform;
440 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
441 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700442 * the code below applies the primary display's inverse transform to the
443 * buffer
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000444 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700445 uint32_t invTransformOrient =
446 DisplayDevice::getPrimaryDisplayOrientationTransform();
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000447 // calculate the inverse transform
448 if (invTransformOrient & NATIVE_WINDOW_TRANSFORM_ROT_90) {
449 invTransformOrient ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
450 NATIVE_WINDOW_TRANSFORM_FLIP_H;
451 // If the transform has been rotated the axis of flip has been swapped
452 // so we need to swap which flip operations we are performing
Michael Lentine7b902582014-08-19 18:14:06 -0700453 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
454 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000455 if (is_h_flipped != is_v_flipped) {
Michael Lentine7b902582014-08-19 18:14:06 -0700456 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
457 NATIVE_WINDOW_TRANSFORM_FLIP_H;
458 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800459 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000460 // and apply to the current transform
461 invTransform = (Transform(invTransform) * Transform(invTransformOrient)).getOrientation();
Mathias Agopian13127d82013-03-05 17:47:11 -0800462 }
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000463
464 int winWidth = s.active.w;
465 int winHeight = s.active.h;
466 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
467 // If the activeCrop has been rotate the ends are rotated but not
468 // the space itself so when transforming ends back we can't rely on
469 // a modification of the axes of rotation. To account for this we
470 // need to reorient the inverse rotation in terms of the current
471 // axes of rotation.
472 bool is_h_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
473 bool is_v_flipped = (invTransform & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
474 if (is_h_flipped == is_v_flipped) {
475 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
476 NATIVE_WINDOW_TRANSFORM_FLIP_H;
477 }
478 winWidth = s.active.h;
479 winHeight = s.active.w;
480 }
481 const Rect winCrop = activeCrop.transform(
482 invTransform, s.active.w, s.active.h);
483
484 // below, crop is intersected with winCrop expressed in crop's coordinate space
485 float xScale = crop.getWidth() / float(winWidth);
486 float yScale = crop.getHeight() / float(winHeight);
487
488 float insetL = winCrop.left * xScale;
489 float insetT = winCrop.top * yScale;
490 float insetR = (winWidth - winCrop.right ) * xScale;
491 float insetB = (winHeight - winCrop.bottom) * yScale;
492
493 crop.left += insetL;
494 crop.top += insetT;
495 crop.right -= insetR;
496 crop.bottom -= insetB;
497
Mathias Agopian13127d82013-03-05 17:47:11 -0800498 return crop;
499}
500
Dan Stoza9e56aa02015-11-02 13:00:03 -0800501#ifdef USE_HWC2
502void Layer::setGeometry(const sp<const DisplayDevice>& displayDevice)
503#else
Mathias Agopian4fec8732012-06-29 14:12:52 -0700504void Layer::setGeometry(
Mathias Agopian42977342012-08-05 00:40:46 -0700505 const sp<const DisplayDevice>& hw,
Mathias Agopian4fec8732012-06-29 14:12:52 -0700506 HWComposer::HWCLayerInterface& layer)
Dan Stoza9e56aa02015-11-02 13:00:03 -0800507#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700508{
Dan Stoza9e56aa02015-11-02 13:00:03 -0800509#ifdef USE_HWC2
510 const auto hwcId = displayDevice->getHwcDisplayId();
511 auto& hwcInfo = mHwcLayers[hwcId];
512#else
Mathias Agopian13127d82013-03-05 17:47:11 -0800513 layer.setDefaultState();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800514#endif
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700515
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700516 // enable this layer
Dan Stoza9e56aa02015-11-02 13:00:03 -0800517#ifdef USE_HWC2
518 hwcInfo.forceClientComposition = false;
519
520 if (isSecure() && !displayDevice->isSecure()) {
521 hwcInfo.forceClientComposition = true;
522 }
523
524 auto& hwcLayer = hwcInfo.layer;
525#else
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700526 layer.setSkip(false);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700527
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700528 if (isSecure() && !hw->isSecure()) {
529 layer.setSkip(true);
530 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800531#endif
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700532
Mathias Agopian13127d82013-03-05 17:47:11 -0800533 // this gives us only the "orientation" component of the transform
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700534 const State& s(getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800535#ifdef USE_HWC2
536 if (!isOpaque(s) || s.alpha != 1.0f) {
537 auto blendMode = mPremultipliedAlpha ?
538 HWC2::BlendMode::Premultiplied : HWC2::BlendMode::Coverage;
539 auto error = hwcLayer->setBlendMode(blendMode);
540 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set blend mode %s:"
541 " %s (%d)", mName.string(), to_string(blendMode).c_str(),
542 to_string(error).c_str(), static_cast<int32_t>(error));
543 }
544#else
Andy McFadden4125a4f2014-01-29 17:17:11 -0800545 if (!isOpaque(s) || s.alpha != 0xFF) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800546 layer.setBlending(mPremultipliedAlpha ?
547 HWC_BLENDING_PREMULT :
548 HWC_BLENDING_COVERAGE);
549 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800550#endif
Mathias Agopian13127d82013-03-05 17:47:11 -0800551
552 // apply the layer's transform, followed by the display's global transform
553 // here we're guaranteed that the layer's transform preserves rects
Michael Lentine6c925ed2014-09-26 17:55:01 -0700554 Region activeTransparentRegion(s.activeTransparentRegion);
Robert Carrb5d3d262016-03-25 15:08:13 -0700555 if (!s.crop.isEmpty()) {
556 Rect activeCrop(s.crop);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800557 activeCrop = s.active.transform.transform(activeCrop);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800558#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000559 if(!activeCrop.intersect(displayDevice->getViewport(), &activeCrop)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800560#else
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000561 if(!activeCrop.intersect(hw->getViewport(), &activeCrop)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800562#endif
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000563 activeCrop.clear();
564 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800565 activeCrop = s.active.transform.inverse().transform(activeCrop);
Michael Lentine28ea2172014-11-19 18:32:37 -0800566 // This needs to be here as transform.transform(Rect) computes the
567 // transformed rect and then takes the bounding box of the result before
568 // returning. This means
569 // transform.inverse().transform(transform.transform(Rect)) != Rect
570 // in which case we need to make sure the final rect is clipped to the
571 // display bounds.
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000572 if(!activeCrop.intersect(Rect(s.active.w, s.active.h), &activeCrop)) {
573 activeCrop.clear();
574 }
Michael Lentine6c925ed2014-09-26 17:55:01 -0700575 // mark regions outside the crop as transparent
576 activeTransparentRegion.orSelf(Rect(0, 0, s.active.w, activeCrop.top));
577 activeTransparentRegion.orSelf(Rect(0, activeCrop.bottom,
578 s.active.w, s.active.h));
579 activeTransparentRegion.orSelf(Rect(0, activeCrop.top,
580 activeCrop.left, activeCrop.bottom));
581 activeTransparentRegion.orSelf(Rect(activeCrop.right, activeCrop.top,
582 s.active.w, activeCrop.bottom));
583 }
Robert Carr3dcabfa2016-03-01 18:36:58 -0800584 Rect frame(s.active.transform.transform(computeBounds(activeTransparentRegion)));
Robert Carrb5d3d262016-03-25 15:08:13 -0700585 if (!s.finalCrop.isEmpty()) {
586 if(!frame.intersect(s.finalCrop, &frame)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000587 frame.clear();
588 }
589 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800590#ifdef USE_HWC2
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000591 if (!frame.intersect(displayDevice->getViewport(), &frame)) {
592 frame.clear();
593 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800594 const Transform& tr(displayDevice->getTransform());
595 Rect transformedFrame = tr.transform(frame);
596 auto error = hwcLayer->setDisplayFrame(transformedFrame);
597 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set display frame "
598 "[%d, %d, %d, %d]: %s (%d)", mName.string(), transformedFrame.left,
599 transformedFrame.top, transformedFrame.right,
600 transformedFrame.bottom, to_string(error).c_str(),
601 static_cast<int32_t>(error));
602
603 FloatRect sourceCrop = computeCrop(displayDevice);
604 error = hwcLayer->setSourceCrop(sourceCrop);
605 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set source crop "
606 "[%.3f, %.3f, %.3f, %.3f]: %s (%d)", mName.string(),
607 sourceCrop.left, sourceCrop.top, sourceCrop.right,
608 sourceCrop.bottom, to_string(error).c_str(),
609 static_cast<int32_t>(error));
610
611 error = hwcLayer->setPlaneAlpha(s.alpha);
612 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set plane alpha %.3f: "
613 "%s (%d)", mName.string(), s.alpha, to_string(error).c_str(),
614 static_cast<int32_t>(error));
615
616 error = hwcLayer->setZOrder(s.z);
617 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set Z %u: %s (%d)",
618 mName.string(), s.z, to_string(error).c_str(),
619 static_cast<int32_t>(error));
620#else
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000621 if (!frame.intersect(hw->getViewport(), &frame)) {
622 frame.clear();
623 }
Mathias Agopian13127d82013-03-05 17:47:11 -0800624 const Transform& tr(hw->getTransform());
625 layer.setFrame(tr.transform(frame));
626 layer.setCrop(computeCrop(hw));
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800627 layer.setPlaneAlpha(s.alpha);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800628#endif
Mathias Agopian9f8386e2013-01-29 18:56:42 -0800629
Mathias Agopian29a367b2011-07-12 14:51:45 -0700630 /*
631 * Transformations are applied in this order:
632 * 1) buffer orientation/flip/mirror
633 * 2) state transformation (window manager)
634 * 3) layer orientation (screen orientation)
635 * (NOTE: the matrices are multiplied in reverse order)
636 */
637
638 const Transform bufferOrientation(mCurrentTransform);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800639 Transform transform(tr * s.active.transform * bufferOrientation);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700640
641 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
642 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700643 * the code below applies the primary display's inverse transform to the
644 * buffer
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700645 */
Pablo Ceballos021623b2016-04-15 17:31:51 -0700646 uint32_t invTransform =
647 DisplayDevice::getPrimaryDisplayOrientationTransform();
648
Michael Lentine14409632014-08-19 11:27:30 -0700649 uint32_t t_orientation = transform.getOrientation();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700650 // calculate the inverse transform
651 if (invTransform & NATIVE_WINDOW_TRANSFORM_ROT_90) {
652 invTransform ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
653 NATIVE_WINDOW_TRANSFORM_FLIP_H;
Michael Lentine14409632014-08-19 11:27:30 -0700654 // If the transform has been rotated the axis of flip has been swapped
655 // so we need to swap which flip operations we are performing
656 bool is_h_flipped = (t_orientation & NATIVE_WINDOW_TRANSFORM_FLIP_H) != 0;
657 bool is_v_flipped = (t_orientation & NATIVE_WINDOW_TRANSFORM_FLIP_V) != 0;
658 if (is_h_flipped != is_v_flipped) {
659 t_orientation ^= NATIVE_WINDOW_TRANSFORM_FLIP_V |
660 NATIVE_WINDOW_TRANSFORM_FLIP_H;
661 }
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700662 }
663 // and apply to the current transform
Michael Lentine14409632014-08-19 11:27:30 -0700664 transform = Transform(t_orientation) * Transform(invTransform);
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700665 }
Mathias Agopian29a367b2011-07-12 14:51:45 -0700666
667 // this gives us only the "orientation" component of the transform
Mathias Agopian13127d82013-03-05 17:47:11 -0800668 const uint32_t orientation = transform.getOrientation();
Dan Stoza9e56aa02015-11-02 13:00:03 -0800669#ifdef USE_HWC2
670 if (orientation & Transform::ROT_INVALID) {
671 // we can only handle simple transformation
672 hwcInfo.forceClientComposition = true;
673 } else {
674 auto transform = static_cast<HWC2::Transform>(orientation);
675 auto error = hwcLayer->setTransform(transform);
676 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set transform %s: "
677 "%s (%d)", mName.string(), to_string(transform).c_str(),
678 to_string(error).c_str(), static_cast<int32_t>(error));
679 }
680#else
Mathias Agopian13127d82013-03-05 17:47:11 -0800681 if (orientation & Transform::ROT_INVALID) {
682 // we can only handle simple transformation
Mathias Agopian3e8b8532012-05-13 20:42:01 -0700683 layer.setSkip(true);
Mathias Agopiana537c0f2011-08-02 15:51:37 -0700684 } else {
Mathias Agopian13127d82013-03-05 17:47:11 -0800685 layer.setTransform(orientation);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700686 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800687#endif
Mathias Agopiana350ff92010-08-10 17:14:02 -0700688}
689
Dan Stoza9e56aa02015-11-02 13:00:03 -0800690#ifdef USE_HWC2
691void Layer::forceClientComposition(int32_t hwcId) {
692 if (mHwcLayers.count(hwcId) == 0) {
693 ALOGE("forceClientComposition: no HWC layer found (%d)", hwcId);
694 return;
695 }
696
697 mHwcLayers[hwcId].forceClientComposition = true;
698}
699#endif
700
701#ifdef USE_HWC2
702void Layer::setPerFrameData(const sp<const DisplayDevice>& displayDevice) {
703 // Apply this display's projection's viewport to the visible region
704 // before giving it to the HWC HAL.
705 const Transform& tr = displayDevice->getTransform();
706 const auto& viewport = displayDevice->getViewport();
707 Region visible = tr.transform(visibleRegion.intersect(viewport));
708 auto hwcId = displayDevice->getHwcDisplayId();
709 auto& hwcLayer = mHwcLayers[hwcId].layer;
710 auto error = hwcLayer->setVisibleRegion(visible);
711 if (error != HWC2::Error::None) {
712 ALOGE("[%s] Failed to set visible region: %s (%d)", mName.string(),
713 to_string(error).c_str(), static_cast<int32_t>(error));
714 visible.dump(LOG_TAG);
715 }
716
717 error = hwcLayer->setSurfaceDamage(surfaceDamageRegion);
718 if (error != HWC2::Error::None) {
719 ALOGE("[%s] Failed to set surface damage: %s (%d)", mName.string(),
720 to_string(error).c_str(), static_cast<int32_t>(error));
721 surfaceDamageRegion.dump(LOG_TAG);
722 }
723
724 auto compositionType = HWC2::Composition::Invalid;
725 if (mSidebandStream.get()) {
726 compositionType = HWC2::Composition::Sideband;
727 auto error = hwcLayer->setSidebandStream(mSidebandStream->handle());
728 if (error != HWC2::Error::None) {
729 ALOGE("[%s] Failed to set sideband stream %p: %s (%d)",
730 mName.string(), mSidebandStream->handle(),
731 to_string(error).c_str(), static_cast<int32_t>(error));
732 return;
733 }
734 } else {
735 if (mActiveBuffer == nullptr || mActiveBuffer->handle == nullptr) {
736 compositionType = HWC2::Composition::Client;
737 auto error = hwcLayer->setBuffer(nullptr, Fence::NO_FENCE);
738 if (error != HWC2::Error::None) {
739 ALOGE("[%s] Failed to set null buffer: %s (%d)", mName.string(),
740 to_string(error).c_str(), static_cast<int32_t>(error));
741 return;
742 }
743 } else {
744 if (mPotentialCursor) {
745 compositionType = HWC2::Composition::Cursor;
746 }
747 auto acquireFence = mSurfaceFlingerConsumer->getCurrentFence();
748 auto error = hwcLayer->setBuffer(mActiveBuffer->handle,
749 acquireFence);
750 if (error != HWC2::Error::None) {
751 ALOGE("[%s] Failed to set buffer %p: %s (%d)", mName.string(),
752 mActiveBuffer->handle, to_string(error).c_str(),
753 static_cast<int32_t>(error));
754 return;
755 }
756 // If it's not a cursor, default to device composition
757 }
758 }
759
760 if (mHwcLayers[hwcId].forceClientComposition) {
761 ALOGV("[%s] Forcing Client composition", mName.string());
762 setCompositionType(hwcId, HWC2::Composition::Client);
763 } else if (compositionType != HWC2::Composition::Invalid) {
764 ALOGV("[%s] Requesting %s composition", mName.string(),
765 to_string(compositionType).c_str());
766 setCompositionType(hwcId, compositionType);
767 } else {
768 ALOGV("[%s] Requesting Device composition", mName.string());
769 setCompositionType(hwcId, HWC2::Composition::Device);
770 }
771}
772#else
Mathias Agopian42977342012-08-05 00:40:46 -0700773void Layer::setPerFrameData(const sp<const DisplayDevice>& hw,
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700774 HWComposer::HWCLayerInterface& layer) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800775 // we have to set the visible region on every frame because
776 // we currently free it during onLayerDisplayed(), which is called
777 // after HWComposer::commit() -- every frame.
778 // Apply this display's projection's viewport to the visible region
779 // before giving it to the HWC HAL.
780 const Transform& tr = hw->getTransform();
781 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport()));
782 layer.setVisibleRegionScreen(visible);
Dan Stozadb4850c2015-06-25 16:10:18 -0700783 layer.setSurfaceDamage(surfaceDamageRegion);
Pablo Ceballos40845df2016-01-25 17:41:15 -0800784 mIsGlesComposition = (layer.getCompositionType() == HWC_FRAMEBUFFER);
Dan Stozaee44edd2015-03-23 15:50:23 -0700785
Jesse Hall399184a2014-03-03 15:42:54 -0800786 if (mSidebandStream.get()) {
787 layer.setSidebandStream(mSidebandStream);
788 } else {
789 // NOTE: buffer can be NULL if the client never drew into this
790 // layer yet, or if we ran out of memory
791 layer.setBuffer(mActiveBuffer);
792 }
Jesse Hallc5c5a142012-07-02 16:49:28 -0700793}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800794#endif
Jesse Halldc5b4852012-06-29 15:21:18 -0700795
Dan Stoza9e56aa02015-11-02 13:00:03 -0800796#ifdef USE_HWC2
797void Layer::updateCursorPosition(const sp<const DisplayDevice>& displayDevice) {
798 auto hwcId = displayDevice->getHwcDisplayId();
799 if (mHwcLayers.count(hwcId) == 0 ||
800 getCompositionType(hwcId) != HWC2::Composition::Cursor) {
801 return;
802 }
803
804 // This gives us only the "orientation" component of the transform
805 const State& s(getCurrentState());
806
807 // Apply the layer's transform, followed by the display's global transform
808 // Here we're guaranteed that the layer's transform preserves rects
809 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700810 if (!s.crop.isEmpty()) {
811 win.intersect(s.crop, &win);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800812 }
813 // Subtract the transparent region and snap to the bounds
814 Rect bounds = reduce(win, s.activeTransparentRegion);
Dan Stozabaf416d2016-03-10 11:57:08 -0800815 Rect frame(s.active.transform.transform(bounds));
Dan Stoza9e56aa02015-11-02 13:00:03 -0800816 frame.intersect(displayDevice->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700817 if (!s.finalCrop.isEmpty()) {
818 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000819 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800820 auto& displayTransform(displayDevice->getTransform());
821 auto position = displayTransform.transform(frame);
822
823 auto error = mHwcLayers[hwcId].layer->setCursorPosition(position.left,
824 position.top);
825 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set cursor position "
826 "to (%d, %d): %s (%d)", mName.string(), position.left,
827 position.top, to_string(error).c_str(),
828 static_cast<int32_t>(error));
829}
830#else
Dan Stozac7014012014-02-14 15:03:43 -0800831void Layer::setAcquireFence(const sp<const DisplayDevice>& /* hw */,
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700832 HWComposer::HWCLayerInterface& layer) {
Jesse Hallc5c5a142012-07-02 16:49:28 -0700833 int fenceFd = -1;
Mathias Agopiand3ee2312012-08-02 14:01:42 -0700834
835 // TODO: there is a possible optimization here: we only need to set the
836 // acquire fence the first time a new buffer is acquired on EACH display.
837
Riley Andrews03414a12014-07-01 14:22:59 -0700838 if (layer.getCompositionType() == HWC_OVERLAY || layer.getCompositionType() == HWC_CURSOR_OVERLAY) {
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800839 sp<Fence> fence = mSurfaceFlingerConsumer->getCurrentFence();
Jamie Gennis1df8c342012-12-20 14:05:45 -0800840 if (fence->isValid()) {
Jesse Hallc5c5a142012-07-02 16:49:28 -0700841 fenceFd = fence->dup();
Jesse Halldc5b4852012-06-29 15:21:18 -0700842 if (fenceFd == -1) {
843 ALOGW("failed to dup layer fence, skipping sync: %d", errno);
844 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700845 }
Jesse Halldc5b4852012-06-29 15:21:18 -0700846 }
Jesse Hallc5c5a142012-07-02 16:49:28 -0700847 layer.setAcquireFenceFd(fenceFd);
Mathias Agopiana350ff92010-08-10 17:14:02 -0700848}
849
Riley Andrews03414a12014-07-01 14:22:59 -0700850Rect Layer::getPosition(
851 const sp<const DisplayDevice>& hw)
852{
853 // this gives us only the "orientation" component of the transform
854 const State& s(getCurrentState());
855
856 // apply the layer's transform, followed by the display's global transform
857 // here we're guaranteed that the layer's transform preserves rects
858 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -0700859 if (!s.crop.isEmpty()) {
860 win.intersect(s.crop, &win);
Riley Andrews03414a12014-07-01 14:22:59 -0700861 }
862 // subtract the transparent region and snap to the bounds
863 Rect bounds = reduce(win, s.activeTransparentRegion);
Robert Carr3dcabfa2016-03-01 18:36:58 -0800864 Rect frame(s.active.transform.transform(bounds));
Riley Andrews03414a12014-07-01 14:22:59 -0700865 frame.intersect(hw->getViewport(), &frame);
Robert Carrb5d3d262016-03-25 15:08:13 -0700866 if (!s.finalCrop.isEmpty()) {
867 frame.intersect(s.finalCrop, &frame);
Pablo Ceballosacbe6782016-03-04 17:54:21 +0000868 }
Riley Andrews03414a12014-07-01 14:22:59 -0700869 const Transform& tr(hw->getTransform());
870 return Rect(tr.transform(frame));
871}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800872#endif
Riley Andrews03414a12014-07-01 14:22:59 -0700873
Mathias Agopian13127d82013-03-05 17:47:11 -0800874// ---------------------------------------------------------------------------
875// drawing...
876// ---------------------------------------------------------------------------
877
878void Layer::draw(const sp<const DisplayDevice>& hw, const Region& clip) const {
Dan Stozac7014012014-02-14 15:03:43 -0800879 onDraw(hw, clip, false);
Mathias Agopian13127d82013-03-05 17:47:11 -0800880}
881
Dan Stozac7014012014-02-14 15:03:43 -0800882void Layer::draw(const sp<const DisplayDevice>& hw,
883 bool useIdentityTransform) const {
884 onDraw(hw, Region(hw->bounds()), useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -0800885}
886
Dan Stozac7014012014-02-14 15:03:43 -0800887void Layer::draw(const sp<const DisplayDevice>& hw) const {
888 onDraw(hw, Region(hw->bounds()), false);
889}
890
891void Layer::onDraw(const sp<const DisplayDevice>& hw, const Region& clip,
892 bool useIdentityTransform) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800893{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800894 ATRACE_CALL();
895
Mathias Agopiana67932f2011-04-20 14:20:59 -0700896 if (CC_UNLIKELY(mActiveBuffer == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800897 // the texture has not been created yet, this Layer has
Mathias Agopian179169e2010-05-06 20:21:45 -0700898 // in fact never been drawn into. This happens frequently with
899 // SurfaceView because the WindowManager can't know when the client
900 // has drawn the first time.
901
902 // If there is nothing under us, we paint the screen in black, otherwise
903 // we just skip this update.
904
905 // figure out if there is something below us
906 Region under;
Mathias Agopianf7ae69d2011-08-23 12:34:29 -0700907 const SurfaceFlinger::LayerVector& drawingLayers(
908 mFlinger->mDrawingState.layersSortedByZ);
Mathias Agopian179169e2010-05-06 20:21:45 -0700909 const size_t count = drawingLayers.size();
910 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800911 const sp<Layer>& layer(drawingLayers[i]);
912 if (layer.get() == static_cast<Layer const*>(this))
Mathias Agopian179169e2010-05-06 20:21:45 -0700913 break;
Mathias Agopian42977342012-08-05 00:40:46 -0700914 under.orSelf( hw->getTransform().transform(layer->visibleRegion) );
Mathias Agopian179169e2010-05-06 20:21:45 -0700915 }
916 // if not everything below us is covered, we plug the holes!
917 Region holes(clip.subtract(under));
918 if (!holes.isEmpty()) {
Mathias Agopian1b031492012-06-20 17:51:20 -0700919 clearWithOpenGL(hw, holes, 0, 0, 0, 1);
Mathias Agopian179169e2010-05-06 20:21:45 -0700920 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800921 return;
922 }
Mathias Agopiana67932f2011-04-20 14:20:59 -0700923
Andy McFadden97eba892012-12-11 15:21:45 -0800924 // Bind the current buffer to the GL texture, and wait for it to be
925 // ready for us to draw into.
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800926 status_t err = mSurfaceFlingerConsumer->bindTextureImage();
927 if (err != NO_ERROR) {
Andy McFadden97eba892012-12-11 15:21:45 -0800928 ALOGW("onDraw: bindTextureImage failed (err=%d)", err);
Jesse Halldc5b4852012-06-29 15:21:18 -0700929 // Go ahead and draw the buffer anyway; no matter what we do the screen
930 // is probably going to have something visibly wrong.
931 }
932
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700933 bool blackOutLayer = isProtected() || (isSecure() && !hw->isSecure());
934
Mathias Agopian875d8e12013-06-07 15:35:48 -0700935 RenderEngine& engine(mFlinger->getRenderEngine());
936
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700937 if (!blackOutLayer) {
Jamie Genniscbb1a952012-05-08 17:05:52 -0700938 // TODO: we could be more subtle with isFixedSize()
Mathias Agopianeba8c682012-09-19 23:14:45 -0700939 const bool useFiltering = getFiltering() || needsFiltering(hw) || isFixedSize();
Jamie Genniscbb1a952012-05-08 17:05:52 -0700940
941 // Query the texture matrix given our current filtering mode.
942 float textureMatrix[16];
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800943 mSurfaceFlingerConsumer->setFilteringEnabled(useFiltering);
944 mSurfaceFlingerConsumer->getTransformMatrix(textureMatrix);
Jamie Genniscbb1a952012-05-08 17:05:52 -0700945
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700946 if (mSurfaceFlingerConsumer->getTransformToDisplayInverse()) {
947
948 /*
Pablo Ceballos021623b2016-04-15 17:31:51 -0700949 * the code below applies the primary display's inverse transform to
950 * the texture transform
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700951 */
952
953 // create a 4x4 transform matrix from the display transform flags
954 const mat4 flipH(-1,0,0,0, 0,1,0,0, 0,0,1,0, 1,0,0,1);
955 const mat4 flipV( 1,0,0,0, 0,-1,0,0, 0,0,1,0, 0,1,0,1);
956 const mat4 rot90( 0,1,0,0, -1,0,0,0, 0,0,1,0, 1,0,0,1);
957
958 mat4 tr;
Pablo Ceballos021623b2016-04-15 17:31:51 -0700959 uint32_t transform =
960 DisplayDevice::getPrimaryDisplayOrientationTransform();
Mathias Agopianc1c05de2013-09-17 23:45:22 -0700961 if (transform & NATIVE_WINDOW_TRANSFORM_ROT_90)
962 tr = tr * rot90;
963 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_H)
964 tr = tr * flipH;
965 if (transform & NATIVE_WINDOW_TRANSFORM_FLIP_V)
966 tr = tr * flipV;
967
968 // calculate the inverse
969 tr = inverse(tr);
970
971 // and finally apply it to the original texture matrix
972 const mat4 texTransform(mat4(static_cast<const float*>(textureMatrix)) * tr);
973 memcpy(textureMatrix, texTransform.asArray(), sizeof(textureMatrix));
974 }
975
Jamie Genniscbb1a952012-05-08 17:05:52 -0700976 // Set things up for texturing.
Mathias Agopian49457ac2013-08-14 18:20:17 -0700977 mTexture.setDimensions(mActiveBuffer->getWidth(), mActiveBuffer->getHeight());
978 mTexture.setFiltering(useFiltering);
979 mTexture.setMatrix(textureMatrix);
980
981 engine.setupLayerTexturing(mTexture);
Mathias Agopiana67932f2011-04-20 14:20:59 -0700982 } else {
Mathias Agopian875d8e12013-06-07 15:35:48 -0700983 engine.setupLayerBlackedOut();
Mathias Agopiana67932f2011-04-20 14:20:59 -0700984 }
Dan Stozac7014012014-02-14 15:03:43 -0800985 drawWithOpenGL(hw, clip, useIdentityTransform);
Mathias Agopian875d8e12013-06-07 15:35:48 -0700986 engine.disableTexturing();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800987}
988
Mathias Agopian13127d82013-03-05 17:47:11 -0800989
Dan Stozac7014012014-02-14 15:03:43 -0800990void Layer::clearWithOpenGL(const sp<const DisplayDevice>& hw,
991 const Region& /* clip */, float red, float green, float blue,
992 float alpha) const
Mathias Agopian13127d82013-03-05 17:47:11 -0800993{
Mathias Agopian19733a32013-08-28 18:13:56 -0700994 RenderEngine& engine(mFlinger->getRenderEngine());
Dan Stozac7014012014-02-14 15:03:43 -0800995 computeGeometry(hw, mMesh, false);
Mathias Agopian19733a32013-08-28 18:13:56 -0700996 engine.setupFillWithColor(red, green, blue, alpha);
997 engine.drawMesh(mMesh);
Mathias Agopian13127d82013-03-05 17:47:11 -0800998}
999
1000void Layer::clearWithOpenGL(
1001 const sp<const DisplayDevice>& hw, const Region& clip) const {
1002 clearWithOpenGL(hw, clip, 0,0,0,0);
1003}
1004
Dan Stozac7014012014-02-14 15:03:43 -08001005void Layer::drawWithOpenGL(const sp<const DisplayDevice>& hw,
1006 const Region& /* clip */, bool useIdentityTransform) const {
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001007 const State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08001008
Dan Stozac7014012014-02-14 15:03:43 -08001009 computeGeometry(hw, mMesh, useIdentityTransform);
Mathias Agopian13127d82013-03-05 17:47:11 -08001010
Mathias Agopian13127d82013-03-05 17:47:11 -08001011 /*
1012 * NOTE: the way we compute the texture coordinates here produces
1013 * different results than when we take the HWC path -- in the later case
1014 * the "source crop" is rounded to texel boundaries.
1015 * This can produce significantly different results when the texture
1016 * is scaled by a large amount.
1017 *
1018 * The GL code below is more logical (imho), and the difference with
1019 * HWC is due to a limitation of the HWC API to integers -- a question
Mathias Agopianc1c05de2013-09-17 23:45:22 -07001020 * is suspend is whether we should ignore this problem or revert to
Mathias Agopian13127d82013-03-05 17:47:11 -08001021 * GL composition when a buffer scaling is applied (maybe with some
1022 * minimal value)? Or, we could make GL behave like HWC -- but this feel
1023 * like more of a hack.
1024 */
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001025 Rect win(computeBounds());
1026
Robert Carrb5d3d262016-03-25 15:08:13 -07001027 if (!s.finalCrop.isEmpty()) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001028 win = s.active.transform.transform(win);
Robert Carrb5d3d262016-03-25 15:08:13 -07001029 if (!win.intersect(s.finalCrop, &win)) {
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001030 win.clear();
1031 }
1032 win = s.active.transform.inverse().transform(win);
1033 if (!win.intersect(computeBounds(), &win)) {
1034 win.clear();
1035 }
1036 }
Mathias Agopian13127d82013-03-05 17:47:11 -08001037
Mathias Agopian3f844832013-08-07 21:24:32 -07001038 float left = float(win.left) / float(s.active.w);
1039 float top = float(win.top) / float(s.active.h);
1040 float right = float(win.right) / float(s.active.w);
1041 float bottom = float(win.bottom) / float(s.active.h);
Mathias Agopian13127d82013-03-05 17:47:11 -08001042
Mathias Agopian875d8e12013-06-07 15:35:48 -07001043 // TODO: we probably want to generate the texture coords with the mesh
1044 // here we assume that we only have 4 vertices
Mathias Agopianff2ed702013-09-01 21:36:12 -07001045 Mesh::VertexArray<vec2> texCoords(mMesh.getTexCoordArray<vec2>());
1046 texCoords[0] = vec2(left, 1.0f - top);
1047 texCoords[1] = vec2(left, 1.0f - bottom);
1048 texCoords[2] = vec2(right, 1.0f - bottom);
1049 texCoords[3] = vec2(right, 1.0f - top);
Mathias Agopian13127d82013-03-05 17:47:11 -08001050
Mathias Agopian875d8e12013-06-07 15:35:48 -07001051 RenderEngine& engine(mFlinger->getRenderEngine());
Andy McFadden4125a4f2014-01-29 17:17:11 -08001052 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), s.alpha);
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001053 engine.drawMesh(mMesh);
Mathias Agopian875d8e12013-06-07 15:35:48 -07001054 engine.disableBlending();
Mathias Agopian13127d82013-03-05 17:47:11 -08001055}
1056
Dan Stoza9e56aa02015-11-02 13:00:03 -08001057#ifdef USE_HWC2
1058void Layer::setCompositionType(int32_t hwcId, HWC2::Composition type,
1059 bool callIntoHwc) {
1060 if (mHwcLayers.count(hwcId) == 0) {
1061 ALOGE("setCompositionType called without a valid HWC layer");
1062 return;
1063 }
1064 auto& hwcInfo = mHwcLayers[hwcId];
1065 auto& hwcLayer = hwcInfo.layer;
1066 ALOGV("setCompositionType(%" PRIx64 ", %s, %d)", hwcLayer->getId(),
1067 to_string(type).c_str(), static_cast<int>(callIntoHwc));
1068 if (hwcInfo.compositionType != type) {
1069 ALOGV(" actually setting");
1070 hwcInfo.compositionType = type;
1071 if (callIntoHwc) {
1072 auto error = hwcLayer->setCompositionType(type);
1073 ALOGE_IF(error != HWC2::Error::None, "[%s] Failed to set "
1074 "composition type %s: %s (%d)", mName.string(),
1075 to_string(type).c_str(), to_string(error).c_str(),
1076 static_cast<int32_t>(error));
1077 }
1078 }
1079}
1080
1081HWC2::Composition Layer::getCompositionType(int32_t hwcId) const {
1082 if (mHwcLayers.count(hwcId) == 0) {
1083 ALOGE("getCompositionType called without a valid HWC layer");
1084 return HWC2::Composition::Invalid;
1085 }
1086 return mHwcLayers.at(hwcId).compositionType;
1087}
1088
1089void Layer::setClearClientTarget(int32_t hwcId, bool clear) {
1090 if (mHwcLayers.count(hwcId) == 0) {
1091 ALOGE("setClearClientTarget called without a valid HWC layer");
1092 return;
1093 }
1094 mHwcLayers[hwcId].clearClientTarget = clear;
1095}
1096
1097bool Layer::getClearClientTarget(int32_t hwcId) const {
1098 if (mHwcLayers.count(hwcId) == 0) {
1099 ALOGE("getClearClientTarget called without a valid HWC layer");
1100 return false;
1101 }
1102 return mHwcLayers.at(hwcId).clearClientTarget;
1103}
1104#endif
1105
Ruben Brunk1681d952014-06-27 15:51:55 -07001106uint32_t Layer::getProducerStickyTransform() const {
1107 int producerStickyTransform = 0;
1108 int ret = mProducer->query(NATIVE_WINDOW_STICKY_TRANSFORM, &producerStickyTransform);
1109 if (ret != OK) {
1110 ALOGW("%s: Error %s (%d) while querying window sticky transform.", __FUNCTION__,
1111 strerror(-ret), ret);
1112 return 0;
1113 }
1114 return static_cast<uint32_t>(producerStickyTransform);
1115}
1116
Dan Stozacac35382016-01-27 12:21:06 -08001117uint64_t Layer::getHeadFrameNumber() const {
1118 Mutex::Autolock lock(mQueueItemLock);
1119 if (!mQueueItems.empty()) {
1120 return mQueueItems[0].mFrameNumber;
1121 } else {
1122 return mCurrentFrameNumber;
1123 }
1124}
1125
1126bool Layer::addSyncPoint(const std::shared_ptr<SyncPoint>& point) {
1127 if (point->getFrameNumber() <= mCurrentFrameNumber) {
1128 // Don't bother with a SyncPoint, since we've already latched the
1129 // relevant frame
1130 return false;
Dan Stoza7dde5992015-05-22 09:51:44 -07001131 }
1132
Dan Stozacac35382016-01-27 12:21:06 -08001133 Mutex::Autolock lock(mLocalSyncPointMutex);
1134 mLocalSyncPoints.push_back(point);
1135 return true;
Dan Stoza7dde5992015-05-22 09:51:44 -07001136}
1137
Mathias Agopian13127d82013-03-05 17:47:11 -08001138void Layer::setFiltering(bool filtering) {
1139 mFiltering = filtering;
1140}
1141
1142bool Layer::getFiltering() const {
1143 return mFiltering;
1144}
1145
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001146// As documented in libhardware header, formats in the range
1147// 0x100 - 0x1FF are specific to the HAL implementation, and
1148// are known to have no alpha channel
1149// TODO: move definition for device-specific range into
1150// hardware.h, instead of using hard-coded values here.
1151#define HARDWARE_IS_DEVICE_FORMAT(f) ((f) >= 0x100 && (f) <= 0x1FF)
1152
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001153bool Layer::getOpacityForFormat(uint32_t format) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001154 if (HARDWARE_IS_DEVICE_FORMAT(format)) {
1155 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001156 }
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001157 switch (format) {
1158 case HAL_PIXEL_FORMAT_RGBA_8888:
1159 case HAL_PIXEL_FORMAT_BGRA_8888:
Mathias Agopiandd533712013-07-26 15:31:39 -07001160 return false;
Mathias Agopian5773d3f2013-07-25 19:24:31 -07001161 }
1162 // in all other case, we have no blending (also for unknown formats)
Mathias Agopiandd533712013-07-26 15:31:39 -07001163 return true;
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001164}
1165
Mathias Agopian13127d82013-03-05 17:47:11 -08001166// ----------------------------------------------------------------------------
1167// local state
1168// ----------------------------------------------------------------------------
1169
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001170static void boundPoint(vec2* point, const Rect& crop) {
1171 if (point->x < crop.left) {
1172 point->x = crop.left;
1173 }
1174 if (point->x > crop.right) {
1175 point->x = crop.right;
1176 }
1177 if (point->y < crop.top) {
1178 point->y = crop.top;
1179 }
1180 if (point->y > crop.bottom) {
1181 point->y = crop.bottom;
1182 }
1183}
1184
Dan Stozac7014012014-02-14 15:03:43 -08001185void Layer::computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh,
1186 bool useIdentityTransform) const
Mathias Agopian13127d82013-03-05 17:47:11 -08001187{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001188 const Layer::State& s(getDrawingState());
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001189 const Transform tr(hw->getTransform());
Mathias Agopian13127d82013-03-05 17:47:11 -08001190 const uint32_t hw_h = hw->getHeight();
1191 Rect win(s.active.w, s.active.h);
Robert Carrb5d3d262016-03-25 15:08:13 -07001192 if (!s.crop.isEmpty()) {
1193 win.intersect(s.crop, &win);
Mathias Agopian13127d82013-03-05 17:47:11 -08001194 }
Mathias Agopian6c7f25a2013-05-09 20:37:10 -07001195 // subtract the transparent region and snap to the bounds
Mathias Agopianf3e85d42013-05-10 18:01:12 -07001196 win = reduce(win, s.activeTransparentRegion);
Mathias Agopian3f844832013-08-07 21:24:32 -07001197
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001198 vec2 lt = vec2(win.left, win.top);
1199 vec2 lb = vec2(win.left, win.bottom);
1200 vec2 rb = vec2(win.right, win.bottom);
1201 vec2 rt = vec2(win.right, win.top);
1202
1203 if (!useIdentityTransform) {
1204 lt = s.active.transform.transform(lt);
1205 lb = s.active.transform.transform(lb);
1206 rb = s.active.transform.transform(rb);
1207 rt = s.active.transform.transform(rt);
1208 }
1209
Robert Carrb5d3d262016-03-25 15:08:13 -07001210 if (!s.finalCrop.isEmpty()) {
1211 boundPoint(&lt, s.finalCrop);
1212 boundPoint(&lb, s.finalCrop);
1213 boundPoint(&rb, s.finalCrop);
1214 boundPoint(&rt, s.finalCrop);
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001215 }
1216
Mathias Agopianff2ed702013-09-01 21:36:12 -07001217 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>());
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001218 position[0] = tr.transform(lt);
1219 position[1] = tr.transform(lb);
1220 position[2] = tr.transform(rb);
1221 position[3] = tr.transform(rt);
Mathias Agopian3f844832013-08-07 21:24:32 -07001222 for (size_t i=0 ; i<4 ; i++) {
Mathias Agopian5cdc8992013-08-13 20:51:23 -07001223 position[i].y = hw_h - position[i].y;
Mathias Agopian13127d82013-03-05 17:47:11 -08001224 }
1225}
Eric Hassoldac45e6b2011-02-10 14:41:26 -08001226
Andy McFadden4125a4f2014-01-29 17:17:11 -08001227bool Layer::isOpaque(const Layer::State& s) const
Mathias Agopiana7f66922010-05-26 22:08:52 -07001228{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001229 // if we don't have a buffer yet, we're translucent regardless of the
1230 // layer's opaque flag.
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001231 if (mActiveBuffer == 0) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001232 return false;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001233 }
Mathias Agopiana67932f2011-04-20 14:20:59 -07001234
1235 // if the layer has the opaque flag, then we're always opaque,
1236 // otherwise we use the current buffer's format.
Andy McFadden4125a4f2014-01-29 17:17:11 -08001237 return ((s.flags & layer_state_t::eLayerOpaque) != 0) || mCurrentOpacity;
Mathias Agopiana7f66922010-05-26 22:08:52 -07001238}
1239
Dan Stoza23116082015-06-18 14:58:39 -07001240bool Layer::isSecure() const
1241{
1242 const Layer::State& s(mDrawingState);
1243 return (s.flags & layer_state_t::eLayerSecure);
1244}
1245
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001246bool Layer::isProtected() const
1247{
Mathias Agopiana67932f2011-04-20 14:20:59 -07001248 const sp<GraphicBuffer>& activeBuffer(mActiveBuffer);
Jamie Gennis7a4d0df2011-03-09 17:05:02 -08001249 return (activeBuffer != 0) &&
1250 (activeBuffer->getUsage() & GRALLOC_USAGE_PROTECTED);
1251}
Mathias Agopianb5b7f262010-05-07 15:58:44 -07001252
Mathias Agopian13127d82013-03-05 17:47:11 -08001253bool Layer::isFixedSize() const {
Robert Carrc3574f72016-03-24 12:19:32 -07001254 return getEffectiveScalingMode() != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian13127d82013-03-05 17:47:11 -08001255}
1256
1257bool Layer::isCropped() const {
1258 return !mCurrentCrop.isEmpty();
1259}
1260
1261bool Layer::needsFiltering(const sp<const DisplayDevice>& hw) const {
1262 return mNeedsFiltering || hw->needsFiltering();
1263}
1264
1265void Layer::setVisibleRegion(const Region& visibleRegion) {
1266 // always called from main thread
1267 this->visibleRegion = visibleRegion;
1268}
1269
1270void Layer::setCoveredRegion(const Region& coveredRegion) {
1271 // always called from main thread
1272 this->coveredRegion = coveredRegion;
1273}
1274
1275void Layer::setVisibleNonTransparentRegion(const Region&
1276 setVisibleNonTransparentRegion) {
1277 // always called from main thread
1278 this->visibleNonTransparentRegion = setVisibleNonTransparentRegion;
1279}
1280
1281// ----------------------------------------------------------------------------
1282// transaction
1283// ----------------------------------------------------------------------------
1284
Dan Stoza7dde5992015-05-22 09:51:44 -07001285void Layer::pushPendingState() {
1286 if (!mCurrentState.modified) {
1287 return;
1288 }
1289
Dan Stoza7dde5992015-05-22 09:51:44 -07001290 // If this transaction is waiting on the receipt of a frame, generate a sync
1291 // point and send it to the remote layer.
1292 if (mCurrentState.handle != nullptr) {
1293 sp<Handle> handle = static_cast<Handle*>(mCurrentState.handle.get());
1294 sp<Layer> handleLayer = handle->owner.promote();
1295 if (handleLayer == nullptr) {
1296 ALOGE("[%s] Unable to promote Layer handle", mName.string());
1297 // If we can't promote the layer we are intended to wait on,
1298 // then it is expired or otherwise invalid. Allow this transaction
1299 // to be applied as per normal (no synchronization).
1300 mCurrentState.handle = nullptr;
Pablo Ceballos3bddd5b2015-11-19 14:39:14 -08001301 } else {
1302 auto syncPoint = std::make_shared<SyncPoint>(
1303 mCurrentState.frameNumber);
Dan Stozacac35382016-01-27 12:21:06 -08001304 if (handleLayer->addSyncPoint(syncPoint)) {
1305 mRemoteSyncPoints.push_back(std::move(syncPoint));
1306 } else {
1307 // We already missed the frame we're supposed to synchronize
1308 // on, so go ahead and apply the state update
1309 mCurrentState.handle = nullptr;
1310 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001311 }
1312
Dan Stoza7dde5992015-05-22 09:51:44 -07001313 // Wake us up to check if the frame has been received
1314 setTransactionFlags(eTransactionNeeded);
1315 }
1316 mPendingStates.push_back(mCurrentState);
1317}
1318
Pablo Ceballos05289c22016-04-14 15:49:55 -07001319void Layer::popPendingState(State* stateToCommit) {
1320 auto oldFlags = stateToCommit->flags;
1321 *stateToCommit = mPendingStates[0];
1322 stateToCommit->flags = (oldFlags & ~stateToCommit->mask) |
1323 (stateToCommit->flags & stateToCommit->mask);
Dan Stoza7dde5992015-05-22 09:51:44 -07001324
1325 mPendingStates.removeAt(0);
1326}
1327
Pablo Ceballos05289c22016-04-14 15:49:55 -07001328bool Layer::applyPendingStates(State* stateToCommit) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001329 bool stateUpdateAvailable = false;
1330 while (!mPendingStates.empty()) {
1331 if (mPendingStates[0].handle != nullptr) {
1332 if (mRemoteSyncPoints.empty()) {
1333 // If we don't have a sync point for this, apply it anyway. It
1334 // will be visually wrong, but it should keep us from getting
1335 // into too much trouble.
1336 ALOGE("[%s] No local sync point found", mName.string());
Pablo Ceballos05289c22016-04-14 15:49:55 -07001337 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001338 stateUpdateAvailable = true;
1339 continue;
1340 }
1341
Dan Stozacac35382016-01-27 12:21:06 -08001342 if (mRemoteSyncPoints.front()->getFrameNumber() !=
1343 mPendingStates[0].frameNumber) {
1344 ALOGE("[%s] Unexpected sync point frame number found",
1345 mName.string());
1346
1347 // Signal our end of the sync point and then dispose of it
1348 mRemoteSyncPoints.front()->setTransactionApplied();
1349 mRemoteSyncPoints.pop_front();
1350 continue;
1351 }
1352
Dan Stoza7dde5992015-05-22 09:51:44 -07001353 if (mRemoteSyncPoints.front()->frameIsAvailable()) {
1354 // Apply the state update
Pablo Ceballos05289c22016-04-14 15:49:55 -07001355 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001356 stateUpdateAvailable = true;
1357
1358 // Signal our end of the sync point and then dispose of it
1359 mRemoteSyncPoints.front()->setTransactionApplied();
1360 mRemoteSyncPoints.pop_front();
Dan Stoza792e5292016-02-11 11:43:58 -08001361 } else {
1362 break;
Dan Stoza7dde5992015-05-22 09:51:44 -07001363 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001364 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001365 popPendingState(stateToCommit);
Dan Stoza7dde5992015-05-22 09:51:44 -07001366 stateUpdateAvailable = true;
1367 }
1368 }
1369
1370 // If we still have pending updates, wake SurfaceFlinger back up and point
1371 // it at this layer so we can process them
1372 if (!mPendingStates.empty()) {
1373 setTransactionFlags(eTransactionNeeded);
1374 mFlinger->setTransactionFlags(eTraversalNeeded);
1375 }
1376
1377 mCurrentState.modified = false;
1378 return stateUpdateAvailable;
1379}
1380
1381void Layer::notifyAvailableFrames() {
Dan Stozacac35382016-01-27 12:21:06 -08001382 auto headFrameNumber = getHeadFrameNumber();
1383 Mutex::Autolock lock(mLocalSyncPointMutex);
1384 for (auto& point : mLocalSyncPoints) {
1385 if (headFrameNumber >= point->getFrameNumber()) {
1386 point->setFrameAvailable();
1387 }
Dan Stoza7dde5992015-05-22 09:51:44 -07001388 }
1389}
1390
Mathias Agopian13127d82013-03-05 17:47:11 -08001391uint32_t Layer::doTransaction(uint32_t flags) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001392 ATRACE_CALL();
1393
Dan Stoza7dde5992015-05-22 09:51:44 -07001394 pushPendingState();
Pablo Ceballos05289c22016-04-14 15:49:55 -07001395 Layer::State c = getCurrentState();
1396 if (!applyPendingStates(&c)) {
Dan Stoza7dde5992015-05-22 09:51:44 -07001397 return 0;
1398 }
1399
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001400 const Layer::State& s(getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001401
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001402 const bool sizeChanged = (c.requested.w != s.requested.w) ||
1403 (c.requested.h != s.requested.h);
Mathias Agopiana138f892010-05-21 17:24:35 -07001404
1405 if (sizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001406 // the size changed, we need to ask our client to request a new buffer
Steve Block9d453682011-12-20 16:23:08 +00001407 ALOGD_IF(DEBUG_RESIZE,
Andy McFadden69052052012-09-14 16:10:11 -07001408 "doTransaction: geometry (layer=%p '%s'), tr=%02x, scalingMode=%d\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001409 " current={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001410 " requested={ wh={%4u,%4u} }}\n"
Mathias Agopian419e1962012-05-23 14:34:07 -07001411 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001412 " requested={ wh={%4u,%4u} }}\n",
Robert Carrc3574f72016-03-24 12:19:32 -07001413 this, getName().string(), mCurrentTransform,
1414 getEffectiveScalingMode(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001415 c.active.w, c.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001416 c.crop.left,
1417 c.crop.top,
1418 c.crop.right,
1419 c.crop.bottom,
1420 c.crop.getWidth(),
1421 c.crop.getHeight(),
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001422 c.requested.w, c.requested.h,
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001423 s.active.w, s.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001424 s.crop.left,
1425 s.crop.top,
1426 s.crop.right,
1427 s.crop.bottom,
1428 s.crop.getWidth(),
1429 s.crop.getHeight(),
1430 s.requested.w, s.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001431
Jamie Gennis2a0d5b62011-09-26 16:54:44 -07001432 // record the new size, form this point on, when the client request
1433 // a buffer, it'll get the new size.
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001434 mSurfaceFlingerConsumer->setDefaultBufferSize(
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001435 c.requested.w, c.requested.h);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001436 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001437
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001438 if (!isFixedSize()) {
1439
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001440 const bool resizePending = (c.requested.w != c.active.w) ||
1441 (c.requested.h != c.active.h);
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001442
Dan Stoza9e9b0442015-04-22 14:59:08 -07001443 if (resizePending && mSidebandStream == NULL) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001444 // don't let Layer::doTransaction update the drawing state
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001445 // if we have a pending resize, unless we are in fixed-size mode.
1446 // the drawing state will be updated only once we receive a buffer
1447 // with the correct size.
1448 //
1449 // in particular, we want to make sure the clip (which is part
1450 // of the geometry state) is latched together with the size but is
1451 // latched immediately when no resizing is involved.
Dan Stoza9e9b0442015-04-22 14:59:08 -07001452 //
1453 // If a sideband stream is attached, however, we want to skip this
1454 // optimization so that transactions aren't missed when a buffer
1455 // never arrives
Mathias Agopian0cd545f2012-06-07 14:18:55 -07001456
1457 flags |= eDontUpdateGeometryState;
1458 }
1459 }
1460
Mathias Agopian13127d82013-03-05 17:47:11 -08001461 // always set active to requested, unless we're asked not to
1462 // this is used by Layer, which special cases resizes.
1463 if (flags & eDontUpdateGeometryState) {
1464 } else {
Pablo Ceballos05289c22016-04-14 15:49:55 -07001465 c.active = c.requested;
Mathias Agopian13127d82013-03-05 17:47:11 -08001466 }
1467
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001468 if (s.active != c.active) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001469 // invalidate and recompute the visible regions if needed
1470 flags |= Layer::eVisibleRegion;
1471 }
1472
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07001473 if (c.sequence != s.sequence) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001474 // invalidate and recompute the visible regions if needed
1475 flags |= eVisibleRegion;
1476 this->contentDirty = true;
1477
1478 // we may use linear filtering, if the matrix scales us
Robert Carr3dcabfa2016-03-01 18:36:58 -08001479 const uint8_t type = c.active.transform.getType();
1480 mNeedsFiltering = (!c.active.transform.preserveRects() ||
Mathias Agopian13127d82013-03-05 17:47:11 -08001481 (type >= Transform::SCALE));
1482 }
1483
Dan Stozac8145172016-04-28 16:29:06 -07001484 // If the layer is hidden, signal and clear out all local sync points so
1485 // that transactions for layers depending on this layer's frames becoming
1486 // visible are not blocked
1487 if (c.flags & layer_state_t::eLayerHidden) {
1488 Mutex::Autolock lock(mLocalSyncPointMutex);
1489 for (auto& point : mLocalSyncPoints) {
1490 point->setFrameAvailable();
1491 }
1492 mLocalSyncPoints.clear();
1493 }
1494
Mathias Agopian13127d82013-03-05 17:47:11 -08001495 // Commit the transaction
Pablo Ceballos05289c22016-04-14 15:49:55 -07001496 commitTransaction(c);
Mathias Agopian13127d82013-03-05 17:47:11 -08001497 return flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001498}
1499
Pablo Ceballos05289c22016-04-14 15:49:55 -07001500void Layer::commitTransaction(const State& stateToCommit) {
1501 mDrawingState = stateToCommit;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001502}
1503
Mathias Agopian13127d82013-03-05 17:47:11 -08001504uint32_t Layer::getTransactionFlags(uint32_t flags) {
1505 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1506}
1507
1508uint32_t Layer::setTransactionFlags(uint32_t flags) {
1509 return android_atomic_or(flags, &mTransactionFlags);
1510}
1511
1512bool Layer::setPosition(float x, float y) {
Robert Carr3dcabfa2016-03-01 18:36:58 -08001513 if (mCurrentState.requested.transform.tx() == x && mCurrentState.requested.transform.ty() == y)
Mathias Agopian13127d82013-03-05 17:47:11 -08001514 return false;
1515 mCurrentState.sequence++;
Robert Carr69663fb2016-03-27 19:59:19 -07001516
1517 // We update the requested and active position simultaneously because
1518 // we want to apply the position portion of the transform matrix immediately,
1519 // but still delay scaling when resizing a SCALING_MODE_FREEZE layer.
Robert Carr3dcabfa2016-03-01 18:36:58 -08001520 mCurrentState.requested.transform.set(x, y);
Robert Carr69663fb2016-03-27 19:59:19 -07001521 mCurrentState.active.transform.set(x, y);
1522
Dan Stoza7dde5992015-05-22 09:51:44 -07001523 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001524 setTransactionFlags(eTransactionNeeded);
1525 return true;
1526}
1527bool Layer::setLayer(uint32_t z) {
1528 if (mCurrentState.z == z)
1529 return false;
1530 mCurrentState.sequence++;
1531 mCurrentState.z = z;
Dan Stoza7dde5992015-05-22 09:51:44 -07001532 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001533 setTransactionFlags(eTransactionNeeded);
1534 return true;
1535}
1536bool Layer::setSize(uint32_t w, uint32_t h) {
1537 if (mCurrentState.requested.w == w && mCurrentState.requested.h == h)
1538 return false;
1539 mCurrentState.requested.w = w;
1540 mCurrentState.requested.h = h;
Dan Stoza7dde5992015-05-22 09:51:44 -07001541 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001542 setTransactionFlags(eTransactionNeeded);
1543 return true;
1544}
Dan Stoza9e56aa02015-11-02 13:00:03 -08001545#ifdef USE_HWC2
1546bool Layer::setAlpha(float alpha) {
1547#else
Mathias Agopian13127d82013-03-05 17:47:11 -08001548bool Layer::setAlpha(uint8_t alpha) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001549#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08001550 if (mCurrentState.alpha == alpha)
1551 return false;
1552 mCurrentState.sequence++;
1553 mCurrentState.alpha = alpha;
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::setMatrix(const layer_state_t::matrix22_t& matrix) {
1559 mCurrentState.sequence++;
Robert Carr3dcabfa2016-03-01 18:36:58 -08001560 mCurrentState.requested.transform.set(
Mathias Agopian13127d82013-03-05 17:47:11 -08001561 matrix.dsdx, matrix.dsdy, matrix.dtdx, matrix.dtdy);
Dan Stoza7dde5992015-05-22 09:51:44 -07001562 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001563 setTransactionFlags(eTransactionNeeded);
1564 return true;
1565}
1566bool Layer::setTransparentRegionHint(const Region& transparent) {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001567 mCurrentState.requestedTransparentRegion = transparent;
Dan Stoza7dde5992015-05-22 09:51:44 -07001568 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001569 setTransactionFlags(eTransactionNeeded);
1570 return true;
1571}
1572bool Layer::setFlags(uint8_t flags, uint8_t mask) {
1573 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
1574 if (mCurrentState.flags == newFlags)
1575 return false;
1576 mCurrentState.sequence++;
1577 mCurrentState.flags = newFlags;
Dan Stoza7dde5992015-05-22 09:51:44 -07001578 mCurrentState.mask = mask;
1579 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001580 setTransactionFlags(eTransactionNeeded);
1581 return true;
1582}
1583bool Layer::setCrop(const Rect& crop) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001584 if (mCurrentState.crop == crop)
Mathias Agopian13127d82013-03-05 17:47:11 -08001585 return false;
1586 mCurrentState.sequence++;
Robert Carrb5d3d262016-03-25 15:08:13 -07001587 mCurrentState.crop = crop;
Dan Stoza7dde5992015-05-22 09:51:44 -07001588 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001589 setTransactionFlags(eTransactionNeeded);
1590 return true;
1591}
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001592bool Layer::setFinalCrop(const Rect& crop) {
Robert Carrb5d3d262016-03-25 15:08:13 -07001593 if (mCurrentState.finalCrop == crop)
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001594 return false;
1595 mCurrentState.sequence++;
Robert Carrb5d3d262016-03-25 15:08:13 -07001596 mCurrentState.finalCrop = crop;
Pablo Ceballosacbe6782016-03-04 17:54:21 +00001597 mCurrentState.modified = true;
1598 setTransactionFlags(eTransactionNeeded);
1599 return true;
1600}
Mathias Agopian13127d82013-03-05 17:47:11 -08001601
Robert Carrc3574f72016-03-24 12:19:32 -07001602bool Layer::setOverrideScalingMode(int32_t scalingMode) {
1603 if (scalingMode == mOverrideScalingMode)
1604 return false;
1605 mOverrideScalingMode = scalingMode;
1606 return true;
1607}
1608
1609uint32_t Layer::getEffectiveScalingMode() const {
1610 if (mOverrideScalingMode >= 0) {
1611 return mOverrideScalingMode;
1612 }
1613 return mCurrentScalingMode;
1614}
1615
Mathias Agopian13127d82013-03-05 17:47:11 -08001616bool Layer::setLayerStack(uint32_t layerStack) {
1617 if (mCurrentState.layerStack == layerStack)
1618 return false;
1619 mCurrentState.sequence++;
1620 mCurrentState.layerStack = layerStack;
Dan Stoza7dde5992015-05-22 09:51:44 -07001621 mCurrentState.modified = true;
Mathias Agopian13127d82013-03-05 17:47:11 -08001622 setTransactionFlags(eTransactionNeeded);
1623 return true;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001624}
1625
Dan Stoza7dde5992015-05-22 09:51:44 -07001626void Layer::deferTransactionUntil(const sp<IBinder>& handle,
1627 uint64_t frameNumber) {
1628 mCurrentState.handle = handle;
1629 mCurrentState.frameNumber = frameNumber;
1630 // We don't set eTransactionNeeded, because just receiving a deferral
1631 // request without any other state updates shouldn't actually induce a delay
1632 mCurrentState.modified = true;
1633 pushPendingState();
Dan Stoza792e5292016-02-11 11:43:58 -08001634 mCurrentState.handle = nullptr;
1635 mCurrentState.frameNumber = 0;
Dan Stoza7dde5992015-05-22 09:51:44 -07001636 mCurrentState.modified = false;
1637}
1638
Dan Stozaee44edd2015-03-23 15:50:23 -07001639void Layer::useSurfaceDamage() {
1640 if (mFlinger->mForceFullDamage) {
1641 surfaceDamageRegion = Region::INVALID_REGION;
1642 } else {
1643 surfaceDamageRegion = mSurfaceFlingerConsumer->getSurfaceDamage();
1644 }
1645}
1646
1647void Layer::useEmptyDamage() {
1648 surfaceDamageRegion.clear();
1649}
1650
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001651// ----------------------------------------------------------------------------
1652// pageflip handling...
1653// ----------------------------------------------------------------------------
1654
Dan Stoza6b9454d2014-11-07 16:00:59 -08001655bool Layer::shouldPresentNow(const DispSync& dispSync) const {
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001656 if (mSidebandStreamChanged || mAutoRefresh) {
Dan Stozad87defa2015-07-29 16:15:50 -07001657 return true;
1658 }
1659
Dan Stoza6b9454d2014-11-07 16:00:59 -08001660 Mutex::Autolock lock(mQueueItemLock);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001661 if (mQueueItems.empty()) {
1662 return false;
1663 }
1664 auto timestamp = mQueueItems[0].mTimestamp;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001665 nsecs_t expectedPresent =
1666 mSurfaceFlingerConsumer->computeExpectedPresent(dispSync);
Dan Stoza0eb2d392015-07-06 12:56:50 -07001667
1668 // Ignore timestamps more than a second in the future
1669 bool isPlausible = timestamp < (expectedPresent + s2ns(1));
1670 ALOGW_IF(!isPlausible, "[%s] Timestamp %" PRId64 " seems implausible "
1671 "relative to expectedPresent %" PRId64, mName.string(), timestamp,
1672 expectedPresent);
1673
1674 bool isDue = timestamp < expectedPresent;
1675 return isDue || !isPlausible;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001676}
1677
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001678bool Layer::onPreComposition() {
1679 mRefreshPending = false;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001680 return mQueuedFrames > 0 || mSidebandStreamChanged || mAutoRefresh;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001681}
1682
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001683void Layer::onPostComposition() {
1684 if (mFrameLatencyNeeded) {
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001685 nsecs_t desiredPresentTime = mSurfaceFlingerConsumer->getTimestamp();
Jamie Gennis82dbc742012-11-08 19:23:28 -08001686 mFrameTracker.setDesiredPresentTime(desiredPresentTime);
1687
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001688 sp<Fence> frameReadyFence = mSurfaceFlingerConsumer->getCurrentFence();
Jamie Gennis789a6c32013-02-25 13:37:54 -08001689 if (frameReadyFence->isValid()) {
Jamie Gennis82dbc742012-11-08 19:23:28 -08001690 mFrameTracker.setFrameReadyFence(frameReadyFence);
1691 } else {
1692 // There was no fence for this frame, so assume that it was ready
1693 // to be presented at the desired present time.
1694 mFrameTracker.setFrameReadyTime(desiredPresentTime);
1695 }
1696
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001697 const HWComposer& hwc = mFlinger->getHwComposer();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001698#ifdef USE_HWC2
1699 sp<Fence> presentFence = hwc.getRetireFence(HWC_DISPLAY_PRIMARY);
1700#else
Jamie Gennis82dbc742012-11-08 19:23:28 -08001701 sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001702#endif
Jamie Gennis789a6c32013-02-25 13:37:54 -08001703 if (presentFence->isValid()) {
Jamie Gennis82dbc742012-11-08 19:23:28 -08001704 mFrameTracker.setActualPresentFence(presentFence);
1705 } else {
1706 // The HWC doesn't support present fences, so use the refresh
1707 // timestamp instead.
1708 nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
1709 mFrameTracker.setActualPresentTime(presentTime);
1710 }
1711
1712 mFrameTracker.advanceFrame();
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001713 mFrameLatencyNeeded = false;
1714 }
1715}
1716
Dan Stoza9e56aa02015-11-02 13:00:03 -08001717#ifdef USE_HWC2
1718void Layer::releasePendingBuffer() {
1719 mSurfaceFlingerConsumer->releasePendingBuffer();
1720}
1721#endif
1722
Mathias Agopianda27af92012-09-13 18:17:13 -07001723bool Layer::isVisible() const {
Mathias Agopian13127d82013-03-05 17:47:11 -08001724 const Layer::State& s(mDrawingState);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001725#ifdef USE_HWC2
1726 return !(s.flags & layer_state_t::eLayerHidden) && s.alpha > 0.0f
1727 && (mActiveBuffer != NULL || mSidebandStream != NULL);
1728#else
Mathias Agopian13127d82013-03-05 17:47:11 -08001729 return !(s.flags & layer_state_t::eLayerHidden) && s.alpha
Wonsik Kimafe30812014-03-31 23:16:08 +09001730 && (mActiveBuffer != NULL || mSidebandStream != NULL);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001731#endif
Mathias Agopianda27af92012-09-13 18:17:13 -07001732}
1733
Mathias Agopian4fec8732012-06-29 14:12:52 -07001734Region Layer::latchBuffer(bool& recomputeVisibleRegions)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001735{
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001736 ATRACE_CALL();
1737
Jesse Hall399184a2014-03-03 15:42:54 -08001738 if (android_atomic_acquire_cas(true, false, &mSidebandStreamChanged) == 0) {
1739 // mSidebandStreamChanged was true
1740 mSidebandStream = mSurfaceFlingerConsumer->getSidebandStream();
Dan Stoza12e0a272015-05-05 14:00:52 -07001741 if (mSidebandStream != NULL) {
1742 setTransactionFlags(eTransactionNeeded);
1743 mFlinger->setTransactionFlags(eTraversalNeeded);
1744 }
Jesse Hall5bf786d2014-09-30 10:35:11 -07001745 recomputeVisibleRegions = true;
1746
1747 const State& s(getDrawingState());
Robert Carr3dcabfa2016-03-01 18:36:58 -08001748 return s.active.transform.transform(Region(Rect(s.active.w, s.active.h)));
Jesse Hall399184a2014-03-03 15:42:54 -08001749 }
1750
Mathias Agopian4fec8732012-06-29 14:12:52 -07001751 Region outDirtyRegion;
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001752 if (mQueuedFrames > 0 || mAutoRefresh) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001753
1754 // if we've already called updateTexImage() without going through
1755 // a composition step, we have to skip this layer at this point
1756 // because we cannot call updateTeximage() without a corresponding
1757 // compositionComplete() call.
1758 // we'll trigger an update in onPreComposition().
Mathias Agopian4d143ee2012-02-23 20:05:39 -08001759 if (mRefreshPending) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07001760 return outDirtyRegion;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001761 }
1762
Jamie Gennis351a5132011-09-14 18:23:37 -07001763 // Capture the old state of the layer for comparisons later
Andy McFadden4125a4f2014-01-29 17:17:11 -08001764 const State& s(getDrawingState());
1765 const bool oldOpacity = isOpaque(s);
Jamie Gennis351a5132011-09-14 18:23:37 -07001766 sp<GraphicBuffer> oldActiveBuffer = mActiveBuffer;
Jamie Gennisdb5230f2011-07-28 14:54:07 -07001767
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001768 struct Reject : public SurfaceFlingerConsumer::BufferRejecter {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001769 Layer::State& front;
1770 Layer::State& current;
1771 bool& recomputeVisibleRegions;
Ruben Brunk1681d952014-06-27 15:51:55 -07001772 bool stickyTransformSet;
Robert Carrb5d3d262016-03-25 15:08:13 -07001773 const char* name;
Robert Carrc3574f72016-03-24 12:19:32 -07001774 int32_t overrideScalingMode;
Robert Carrb5d3d262016-03-25 15:08:13 -07001775
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001776 Reject(Layer::State& front, Layer::State& current,
Robert Carrb5d3d262016-03-25 15:08:13 -07001777 bool& recomputeVisibleRegions, bool stickySet,
Robert Carrc3574f72016-03-24 12:19:32 -07001778 const char* name,
1779 int32_t overrideScalingMode)
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001780 : front(front), current(current),
Ruben Brunk1681d952014-06-27 15:51:55 -07001781 recomputeVisibleRegions(recomputeVisibleRegions),
Robert Carrb5d3d262016-03-25 15:08:13 -07001782 stickyTransformSet(stickySet),
Robert Carrc3574f72016-03-24 12:19:32 -07001783 name(name),
1784 overrideScalingMode(overrideScalingMode) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001785 }
1786
1787 virtual bool reject(const sp<GraphicBuffer>& buf,
Dan Stoza11611f92015-03-12 15:12:44 -07001788 const BufferItem& item) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001789 if (buf == NULL) {
1790 return false;
1791 }
1792
1793 uint32_t bufWidth = buf->getWidth();
1794 uint32_t bufHeight = buf->getHeight();
1795
1796 // check that we received a buffer of the right size
1797 // (Take the buffer's orientation into account)
1798 if (item.mTransform & Transform::ROT_90) {
1799 swap(bufWidth, bufHeight);
1800 }
1801
Robert Carrc3574f72016-03-24 12:19:32 -07001802 int actualScalingMode = overrideScalingMode >= 0 ?
1803 overrideScalingMode : item.mScalingMode;
1804 bool isFixedSize = actualScalingMode != NATIVE_WINDOW_SCALING_MODE_FREEZE;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001805 if (front.active != front.requested) {
1806
1807 if (isFixedSize ||
1808 (bufWidth == front.requested.w &&
1809 bufHeight == front.requested.h))
1810 {
1811 // Here we pretend the transaction happened by updating the
1812 // current and drawing states. Drawing state is only accessed
1813 // in this thread, no need to have it locked
1814 front.active = front.requested;
1815
1816 // We also need to update the current state so that
1817 // we don't end-up overwriting the drawing state with
1818 // this stale current state during the next transaction
1819 //
1820 // NOTE: We don't need to hold the transaction lock here
1821 // because State::active is only accessed from this thread.
1822 current.active = front.active;
1823
1824 // recompute visible region
1825 recomputeVisibleRegions = true;
1826 }
1827
1828 ALOGD_IF(DEBUG_RESIZE,
Robert Carrb5d3d262016-03-25 15:08:13 -07001829 "[%s] latchBuffer/reject: buffer (%ux%u, tr=%02x), scalingMode=%d\n"
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001830 " drawing={ active ={ wh={%4u,%4u} crop={%4d,%4d,%4d,%4d} (%4d,%4d) }\n"
Robert Carrb5d3d262016-03-25 15:08:13 -07001831 " requested={ wh={%4u,%4u} }}\n",
1832 name,
Andy McFadden69052052012-09-14 16:10:11 -07001833 bufWidth, bufHeight, item.mTransform, item.mScalingMode,
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001834 front.active.w, front.active.h,
Robert Carrb5d3d262016-03-25 15:08:13 -07001835 front.crop.left,
1836 front.crop.top,
1837 front.crop.right,
1838 front.crop.bottom,
1839 front.crop.getWidth(),
1840 front.crop.getHeight(),
1841 front.requested.w, front.requested.h);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001842 }
1843
Ruben Brunk1681d952014-06-27 15:51:55 -07001844 if (!isFixedSize && !stickyTransformSet) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001845 if (front.active.w != bufWidth ||
1846 front.active.h != bufHeight) {
Mathias Agopian4824d402012-06-04 18:16:30 -07001847 // reject this buffer
Robert Carrb5d3d262016-03-25 15:08:13 -07001848 ALOGE("[%s] rejecting buffer: "
1849 "bufWidth=%d, bufHeight=%d, front.active.{w=%d, h=%d}",
1850 name, bufWidth, bufHeight, front.active.w, front.active.h);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001851 return true;
1852 }
1853 }
Mathias Agopian2ca79392013-04-02 18:30:32 -07001854
1855 // if the transparent region has changed (this test is
1856 // conservative, but that's fine, worst case we're doing
1857 // a bit of extra work), we latch the new one and we
1858 // trigger a visible-region recompute.
1859 if (!front.activeTransparentRegion.isTriviallyEqual(
1860 front.requestedTransparentRegion)) {
1861 front.activeTransparentRegion = front.requestedTransparentRegion;
Mathias Agopian6c67f0f2013-04-12 16:58:11 -07001862
1863 // We also need to update the current state so that
1864 // we don't end-up overwriting the drawing state with
1865 // this stale current state during the next transaction
1866 //
1867 // NOTE: We don't need to hold the transaction lock here
1868 // because State::active is only accessed from this thread.
1869 current.activeTransparentRegion = front.activeTransparentRegion;
1870
1871 // recompute visible region
Mathias Agopian2ca79392013-04-02 18:30:32 -07001872 recomputeVisibleRegions = true;
1873 }
1874
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001875 return false;
1876 }
1877 };
1878
Ruben Brunk1681d952014-06-27 15:51:55 -07001879 Reject r(mDrawingState, getCurrentState(), recomputeVisibleRegions,
Robert Carrc3574f72016-03-24 12:19:32 -07001880 getProducerStickyTransform() != 0, mName.string(),
1881 mOverrideScalingMode);
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001882
Dan Stozacac35382016-01-27 12:21:06 -08001883
1884 // Check all of our local sync points to ensure that all transactions
1885 // which need to have been applied prior to the frame which is about to
1886 // be latched have signaled
1887
1888 auto headFrameNumber = getHeadFrameNumber();
1889 bool matchingFramesFound = false;
1890 bool allTransactionsApplied = true;
Dan Stozaa4650a52015-05-12 12:56:16 -07001891 {
Dan Stozacac35382016-01-27 12:21:06 -08001892 Mutex::Autolock lock(mLocalSyncPointMutex);
1893 for (auto& point : mLocalSyncPoints) {
1894 if (point->getFrameNumber() > headFrameNumber) {
1895 break;
1896 }
1897
1898 matchingFramesFound = true;
1899
1900 if (!point->frameIsAvailable()) {
1901 // We haven't notified the remote layer that the frame for
1902 // this point is available yet. Notify it now, and then
1903 // abort this attempt to latch.
1904 point->setFrameAvailable();
1905 allTransactionsApplied = false;
1906 break;
1907 }
1908
1909 allTransactionsApplied &= point->transactionIsApplied();
Dan Stoza7dde5992015-05-22 09:51:44 -07001910 }
1911 }
1912
Dan Stozacac35382016-01-27 12:21:06 -08001913 if (matchingFramesFound && !allTransactionsApplied) {
1914 mFlinger->signalLayerUpdate();
1915 return outDirtyRegion;
Dan Stozaa4650a52015-05-12 12:56:16 -07001916 }
1917
Pablo Ceballos06312182015-10-07 16:32:12 -07001918 // This boolean is used to make sure that SurfaceFlinger's shadow copy
1919 // of the buffer queue isn't modified when the buffer queue is returning
Pablo Ceballos3559fbf2016-03-17 15:50:23 -07001920 // BufferItem's that weren't actually queued. This can happen in shared
Pablo Ceballos06312182015-10-07 16:32:12 -07001921 // buffer mode.
1922 bool queuedBuffer = false;
Andy McFadden41d67d72014-04-25 16:58:34 -07001923 status_t updateResult = mSurfaceFlingerConsumer->updateTexImage(&r,
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001924 mFlinger->mPrimaryDispSync, &mAutoRefresh, &queuedBuffer,
Dan Stozacac35382016-01-27 12:21:06 -08001925 mLastFrameNumberReceived);
Andy McFadden1585c4d2013-06-28 13:52:40 -07001926 if (updateResult == BufferQueue::PRESENT_LATER) {
1927 // Producer doesn't want buffer to be displayed yet. Signal a
1928 // layer update so we check again at the next opportunity.
1929 mFlinger->signalLayerUpdate();
1930 return outDirtyRegion;
Dan Stozaecc50402015-04-28 14:42:06 -07001931 } else if (updateResult == SurfaceFlingerConsumer::BUFFER_REJECTED) {
1932 // If the buffer has been rejected, remove it from the shadow queue
1933 // and return early
Pablo Ceballos06312182015-10-07 16:32:12 -07001934 if (queuedBuffer) {
1935 Mutex::Autolock lock(mQueueItemLock);
1936 mQueueItems.removeAt(0);
1937 android_atomic_dec(&mQueuedFrames);
1938 }
Dan Stozaecc50402015-04-28 14:42:06 -07001939 return outDirtyRegion;
Dan Stoza65476f32015-05-14 09:27:25 -07001940 } else if (updateResult != NO_ERROR || mUpdateTexImageFailed) {
1941 // This can occur if something goes wrong when trying to create the
1942 // EGLImage for this buffer. If this happens, the buffer has already
1943 // been released, so we need to clean up the queue and bug out
1944 // early.
Pablo Ceballos06312182015-10-07 16:32:12 -07001945 if (queuedBuffer) {
Dan Stoza65476f32015-05-14 09:27:25 -07001946 Mutex::Autolock lock(mQueueItemLock);
1947 mQueueItems.clear();
1948 android_atomic_and(0, &mQueuedFrames);
1949 }
1950
1951 // Once we have hit this state, the shadow queue may no longer
1952 // correctly reflect the incoming BufferQueue's contents, so even if
1953 // updateTexImage starts working, the only safe course of action is
1954 // to continue to ignore updates.
1955 mUpdateTexImageFailed = true;
1956
1957 return outDirtyRegion;
Andy McFadden1585c4d2013-06-28 13:52:40 -07001958 }
1959
Pablo Ceballos06312182015-10-07 16:32:12 -07001960 if (queuedBuffer) {
1961 // Autolock scope
Dan Stozaecc50402015-04-28 14:42:06 -07001962 auto currentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
1963
Dan Stoza6b9454d2014-11-07 16:00:59 -08001964 Mutex::Autolock lock(mQueueItemLock);
Dan Stozaecc50402015-04-28 14:42:06 -07001965
1966 // Remove any stale buffers that have been dropped during
1967 // updateTexImage
1968 while (mQueueItems[0].mFrameNumber != currentFrameNumber) {
1969 mQueueItems.removeAt(0);
1970 android_atomic_dec(&mQueuedFrames);
1971 }
1972
Dan Stoza6b9454d2014-11-07 16:00:59 -08001973 mQueueItems.removeAt(0);
1974 }
1975
Dan Stozaecc50402015-04-28 14:42:06 -07001976
Andy McFadden1585c4d2013-06-28 13:52:40 -07001977 // Decrement the queued-frames count. Signal another event if we
1978 // have more frames pending.
Pablo Ceballos06312182015-10-07 16:32:12 -07001979 if ((queuedBuffer && android_atomic_dec(&mQueuedFrames) > 1)
Pablo Ceballosff95aab2016-01-13 17:09:58 -08001980 || mAutoRefresh) {
Andy McFadden1585c4d2013-06-28 13:52:40 -07001981 mFlinger->signalLayerUpdate();
1982 }
1983
1984 if (updateResult != NO_ERROR) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001985 // something happened!
1986 recomputeVisibleRegions = true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001987 return outDirtyRegion;
Mathias Agopiana67932f2011-04-20 14:20:59 -07001988 }
Mathias Agopian96f08192010-06-02 23:28:45 -07001989
Jamie Gennis351a5132011-09-14 18:23:37 -07001990 // update the active buffer
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001991 mActiveBuffer = mSurfaceFlingerConsumer->getCurrentBuffer();
Mathias Agopiane31564d2012-05-29 20:41:03 -07001992 if (mActiveBuffer == NULL) {
1993 // this can only happen if the very first buffer was rejected.
Mathias Agopian4fec8732012-06-29 14:12:52 -07001994 return outDirtyRegion;
Mathias Agopiane31564d2012-05-29 20:41:03 -07001995 }
Mathias Agopianda9584d2010-12-13 18:51:59 -08001996
Mathias Agopian4824d402012-06-04 18:16:30 -07001997 mRefreshPending = true;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07001998 mFrameLatencyNeeded = true;
Mathias Agopiane31564d2012-05-29 20:41:03 -07001999 if (oldActiveBuffer == NULL) {
Mathias Agopian2c8207e2012-05-23 17:56:42 -07002000 // the first time we receive a buffer, we need to trigger a
2001 // geometry invalidation.
Andy McFaddenab10c582012-09-26 16:19:12 -07002002 recomputeVisibleRegions = true;
Mathias Agopian2c8207e2012-05-23 17:56:42 -07002003 }
2004
Andy McFaddenbf974ab2012-12-04 16:51:15 -08002005 Rect crop(mSurfaceFlingerConsumer->getCurrentCrop());
2006 const uint32_t transform(mSurfaceFlingerConsumer->getCurrentTransform());
2007 const uint32_t scalingMode(mSurfaceFlingerConsumer->getCurrentScalingMode());
Mathias Agopian702634a2012-05-23 17:50:31 -07002008 if ((crop != mCurrentCrop) ||
2009 (transform != mCurrentTransform) ||
2010 (scalingMode != mCurrentScalingMode))
2011 {
2012 mCurrentCrop = crop;
2013 mCurrentTransform = transform;
2014 mCurrentScalingMode = scalingMode;
Andy McFaddenab10c582012-09-26 16:19:12 -07002015 recomputeVisibleRegions = true;
Mathias Agopian702634a2012-05-23 17:50:31 -07002016 }
2017
2018 if (oldActiveBuffer != NULL) {
Mathias Agopiane31564d2012-05-29 20:41:03 -07002019 uint32_t bufWidth = mActiveBuffer->getWidth();
2020 uint32_t bufHeight = mActiveBuffer->getHeight();
Mathias Agopian702634a2012-05-23 17:50:31 -07002021 if (bufWidth != uint32_t(oldActiveBuffer->width) ||
2022 bufHeight != uint32_t(oldActiveBuffer->height)) {
Andy McFaddenab10c582012-09-26 16:19:12 -07002023 recomputeVisibleRegions = true;
Mathias Agopian702634a2012-05-23 17:50:31 -07002024 }
2025 }
2026
2027 mCurrentOpacity = getOpacityForFormat(mActiveBuffer->format);
Andy McFadden4125a4f2014-01-29 17:17:11 -08002028 if (oldOpacity != isOpaque(s)) {
Mathias Agopian702634a2012-05-23 17:50:31 -07002029 recomputeVisibleRegions = true;
2030 }
2031
Dan Stozacac35382016-01-27 12:21:06 -08002032 mCurrentFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2033
2034 // Remove any sync points corresponding to the buffer which was just
2035 // latched
2036 {
2037 Mutex::Autolock lock(mLocalSyncPointMutex);
2038 auto point = mLocalSyncPoints.begin();
2039 while (point != mLocalSyncPoints.end()) {
2040 if (!(*point)->frameIsAvailable() ||
2041 !(*point)->transactionIsApplied()) {
2042 // This sync point must have been added since we started
2043 // latching. Don't drop it yet.
2044 ++point;
2045 continue;
2046 }
2047
2048 if ((*point)->getFrameNumber() <= mCurrentFrameNumber) {
2049 point = mLocalSyncPoints.erase(point);
2050 } else {
2051 ++point;
2052 }
2053 }
2054 }
2055
Mathias Agopian4fec8732012-06-29 14:12:52 -07002056 // FIXME: postedRegion should be dirty & bounds
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002057 Region dirtyRegion(Rect(s.active.w, s.active.h));
Mathias Agopian4fec8732012-06-29 14:12:52 -07002058
2059 // transform the dirty region to window-manager space
Robert Carr3dcabfa2016-03-01 18:36:58 -08002060 outDirtyRegion = (s.active.transform.transform(dirtyRegion));
Mathias Agopiancaa600c2009-09-16 18:27:24 -07002061 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002062 return outDirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002063}
2064
Mathias Agopiana67932f2011-04-20 14:20:59 -07002065uint32_t Layer::getEffectiveUsage(uint32_t usage) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002066{
Mathias Agopiana67932f2011-04-20 14:20:59 -07002067 // TODO: should we do something special if mSecure is set?
2068 if (mProtectedByApp) {
2069 // need a hardware-protected path to external video sink
2070 usage |= GraphicBuffer::USAGE_PROTECTED;
Jamie Gennis54cc83e2010-11-02 11:51:32 -07002071 }
Riley Andrews03414a12014-07-01 14:22:59 -07002072 if (mPotentialCursor) {
2073 usage |= GraphicBuffer::USAGE_CURSOR;
2074 }
Jamie Gennis3599bf22011-08-10 11:48:07 -07002075 usage |= GraphicBuffer::USAGE_HW_COMPOSER;
Mathias Agopiana67932f2011-04-20 14:20:59 -07002076 return usage;
Mathias Agopianb5b7f262010-05-07 15:58:44 -07002077}
2078
Mathias Agopian84300952012-11-21 16:02:13 -08002079void Layer::updateTransformHint(const sp<const DisplayDevice>& hw) const {
Mathias Agopiana4583642011-08-23 18:03:18 -07002080 uint32_t orientation = 0;
2081 if (!mFlinger->mDebugDisableTransformHint) {
Mathias Agopian84300952012-11-21 16:02:13 -08002082 // The transform hint is used to improve performance, but we can
2083 // only have a single transform hint, it cannot
Mathias Agopian4fec8732012-06-29 14:12:52 -07002084 // apply to all displays.
Mathias Agopian42977342012-08-05 00:40:46 -07002085 const Transform& planeTransform(hw->getTransform());
Mathias Agopian4fec8732012-06-29 14:12:52 -07002086 orientation = planeTransform.getOrientation();
Mathias Agopiana4583642011-08-23 18:03:18 -07002087 if (orientation & Transform::ROT_INVALID) {
2088 orientation = 0;
2089 }
2090 }
Andy McFaddenbf974ab2012-12-04 16:51:15 -08002091 mSurfaceFlingerConsumer->setTransformHint(orientation);
Mathias Agopiana4583642011-08-23 18:03:18 -07002092}
2093
Mathias Agopian13127d82013-03-05 17:47:11 -08002094// ----------------------------------------------------------------------------
2095// debugging
2096// ----------------------------------------------------------------------------
2097
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002098void Layer::dump(String8& result, Colorizer& colorizer) const
Mathias Agopian13127d82013-03-05 17:47:11 -08002099{
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002100 const Layer::State& s(getDrawingState());
Mathias Agopian13127d82013-03-05 17:47:11 -08002101
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002102 colorizer.colorize(result, Colorizer::GREEN);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002103 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002104 "+ %s %p (%s)\n",
2105 getTypeId(), this, getName().string());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02002106 colorizer.reset(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002107
Mathias Agopian2ca79392013-04-02 18:30:32 -07002108 s.activeTransparentRegion.dump(result, "transparentRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002109 visibleRegion.dump(result, "visibleRegion");
Dan Stozaee44edd2015-03-23 15:50:23 -07002110 surfaceDamageRegion.dump(result, "surfaceDamageRegion");
Mathias Agopian13127d82013-03-05 17:47:11 -08002111 sp<Client> client(mClientRef.promote());
2112
Mathias Agopian74d211a2013-04-22 16:55:35 +02002113 result.appendFormat( " "
Pablo Ceballosacbe6782016-03-04 17:54:21 +00002114 "layerStack=%4d, z=%9d, pos=(%g,%g), size=(%4d,%4d), "
2115 "crop=(%4d,%4d,%4d,%4d), finalCrop=(%4d,%4d,%4d,%4d), "
Mathias Agopian13127d82013-03-05 17:47:11 -08002116 "isOpaque=%1d, invalidate=%1d, "
Dan Stoza9e56aa02015-11-02 13:00:03 -08002117#ifdef USE_HWC2
2118 "alpha=%.3f, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
2119#else
Mathias Agopian13127d82013-03-05 17:47:11 -08002120 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n"
Dan Stoza9e56aa02015-11-02 13:00:03 -08002121#endif
Mathias Agopian13127d82013-03-05 17:47:11 -08002122 " client=%p\n",
Robert Carr3dcabfa2016-03-01 18:36:58 -08002123 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 -07002124 s.crop.left, s.crop.top,
2125 s.crop.right, s.crop.bottom,
2126 s.finalCrop.left, s.finalCrop.top,
2127 s.finalCrop.right, s.finalCrop.bottom,
Andy McFadden4125a4f2014-01-29 17:17:11 -08002128 isOpaque(s), contentDirty,
Mathias Agopian13127d82013-03-05 17:47:11 -08002129 s.alpha, s.flags,
Robert Carr3dcabfa2016-03-01 18:36:58 -08002130 s.active.transform[0][0], s.active.transform[0][1],
2131 s.active.transform[1][0], s.active.transform[1][1],
Mathias Agopian13127d82013-03-05 17:47:11 -08002132 client.get());
Mathias Agopian13127d82013-03-05 17:47:11 -08002133
2134 sp<const GraphicBuffer> buf0(mActiveBuffer);
2135 uint32_t w0=0, h0=0, s0=0, f0=0;
2136 if (buf0 != 0) {
2137 w0 = buf0->getWidth();
2138 h0 = buf0->getHeight();
2139 s0 = buf0->getStride();
2140 f0 = buf0->format;
2141 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02002142 result.appendFormat(
Mathias Agopian13127d82013-03-05 17:47:11 -08002143 " "
2144 "format=%2d, activeBuffer=[%4ux%4u:%4u,%3X],"
2145 " queued-frames=%d, mRefreshPending=%d\n",
2146 mFormat, w0, h0, s0,f0,
2147 mQueuedFrames, mRefreshPending);
2148
Mathias Agopian13127d82013-03-05 17:47:11 -08002149 if (mSurfaceFlingerConsumer != 0) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002150 mSurfaceFlingerConsumer->dump(result, " ");
Mathias Agopian13127d82013-03-05 17:47:11 -08002151 }
2152}
2153
Svetoslavd85084b2014-03-20 10:28:31 -07002154void Layer::dumpFrameStats(String8& result) const {
2155 mFrameTracker.dumpStats(result);
Mathias Agopian13127d82013-03-05 17:47:11 -08002156}
2157
Svetoslavd85084b2014-03-20 10:28:31 -07002158void Layer::clearFrameStats() {
2159 mFrameTracker.clearStats();
Mathias Agopian13127d82013-03-05 17:47:11 -08002160}
2161
Jamie Gennis6547ff42013-07-16 20:12:42 -07002162void Layer::logFrameStats() {
2163 mFrameTracker.logAndResetStats(mName);
2164}
2165
Svetoslavd85084b2014-03-20 10:28:31 -07002166void Layer::getFrameStats(FrameStats* outStats) const {
2167 mFrameTracker.getStats(outStats);
2168}
2169
Pablo Ceballos40845df2016-01-25 17:41:15 -08002170void Layer::getFenceData(String8* outName, uint64_t* outFrameNumber,
2171 bool* outIsGlesComposition, nsecs_t* outPostedTime,
2172 sp<Fence>* outAcquireFence, sp<Fence>* outPrevReleaseFence) const {
2173 *outName = mName;
2174 *outFrameNumber = mSurfaceFlingerConsumer->getFrameNumber();
2175
2176#ifdef USE_HWC2
2177 *outIsGlesComposition = mHwcLayers.count(HWC_DISPLAY_PRIMARY) ?
2178 mHwcLayers.at(HWC_DISPLAY_PRIMARY).compositionType ==
2179 HWC2::Composition::Client : true;
2180#else
2181 *outIsGlesComposition = mIsGlesComposition;
2182#endif
2183 *outPostedTime = mSurfaceFlingerConsumer->getTimestamp();
2184 *outAcquireFence = mSurfaceFlingerConsumer->getCurrentFence();
2185 *outPrevReleaseFence = mSurfaceFlingerConsumer->getPrevReleaseFence();
2186}
Mathias Agopian13127d82013-03-05 17:47:11 -08002187// ---------------------------------------------------------------------------
2188
2189Layer::LayerCleaner::LayerCleaner(const sp<SurfaceFlinger>& flinger,
2190 const sp<Layer>& layer)
2191 : mFlinger(flinger), mLayer(layer) {
2192}
2193
2194Layer::LayerCleaner::~LayerCleaner() {
2195 // destroy client resources
2196 mFlinger->onLayerDestroyed(mLayer);
2197}
2198
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002199// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002200}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07002201
2202#if defined(__gl_h_)
2203#error "don't include gl/gl.h in this file"
2204#endif
2205
2206#if defined(__gl2_h_)
2207#error "don't include gl2/gl2.h in this file"
2208#endif