blob: 87fd2f1e72d8cd16c89ebccb814ffdd5a30047e4 [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
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080018#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020#include <stdint.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070021#include <sys/types.h>
Romain Guy0147a172017-06-01 13:53:56 -070022#include <algorithm>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023#include <errno.h>
24#include <math.h>
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -070025#include <mutex>
Keun young Park63f165f2012-08-31 10:53:36 -070026#include <dlfcn.h>
Greg Hackmann86efcc02014-03-07 12:44:02 -080027#include <inttypes.h>
Jesse Hallb154c422014-07-13 12:47:02 -070028#include <stdatomic.h>
Dan Stoza2b6d38e2017-06-01 16:40:30 -070029#include <optional>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070030
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080031#include <cutils/properties.h>
Mark Salyzyn7823e122016-09-29 08:08:05 -070032#include <log/log.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080033
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070034#include <binder/IPCThreadState.h>
35#include <binder/IServiceManager.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070036#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070037
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -080038#include <dvr/vr_flinger.h>
39
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -060040#include <ui/DebugUtils.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070041#include <ui/DisplayInfo.h>
Lajos Molnar67d8bd62014-09-11 14:58:45 -070042#include <ui/DisplayStatInfo.h>
Mathias Agopianc666cae2012-07-25 18:56:13 -070043
Jamie Gennis1a4d8832012-08-02 20:11:05 -070044#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070045#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070046#include <gui/IDisplayEventConnection.h>
Kalle Raitaa099a242017-01-11 11:17:29 -080047#include <gui/LayerDebugInfo.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080048#include <gui/Surface.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070049
50#include <ui/GraphicBufferAllocator.h>
51#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070052#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080053
Mathias Agopiancde87a32012-09-13 14:09:01 -070054#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055#include <utils/String8.h>
56#include <utils/String16.h>
57#include <utils/StopWatch.h>
Yusuke Sato0a688f52015-07-30 23:05:39 -070058#include <utils/Timers.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080059#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060
Mathias Agopian921e6ac2012-07-23 23:11:29 -070061#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070062#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080063
Mathias Agopian3e25fd82013-04-22 17:52:16 +020064#include "Client.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include "clz.h"
Mathias Agopian3e25fd82013-04-22 17:52:16 +020066#include "Colorizer.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080067#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070068#include "DisplayDevice.h"
Jamie Gennisfaf77cc2013-07-30 15:10:32 -070069#include "DispSync.h"
Jamie Gennisd1700752013-10-14 12:22:52 -070070#include "EventControlThread.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080071#include "EventThread.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072#include "Layer.h"
David Sodman0c69cad2017-08-21 12:12:51 -070073#include "BufferLayer.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070074#include "LayerVector.h"
chaviw13fdc492017-06-27 12:40:18 -070075#include "ColorLayer.h"
Robert Carr1db73f62016-12-21 12:58:51 -080076#include "MonitoredProducer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080078
Steven Thomasb02664d2017-07-26 18:48:28 -070079#include "DisplayHardware/ComposerHal.h"
Mathias Agopiana4912602012-07-12 14:25:33 -070080#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070081#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070082#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080083
Mathias Agopianff2ed702013-09-01 21:36:12 -070084#include "Effects/Daltonizer.h"
85
Mathias Agopian875d8e12013-06-07 15:35:48 -070086#include "RenderEngine/RenderEngine.h"
Mathias Agopianff2ed702013-09-01 21:36:12 -070087#include <cutils/compiler.h>
Mathias Agopian875d8e12013-06-07 15:35:48 -070088
Jiyong Park4b20c2e2017-01-14 19:45:11 +090089#include <android/hardware/configstore/1.0/ISurfaceFlingerConfigs.h>
Jaesoo Lee43518572017-01-23 19:03:16 +090090#include <configstore/Utils.h>
Jiyong Park4b20c2e2017-01-14 19:45:11 +090091
chaviw1d044282017-09-27 12:19:28 -070092#include <layerproto/LayerProtoParser.h>
93
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094#define DISPLAY_COUNT 1
95
Mathias Agopianfee2b462013-07-03 12:34:01 -070096/*
97 * DEBUG_SCREENSHOTS: set to true to check that screenshots are not all
98 * black pixels.
99 */
100#define DEBUG_SCREENSHOTS false
101
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800102namespace android {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700103
Jaesoo Lee43518572017-01-23 19:03:16 +0900104using namespace android::hardware::configstore;
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900105using namespace android::hardware::configstore::V1_0;
106
Steven Thomasb02664d2017-07-26 18:48:28 -0700107namespace {
108class ConditionalLock {
109public:
110 ConditionalLock(Mutex& mutex, bool lock) : mMutex(mutex), mLocked(lock) {
111 if (lock) {
112 mMutex.lock();
113 }
114 }
115 ~ConditionalLock() { if (mLocked) mMutex.unlock(); }
116private:
117 Mutex& mMutex;
118 bool mLocked;
119};
120} // namespace anonymous
121
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800122// ---------------------------------------------------------------------------
123
Mathias Agopian99b49842011-06-27 16:05:52 -0700124const String16 sHardwareTest("android.permission.HARDWARE_TEST");
125const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
126const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
127const String16 sDump("android.permission.DUMP");
128
129// ---------------------------------------------------------------------------
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800130int64_t SurfaceFlinger::vsyncPhaseOffsetNs;
131int64_t SurfaceFlinger::sfVsyncPhaseOffsetNs;
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700132int64_t SurfaceFlinger::dispSyncPresentTimeOffset;
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700133bool SurfaceFlinger::useHwcForRgbToYuv;
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800134uint64_t SurfaceFlinger::maxVirtualDisplaySize;
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800135bool SurfaceFlinger::hasSyncFramework;
Steven Thomas050b2c82017-03-06 11:45:16 -0800136bool SurfaceFlinger::useVrFlinger;
Fabien Sanglard1971b632017-03-10 14:50:03 -0800137int64_t SurfaceFlinger::maxFrameBufferAcquiredBuffers;
Lloyd Piquec5208312018-01-08 17:59:02 -0800138// TODO(courtneygo): Rename hasWideColorDisplay to clarify its actual meaning.
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600139bool SurfaceFlinger::hasWideColorDisplay;
Mathias Agopian99b49842011-06-27 16:05:52 -0700140
Kalle Raitaa099a242017-01-11 11:17:29 -0800141
142std::string getHwcServiceName() {
143 char value[PROPERTY_VALUE_MAX] = {};
144 property_get("debug.sf.hwc_service_name", value, "default");
145 ALOGI("Using HWComposer service: '%s'", value);
146 return std::string(value);
147}
148
149bool useTrebleTestingOverride() {
150 char value[PROPERTY_VALUE_MAX] = {};
151 property_get("debug.sf.treble_testing_override", value, "false");
152 ALOGI("Treble testing override: '%s'", value);
153 return std::string(value) == "true";
154}
155
David Sodmanbc815282017-11-05 18:57:52 -0800156SurfaceFlingerBE::SurfaceFlingerBE()
157 : mHwcServiceName(getHwcServiceName()),
158 mRenderEngine(nullptr),
David Sodman4a36e932017-11-07 14:29:47 -0800159 mFrameBuckets(),
160 mTotalTime(0),
161 mLastSwapTime(0),
David Sodmanbc815282017-11-05 18:57:52 -0800162 mComposerSequenceId(0) {
163}
164
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165SurfaceFlinger::SurfaceFlinger()
Lloyd Pique12eb4232018-01-17 11:54:43 -0800166 : BnSurfaceComposer(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800167 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700168 mTransactionPending(false),
169 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700170 mLayersRemoved(false),
Robert Carr1f0a16a2016-10-24 16:27:39 -0700171 mLayersAdded(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700172 mRepaintEverything(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173 mBootTime(systemTime()),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800174 mBuiltinDisplays(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800175 mVisibleRegionsDirty(false),
Dan Stoza9e56aa02015-11-02 13:00:03 -0800176 mGeometryInvalid(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800177 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800178 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700179 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -0700180 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700181 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700182 mDebugInSwapBuffers(0),
183 mLastSwapBufferTime(0),
184 mDebugInTransaction(0),
185 mLastTransactionTime(0),
Mathias Agopianff2ed702013-09-01 21:36:12 -0700186 mBootFinished(false),
Dan Stozaee44edd2015-03-23 15:50:23 -0700187 mForceFullDamage(false),
Robert Carr0d480722017-01-10 16:42:54 -0800188 mInterceptor(this),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000189 mPrimaryDispSync("PrimaryDispSync"),
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700190 mPrimaryHWVsyncEnabled(false),
Jesse Hall948fe0c2013-10-14 12:56:09 -0700191 mHWVsyncAvailable(false),
Romain Guya9638732017-06-01 12:05:21 -0700192 mHasColorMatrix(false),
Dan Stozab90cf072015-03-05 11:05:59 -0800193 mHasPoweredOff(false),
Steven Thomas050b2c82017-03-06 11:45:16 -0800194 mNumLayers(0),
Steven Thomasb02664d2017-07-26 18:48:28 -0700195 mVrFlingerRequestsDisplay(false),
Lloyd Pique12eb4232018-01-17 11:54:43 -0800196 mMainThreadId(std::this_thread::get_id()),
197 mCreateBufferQueue(&BufferQueue::createBufferQueue) {
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800198 ALOGI("SurfaceFlinger is starting");
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800199
200 vsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
201 &ISurfaceFlingerConfigs::vsyncEventPhaseOffsetNs>(1000000);
202
203 sfVsyncPhaseOffsetNs = getInt64< ISurfaceFlingerConfigs,
204 &ISurfaceFlingerConfigs::vsyncSfEventPhaseOffsetNs>(1000000);
205
Fabien Sanglardcbf153b2017-03-10 17:57:12 -0800206 hasSyncFramework = getBool< ISurfaceFlingerConfigs,
207 &ISurfaceFlingerConfigs::hasSyncFramework>(true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800208
Fabien Sanglardc45a7d92017-03-14 13:24:22 -0700209 dispSyncPresentTimeOffset = getInt64< ISurfaceFlingerConfigs,
210 &ISurfaceFlingerConfigs::presentTimeOffsetFromVSyncNs>(0);
211
Fabien Sanglarda34ed632017-03-14 11:43:52 -0700212 useHwcForRgbToYuv = getBool< ISurfaceFlingerConfigs,
213 &ISurfaceFlingerConfigs::useHwcForRGBtoYUV>(false);
214
Fabien Sanglardc8e387e2017-03-10 10:30:28 -0800215 maxVirtualDisplaySize = getUInt64<ISurfaceFlingerConfigs,
216 &ISurfaceFlingerConfigs::maxVirtualDisplaySize>(0);
217
Steven Thomas050b2c82017-03-06 11:45:16 -0800218 // Vr flinger is only enabled on Daydream ready devices.
219 useVrFlinger = getBool< ISurfaceFlingerConfigs,
220 &ISurfaceFlingerConfigs::useVrFlinger>(false);
221
Fabien Sanglard1971b632017-03-10 14:50:03 -0800222 maxFrameBufferAcquiredBuffers = getInt64< ISurfaceFlingerConfigs,
223 &ISurfaceFlingerConfigs::maxFrameBufferAcquiredBuffers>(2);
224
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600225 hasWideColorDisplay =
226 getBool<ISurfaceFlingerConfigs, &ISurfaceFlingerConfigs::hasWideColorDisplay>(false);
227
David Sodman99974d22017-11-28 12:04:33 -0800228 mPrimaryDispSync.init(SurfaceFlinger::hasSyncFramework, SurfaceFlinger::dispSyncPresentTimeOffset);
Saurabh Shahf4174532017-07-13 10:45:07 -0700229
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230 // debugging stuff...
231 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700232
Mathias Agopianb4b17302013-03-20 18:36:41 -0700233 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700234 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700235
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 property_get("debug.sf.showupdates", value, "0");
237 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700238
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700239 property_get("debug.sf.ddms", value, "0");
240 mDebugDDMS = atoi(value);
241 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700242 if (!startDdmConnection()) {
243 // start failed, and DDMS debugging not enabled
244 mDebugDDMS = 0;
245 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700246 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700247 ALOGI_IF(mDebugRegion, "showupdates enabled");
248 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
Dan Stozac5da2712016-07-20 15:38:12 -0700249
250 property_get("debug.sf.disable_backpressure", value, "0");
251 mPropagateBackpressure = !atoi(value);
252 ALOGI_IF(!mPropagateBackpressure, "Disabling backpressure propagation");
Dan Stoza8cf150a2016-08-02 10:27:31 -0700253
Fabien Sanglard642b23d2017-02-09 12:29:39 -0800254 property_get("debug.sf.enable_hwc_vds", value, "0");
255 mUseHwcVirtualDisplays = atoi(value);
256 ALOGI_IF(!mUseHwcVirtualDisplays, "Enabling HWC virtual displays");
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800257
Fabien Sanglardc65dafa2017-02-07 14:06:39 -0800258 property_get("ro.sf.disable_triple_buffer", value, "1");
259 mLayerTripleBufferingDisabled = atoi(value);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -0800260 ALOGI_IF(mLayerTripleBufferingDisabled, "Disabling Triple Buffering");
Romain Guy3054f002017-06-05 18:38:53 -0700261
Romain Guy11d63f42017-07-20 12:47:14 -0700262 // We should be reading 'persist.sys.sf.color_saturation' here
263 // but since /data may be encrypted, we need to wait until after vold
264 // comes online to attempt to read the property. The property is
265 // instead read after the boot animation
Kalle Raitaa099a242017-01-11 11:17:29 -0800266
267 if (useTrebleTestingOverride()) {
268 // Without the override SurfaceFlinger cannot connect to HIDL
269 // services that are not listed in the manifests. Considered
270 // deriving the setting from the set service name, but it
271 // would be brittle if the name that's not 'default' is used
272 // for production purposes later on.
273 setenv("TREBLE_TESTING_OVERRIDE", "true", true);
274 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800275}
276
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800277void SurfaceFlinger::onFirstRef()
278{
279 mEventQueue.init(this);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800280}
281
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800282SurfaceFlinger::~SurfaceFlinger()
283{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800284}
285
Dan Stozac7014012014-02-14 15:03:43 -0800286void SurfaceFlinger::binderDied(const wp<IBinder>& /* who */)
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800287{
288 // the window manager died on us. prepare its eulogy.
289
Andy McFadden13a082e2012-08-24 10:16:42 -0700290 // restore initial conditions (default device unblank, etc)
291 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800292
293 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700294 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800295}
296
Robert Carr1db73f62016-12-21 12:58:51 -0800297static sp<ISurfaceComposerClient> initClient(const sp<Client>& client) {
Mathias Agopian96f08192010-06-02 23:28:45 -0700298 status_t err = client->initCheck();
299 if (err == NO_ERROR) {
Robert Carr1db73f62016-12-21 12:58:51 -0800300 return client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800301 }
Robert Carr1db73f62016-12-21 12:58:51 -0800302 return nullptr;
303}
304
305sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() {
306 return initClient(new Client(this));
307}
308
309sp<ISurfaceComposerClient> SurfaceFlinger::createScopedConnection(
310 const sp<IGraphicBufferProducer>& gbp) {
311 if (authenticateSurfaceTexture(gbp) == false) {
312 return nullptr;
313 }
314 const auto& layer = (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
315 if (layer == nullptr) {
316 return nullptr;
317 }
318
319 return initClient(new Client(this, layer));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800320}
321
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700322sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
323 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700324{
325 class DisplayToken : public BBinder {
326 sp<SurfaceFlinger> flinger;
327 virtual ~DisplayToken() {
328 // no more references, this display must be terminated
329 Mutex::Autolock _l(flinger->mStateLock);
330 flinger->mCurrentState.displays.removeItem(this);
331 flinger->setTransactionFlags(eDisplayTransactionNeeded);
332 }
333 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -0700334 explicit DisplayToken(const sp<SurfaceFlinger>& flinger)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700335 : flinger(flinger) {
336 }
337 };
338
339 sp<BBinder> token = new DisplayToken(this);
340
341 Mutex::Autolock _l(mStateLock);
Pablo Ceballos53390e12015-08-04 11:25:59 -0700342 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL, secure);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700343 info.displayName = displayName;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700344 mCurrentState.displays.add(token, info);
Irvelffc9efc2016-07-27 15:16:37 -0700345 mInterceptor.saveDisplayCreation(info);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700346 return token;
347}
348
Jesse Hall6c913be2013-08-08 12:15:49 -0700349void SurfaceFlinger::destroyDisplay(const sp<IBinder>& display) {
350 Mutex::Autolock _l(mStateLock);
351
352 ssize_t idx = mCurrentState.displays.indexOfKey(display);
353 if (idx < 0) {
354 ALOGW("destroyDisplay: invalid display token");
355 return;
356 }
357
358 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
359 if (!info.isVirtualDisplay()) {
360 ALOGE("destroyDisplay called for non-virtual display");
361 return;
362 }
Irvelffc9efc2016-07-27 15:16:37 -0700363 mInterceptor.saveDisplayDeletion(info.displayId);
Jesse Hall6c913be2013-08-08 12:15:49 -0700364 mCurrentState.displays.removeItemsAt(idx);
365 setTransactionFlags(eDisplayTransactionNeeded);
366}
367
Mathias Agopiane57f2922012-08-09 16:29:12 -0700368sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Jesse Hall9e663de2013-08-16 14:28:37 -0700369 if (uint32_t(id) >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700370 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
Peiyong Lin566a3b42018-01-09 18:22:43 -0800371 return nullptr;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700372 }
Jesse Hall692c7232012-11-08 15:41:56 -0800373 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700374}
375
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800376void SurfaceFlinger::bootFinished()
377{
Wei Wangf9b05ee2017-07-19 20:59:39 -0700378 if (mStartPropertySetThread->join() != NO_ERROR) {
379 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800380 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800381 const nsecs_t now = systemTime();
382 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000383 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700384
385 // wait patiently for the window manager death
386 const String16 name("window");
387 sp<IBinder> window(defaultServiceManager()->getService(name));
388 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700389 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700390 }
391
Steven Thomas050b2c82017-03-06 11:45:16 -0800392 if (mVrFlinger) {
393 mVrFlinger->OnBootFinished();
394 }
395
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700396 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700397 // formerly we would just kill the process, but we now ask it to exit so it
398 // can choose where to stop the animation.
399 property_set("service.bootanim.exit", "1");
Yusuke Sato0a688f52015-07-30 23:05:39 -0700400
401 const int LOGTAG_SF_STOP_BOOTANIM = 60110;
402 LOG_EVENT_LONG(LOGTAG_SF_STOP_BOOTANIM,
403 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
Romain Guy11d63f42017-07-20 12:47:14 -0700404
Thierry Strudel2924d012017-08-14 15:19:37 -0700405 sp<LambdaMessage> readProperties = new LambdaMessage([&]() {
Romain Guy11d63f42017-07-20 12:47:14 -0700406 readPersistentProperties();
407 });
Thierry Strudel2924d012017-08-14 15:19:37 -0700408 postMessageAsync(readProperties);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800409}
410
Mathias Agopian3f844832013-08-07 21:24:32 -0700411void SurfaceFlinger::deleteTextureAsync(uint32_t texture) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700412 class MessageDestroyGLTexture : public MessageBase {
Lloyd Pique144e1162017-12-20 16:44:52 -0800413 RE::RenderEngine& engine;
Mathias Agopian3f844832013-08-07 21:24:32 -0700414 uint32_t texture;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700415 public:
Lloyd Pique144e1162017-12-20 16:44:52 -0800416 MessageDestroyGLTexture(RE::RenderEngine& engine, uint32_t texture)
417 : engine(engine), texture(texture) {}
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700418 virtual bool handler() {
Mathias Agopian3f844832013-08-07 21:24:32 -0700419 engine.deleteTextures(1, &texture);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700420 return true;
421 }
422 };
Mathias Agopian3f844832013-08-07 21:24:32 -0700423 postMessageAsync(new MessageDestroyGLTexture(getRenderEngine(), texture));
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700424}
425
Lloyd Piquee83f9312018-02-01 12:53:17 -0800426class DispSyncSource final : public VSyncSource, private DispSync::Callback {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700427public:
Andy McFadden5167ec62014-05-22 13:08:43 -0700428 DispSyncSource(DispSync* dispSync, nsecs_t phaseOffset, bool traceVsync,
Tim Murray4a4e4a22016-04-19 16:29:23 +0000429 const char* name) :
430 mName(name),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700431 mValue(0),
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700432 mTraceVsync(traceVsync),
Tim Murray4a4e4a22016-04-19 16:29:23 +0000433 mVsyncOnLabel(String8::format("VsyncOn-%s", name)),
434 mVsyncEventLabel(String8::format("VSYNC-%s", name)),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700435 mDispSync(dispSync),
436 mCallbackMutex(),
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700437 mVsyncMutex(),
438 mPhaseOffset(phaseOffset),
439 mEnabled(false) {}
Mathias Agopiana4912602012-07-12 14:25:33 -0700440
Lloyd Piquee83f9312018-02-01 12:53:17 -0800441 ~DispSyncSource() override = default;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700442
Lloyd Piquee83f9312018-02-01 12:53:17 -0800443 void setVSyncEnabled(bool enable) override {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700444 Mutex::Autolock lock(mVsyncMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700445 if (enable) {
Tim Murray4a4e4a22016-04-19 16:29:23 +0000446 status_t err = mDispSync->addEventListener(mName, mPhaseOffset,
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700447 static_cast<DispSync::Callback*>(this));
448 if (err != NO_ERROR) {
449 ALOGE("error registering vsync callback: %s (%d)",
450 strerror(-err), err);
451 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700452 //ATRACE_INT(mVsyncOnLabel.string(), 1);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700453 } else {
454 status_t err = mDispSync->removeEventListener(
455 static_cast<DispSync::Callback*>(this));
456 if (err != NO_ERROR) {
457 ALOGE("error unregistering vsync callback: %s (%d)",
458 strerror(-err), err);
459 }
Andy McFadden5167ec62014-05-22 13:08:43 -0700460 //ATRACE_INT(mVsyncOnLabel.string(), 0);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700461 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700462 mEnabled = enable;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700463 }
464
Lloyd Piquee83f9312018-02-01 12:53:17 -0800465 void setCallback(VSyncSource::Callback* callback) override{
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700466 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700467 mCallback = callback;
468 }
469
Lloyd Piquee83f9312018-02-01 12:53:17 -0800470 void setPhaseOffset(nsecs_t phaseOffset) override {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700471 Mutex::Autolock lock(mVsyncMutex);
472
473 // Normalize phaseOffset to [0, period)
474 auto period = mDispSync->getPeriod();
475 phaseOffset %= period;
476 if (phaseOffset < 0) {
477 // If we're here, then phaseOffset is in (-period, 0). After this
478 // operation, it will be in (0, period)
479 phaseOffset += period;
480 }
481 mPhaseOffset = phaseOffset;
482
483 // If we're not enabled, we don't need to mess with the listeners
484 if (!mEnabled) {
485 return;
486 }
487
488 // Remove the listener with the old offset
489 status_t err = mDispSync->removeEventListener(
490 static_cast<DispSync::Callback*>(this));
491 if (err != NO_ERROR) {
492 ALOGE("error unregistering vsync callback: %s (%d)",
493 strerror(-err), err);
494 }
495
496 // Add a listener with the new offset
Tim Murray4a4e4a22016-04-19 16:29:23 +0000497 err = mDispSync->addEventListener(mName, mPhaseOffset,
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700498 static_cast<DispSync::Callback*>(this));
499 if (err != NO_ERROR) {
500 ALOGE("error registering vsync callback: %s (%d)",
501 strerror(-err), err);
502 }
503 }
504
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700505private:
506 virtual void onDispSyncEvent(nsecs_t when) {
Lloyd Piquee83f9312018-02-01 12:53:17 -0800507 VSyncSource::Callback* callback;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700508 {
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700509 Mutex::Autolock lock(mCallbackMutex);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700510 callback = mCallback;
511
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700512 if (mTraceVsync) {
513 mValue = (mValue + 1) % 2;
Andy McFadden5167ec62014-05-22 13:08:43 -0700514 ATRACE_INT(mVsyncEventLabel.string(), mValue);
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700515 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700516 }
517
Peiyong Lin566a3b42018-01-09 18:22:43 -0800518 if (callback != nullptr) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700519 callback->onVSyncEvent(when);
520 }
521 }
522
Tim Murray4a4e4a22016-04-19 16:29:23 +0000523 const char* const mName;
524
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700525 int mValue;
526
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700527 const bool mTraceVsync;
Andy McFadden5167ec62014-05-22 13:08:43 -0700528 const String8 mVsyncOnLabel;
529 const String8 mVsyncEventLabel;
Jamie Gennis0a645cc2013-10-14 20:52:46 -0700530
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700531 DispSync* mDispSync;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700532
533 Mutex mCallbackMutex; // Protects the following
Lloyd Piquee83f9312018-02-01 12:53:17 -0800534 VSyncSource::Callback* mCallback = nullptr;
Dan Stozadb4ac3c2015-04-14 11:34:01 -0700535
536 Mutex mVsyncMutex; // Protects the following
537 nsecs_t mPhaseOffset;
538 bool mEnabled;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700539};
540
Lloyd Piquee83f9312018-02-01 12:53:17 -0800541class InjectVSyncSource final : public VSyncSource {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700542public:
Lloyd Piquee83f9312018-02-01 12:53:17 -0800543 InjectVSyncSource() = default;
544 ~InjectVSyncSource() override = default;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700545
Lloyd Piquee83f9312018-02-01 12:53:17 -0800546 void setCallback(VSyncSource::Callback* callback) override {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700547 std::lock_guard<std::mutex> lock(mCallbackMutex);
548 mCallback = callback;
549 }
550
Lloyd Piquee83f9312018-02-01 12:53:17 -0800551 void onInjectSyncEvent(nsecs_t when) {
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700552 std::lock_guard<std::mutex> lock(mCallbackMutex);
Chia-I Wu90f669f2017-10-05 14:24:41 -0700553 if (mCallback) {
554 mCallback->onVSyncEvent(when);
555 }
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700556 }
557
Lloyd Piquee83f9312018-02-01 12:53:17 -0800558 void setVSyncEnabled(bool) override {}
559 void setPhaseOffset(nsecs_t) override {}
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700560
561private:
562 std::mutex mCallbackMutex; // Protects the following
Lloyd Piquee83f9312018-02-01 12:53:17 -0800563 VSyncSource::Callback* mCallback = nullptr;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -0700564};
565
Wei Wangf9b05ee2017-07-19 20:59:39 -0700566// Do not call property_set on main thread which will be blocked by init
567// Use StartPropertySetThread instead.
Jamie Gennisfaf77cc2013-07-30 15:10:32 -0700568void SurfaceFlinger::init() {
Mathias Agopiana4912602012-07-12 14:25:33 -0700569 ALOGI( "SurfaceFlinger's main thread ready to run. "
570 "Initializing graphics H/W...");
571
Thierry Strudel2924d012017-08-14 15:19:37 -0700572 ALOGI("Phase offest NS: %" PRId64 "", vsyncPhaseOffsetNs);
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900573
Steven Thomasb02664d2017-07-26 18:48:28 -0700574 Mutex::Autolock _l(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800575
Steven Thomasb02664d2017-07-26 18:48:28 -0700576 // start the EventThread
Lloyd Pique0fcde1b2017-12-20 16:50:21 -0800577 mEventThreadSource =
578 std::make_unique<DispSyncSource>(&mPrimaryDispSync, SurfaceFlinger::vsyncPhaseOffsetNs,
579 true, "app");
580 mEventThread = std::make_unique<impl::EventThread>(mEventThreadSource.get(), *this, false,
581 "appEventThread");
582 mSfEventThreadSource =
583 std::make_unique<DispSyncSource>(&mPrimaryDispSync,
584 SurfaceFlinger::sfVsyncPhaseOffsetNs, true, "sf");
585 mSFEventThread = std::make_unique<impl::EventThread>(mSfEventThreadSource.get(), *this, true,
586 "sfEventThread");
Lloyd Piquee83f9312018-02-01 12:53:17 -0800587 mEventQueue.setEventThread(mSFEventThread.get());
Dan Stoza9e56aa02015-11-02 13:00:03 -0800588
Steven Thomasb02664d2017-07-26 18:48:28 -0700589 // Get a RenderEngine for the given display / config (can't fail)
Lloyd Pique144e1162017-12-20 16:44:52 -0800590 getBE().mRenderEngine =
591 RE::impl::RenderEngine::create(HAL_PIXEL_FORMAT_RGBA_8888,
592 hasWideColorDisplay
593 ? RE::RenderEngine::WIDE_COLOR_SUPPORT
594 : 0);
David Sodmanbc815282017-11-05 18:57:52 -0800595 LOG_ALWAYS_FATAL_IF(getBE().mRenderEngine == nullptr, "couldn't create RenderEngine");
Steven Thomasb02664d2017-07-26 18:48:28 -0700596
597 LOG_ALWAYS_FATAL_IF(mVrFlingerRequestsDisplay,
598 "Starting with vr flinger active is not currently supported.");
Lloyd Piquea822d522017-12-20 16:42:57 -0800599 getBE().mHwc.reset(
600 new HWComposer(std::make_unique<Hwc2::impl::Composer>(getBE().mHwcServiceName)));
David Sodman105b7dc2017-11-04 20:28:14 -0700601 getBE().mHwc->registerCallback(this, getBE().mComposerSequenceId);
Lloyd Piqueba04e622017-12-14 17:11:26 -0800602 // Process any initial hotplug and resulting display changes.
603 processDisplayHotplugEventsLocked();
604 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY),
605 "Registered composer callback but didn't create the default primary display");
Jesse Hall692c7232012-11-08 15:41:56 -0800606
Lloyd Piquefcd86612017-12-14 17:15:36 -0800607 // make the default display GLContext current so that we can create textures
608 // when creating Layers (which may happens before we render something)
609 getDefaultDisplayDeviceLocked()->makeCurrent();
610
Steven Thomas050b2c82017-03-06 11:45:16 -0800611 if (useVrFlinger) {
612 auto vrFlingerRequestDisplayCallback = [this] (bool requestDisplay) {
Steven Thomasbe6cbae2017-09-28 15:30:23 -0700613 // This callback is called from the vr flinger dispatch thread. We
614 // need to call signalTransaction(), which requires holding
615 // mStateLock when we're not on the main thread. Acquiring
616 // mStateLock from the vr flinger dispatch thread might trigger a
617 // deadlock in surface flinger (see b/66916578), so post a message
618 // to be handled on the main thread instead.
619 sp<LambdaMessage> message = new LambdaMessage([=]() {
620 ALOGI("VR request display mode: requestDisplay=%d", requestDisplay);
621 mVrFlingerRequestsDisplay = requestDisplay;
622 signalTransaction();
623 });
624 postMessageAsync(message);
Steven Thomas050b2c82017-03-06 11:45:16 -0800625 };
David Sodman105b7dc2017-11-04 20:28:14 -0700626 mVrFlinger = dvr::VrFlinger::Create(getBE().mHwc->getComposer(),
627 getBE().mHwc->getHwcDisplayId(HWC_DISPLAY_PRIMARY).value_or(0),
Steven Thomas6e8f7062017-11-22 14:15:29 -0800628 vrFlingerRequestDisplayCallback);
Steven Thomas050b2c82017-03-06 11:45:16 -0800629 if (!mVrFlinger) {
630 ALOGE("Failed to start vrflinger");
631 }
632 }
633
Lloyd Pique755e3192018-01-31 16:46:15 -0800634 mEventControlThread = std::make_unique<EventControlThread>([this](bool enabled) {
635 setVsyncEnabled(HWC_DISPLAY_PRIMARY, enabled);
636 });
Jamie Gennisd1700752013-10-14 12:22:52 -0700637
Mathias Agopian92a979a2012-08-02 18:32:23 -0700638 // initialize our drawing state
639 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700640
Andy McFadden13a082e2012-08-24 10:16:42 -0700641 // set initial conditions (e.g. unblank default device)
642 initializeDisplays();
643
David Sodmanbc815282017-11-05 18:57:52 -0800644 getBE().mRenderEngine->primeCache();
Dan Stoza4e637772016-07-28 13:31:51 -0700645
Wei Wangf9b05ee2017-07-19 20:59:39 -0700646 // Inform native graphics APIs whether the present timestamp is supported:
647 if (getHwComposer().hasCapability(
648 HWC2::Capability::PresentFenceIsNotReliable)) {
649 mStartPropertySetThread = new StartPropertySetThread(false);
650 } else {
651 mStartPropertySetThread = new StartPropertySetThread(true);
652 }
653
654 if (mStartPropertySetThread->Start() != NO_ERROR) {
655 ALOGE("Run StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800656 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800657
Dan Stoza9e56aa02015-11-02 13:00:03 -0800658 ALOGV("Done initializing");
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700659}
660
Romain Guy11d63f42017-07-20 12:47:14 -0700661void SurfaceFlinger::readPersistentProperties() {
662 char value[PROPERTY_VALUE_MAX];
663
664 property_get("persist.sys.sf.color_saturation", value, "1.0");
665 mSaturation = atof(value);
666 ALOGV("Saturation is set to %.2f", mSaturation);
Romain Guy54f154a2017-10-24 21:40:32 +0100667
668 property_get("persist.sys.sf.native_mode", value, "0");
669 mForceNativeColorMode = atoi(value) == 1;
670 if (mForceNativeColorMode) {
671 ALOGV("Forcing native color mode");
672 }
Romain Guy11d63f42017-07-20 12:47:14 -0700673}
674
Mathias Agopiana67e4182012-06-19 17:26:12 -0700675void SurfaceFlinger::startBootAnim() {
Wei Wangb254fa32017-01-31 17:43:23 -0800676 // Start boot animation service by setting a property mailbox
677 // if property setting thread is already running, Start() will be just a NOP
Wei Wangf9b05ee2017-07-19 20:59:39 -0700678 mStartPropertySetThread->Start();
Wei Wangb254fa32017-01-31 17:43:23 -0800679 // Wait until property was set
Wei Wangf9b05ee2017-07-19 20:59:39 -0700680 if (mStartPropertySetThread->join() != NO_ERROR) {
681 ALOGE("Join StartPropertySetThread failed!");
Wei Wangb254fa32017-01-31 17:43:23 -0800682 }
Mathias Agopiana67e4182012-06-19 17:26:12 -0700683}
684
Mathias Agopian875d8e12013-06-07 15:35:48 -0700685size_t SurfaceFlinger::getMaxTextureSize() const {
David Sodmanbc815282017-11-05 18:57:52 -0800686 return getBE().mRenderEngine->getMaxTextureSize();
Mathias Agopiana4912602012-07-12 14:25:33 -0700687}
688
Mathias Agopian875d8e12013-06-07 15:35:48 -0700689size_t SurfaceFlinger::getMaxViewportDims() const {
David Sodmanbc815282017-11-05 18:57:52 -0800690 return getBE().mRenderEngine->getMaxViewportDims();
Mathias Agopiana4912602012-07-12 14:25:33 -0700691}
692
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800693// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800694
Jamie Gennis582270d2011-08-17 18:19:00 -0700695bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800696 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800697 Mutex::Autolock _l(mStateLock);
Robert Carr0d480722017-01-10 16:42:54 -0800698 return authenticateSurfaceTextureLocked(bufferProducer);
699}
700
701bool SurfaceFlinger::authenticateSurfaceTextureLocked(
702 const sp<IGraphicBufferProducer>& bufferProducer) const {
Marco Nelissen097ca272014-11-14 08:01:01 -0800703 sp<IBinder> surfaceTextureBinder(IInterface::asBinder(bufferProducer));
Mathias Agopian67106042013-03-14 19:18:13 -0700704 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800705}
706
Brian Anderson6b376712017-04-04 10:51:39 -0700707status_t SurfaceFlinger::getSupportedFrameTimestamps(
708 std::vector<FrameEvent>* outSupported) const {
709 *outSupported = {
710 FrameEvent::REQUESTED_PRESENT,
711 FrameEvent::ACQUIRE,
712 FrameEvent::LATCH,
713 FrameEvent::FIRST_REFRESH_START,
714 FrameEvent::LAST_REFRESH_START,
715 FrameEvent::GPU_COMPOSITION_DONE,
716 FrameEvent::DEQUEUE_READY,
717 FrameEvent::RELEASE,
718 };
Steven Thomas6d8110b2017-08-31 18:24:21 -0700719 ConditionalLock _l(mStateLock,
720 std::this_thread::get_id() != mMainThreadId);
Brian Anderson6b376712017-04-04 10:51:39 -0700721 if (!getHwComposer().hasCapability(
722 HWC2::Capability::PresentFenceIsNotReliable)) {
723 outSupported->push_back(FrameEvent::DISPLAY_PRESENT);
724 }
725 return NO_ERROR;
726}
727
Dan Stoza7f7da322014-05-02 15:26:25 -0700728status_t SurfaceFlinger::getDisplayConfigs(const sp<IBinder>& display,
729 Vector<DisplayInfo>* configs) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800730 if (configs == nullptr || display.get() == nullptr) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700731 return BAD_VALUE;
732 }
733
Naseer Ahmed7aa0c472014-11-03 14:49:23 -0500734 if (!display.get())
735 return NAME_NOT_FOUND;
736
Jesse Hall692c7232012-11-08 15:41:56 -0800737 int32_t type = NAME_NOT_FOUND;
Jesse Hall9e663de2013-08-16 14:28:37 -0700738 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800739 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700740 type = i;
741 break;
742 }
743 }
744
745 if (type < 0) {
746 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700747 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700748
Mathias Agopian8b736f12012-08-13 17:54:26 -0700749 // TODO: Not sure if display density should handled by SF any longer
750 class Density {
751 static int getDensityFromProperty(char const* propName) {
752 char property[PROPERTY_VALUE_MAX];
753 int density = 0;
Peiyong Lin566a3b42018-01-09 18:22:43 -0800754 if (property_get(propName, property, nullptr) > 0) {
Mathias Agopian8b736f12012-08-13 17:54:26 -0700755 density = atoi(property);
756 }
757 return density;
758 }
759 public:
760 static int getEmuDensity() {
761 return getDensityFromProperty("qemu.sf.lcd_density"); }
762 static int getBuildDensity() {
763 return getDensityFromProperty("ro.sf.lcd_density"); }
764 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700765
Dan Stoza7f7da322014-05-02 15:26:25 -0700766 configs->clear();
Mathias Agopian1604f772012-09-18 21:54:42 -0700767
Steven Thomas6d8110b2017-08-31 18:24:21 -0700768 ConditionalLock _l(mStateLock,
769 std::this_thread::get_id() != mMainThreadId);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800770 for (const auto& hwConfig : getHwComposer().getConfigs(type)) {
Dan Stoza7f7da322014-05-02 15:26:25 -0700771 DisplayInfo info = DisplayInfo();
772
Dan Stoza9e56aa02015-11-02 13:00:03 -0800773 float xdpi = hwConfig->getDpiX();
774 float ydpi = hwConfig->getDpiY();
Dan Stoza7f7da322014-05-02 15:26:25 -0700775
776 if (type == DisplayDevice::DISPLAY_PRIMARY) {
777 // The density of the device is provided by a build property
778 float density = Density::getBuildDensity() / 160.0f;
779 if (density == 0) {
780 // the build doesn't provide a density -- this is wrong!
781 // use xdpi instead
782 ALOGE("ro.sf.lcd_density must be defined as a build property");
783 density = xdpi / 160.0f;
784 }
785 if (Density::getEmuDensity()) {
786 // if "qemu.sf.lcd_density" is specified, it overrides everything
787 xdpi = ydpi = density = Density::getEmuDensity();
788 density /= 160.0f;
789 }
790 info.density = density;
791
792 // TODO: this needs to go away (currently needed only by webkit)
Steven Thomas6d8110b2017-08-31 18:24:21 -0700793 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -0800794 info.orientation = hw ? hw->getOrientation() : 0;
Dan Stoza7f7da322014-05-02 15:26:25 -0700795 } else {
796 // TODO: where should this value come from?
797 static const int TV_DENSITY = 213;
798 info.density = TV_DENSITY / 160.0f;
799 info.orientation = 0;
800 }
801
Dan Stoza9e56aa02015-11-02 13:00:03 -0800802 info.w = hwConfig->getWidth();
803 info.h = hwConfig->getHeight();
Dan Stoza7f7da322014-05-02 15:26:25 -0700804 info.xdpi = xdpi;
805 info.ydpi = ydpi;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800806 info.fps = 1e9 / hwConfig->getVsyncPeriod();
Jiyong Park4b20c2e2017-01-14 19:45:11 +0900807 info.appVsyncOffset = vsyncPhaseOffsetNs;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800808
Andy McFadden91b2ca82014-06-13 14:04:23 -0700809 // This is how far in advance a buffer must be queued for
810 // presentation at a given time. If you want a buffer to appear
811 // on the screen at time N, you must submit the buffer before
812 // (N - presentationDeadline).
813 //
814 // Normally it's one full refresh period (to give SF a chance to
815 // latch the buffer), but this can be reduced by configuring a
816 // DispSync offset. Any additional delays introduced by the hardware
817 // composer or panel must be accounted for here.
818 //
819 // We add an additional 1ms to allow for processing time and
820 // differences between the ideal and actual refresh rate.
Dan Stoza9e56aa02015-11-02 13:00:03 -0800821 info.presentationDeadline = hwConfig->getVsyncPeriod() -
Fabien Sanglard0cc19382017-03-06 11:54:40 -0800822 sfVsyncPhaseOffsetNs + 1000000;
Dan Stoza7f7da322014-05-02 15:26:25 -0700823
824 // All non-virtual displays are currently considered secure.
825 info.secure = true;
826
Michael Wright28f24d02016-07-12 13:30:53 -0700827 configs->push_back(info);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700828 }
829
Dan Stoza7f7da322014-05-02 15:26:25 -0700830 return NO_ERROR;
831}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700832
Andreas Gampe89fd4f72014-11-13 14:18:56 -0800833status_t SurfaceFlinger::getDisplayStats(const sp<IBinder>& /* display */,
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700834 DisplayStatInfo* stats) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800835 if (stats == nullptr) {
Lajos Molnar67d8bd62014-09-11 14:58:45 -0700836 return BAD_VALUE;
837 }
838
839 // FIXME for now we always return stats for the primary display
840 memset(stats, 0, sizeof(*stats));
841 stats->vsyncTime = mPrimaryDispSync.computeNextRefresh(0);
842 stats->vsyncPeriod = mPrimaryDispSync.getPeriod();
843 return NO_ERROR;
844}
845
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700846int SurfaceFlinger::getActiveConfig(const sp<IBinder>& display) {
Peiyong Lin566a3b42018-01-09 18:22:43 -0800847 if (display == nullptr) {
848 ALOGE("%s : display is nullptr", __func__);
Jinguang Dong9f8b9ae2016-11-29 13:55:57 +0800849 return BAD_VALUE;
850 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700851
852 sp<const DisplayDevice> device(getDisplayDevice(display));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800853 if (device != nullptr) {
Dan Stoza24a42e92015-03-09 10:04:11 -0700854 return device->getActiveConfig();
855 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700856
Dan Stoza24a42e92015-03-09 10:04:11 -0700857 return BAD_VALUE;
Dan Stoza7f7da322014-05-02 15:26:25 -0700858}
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700859
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700860void SurfaceFlinger::setActiveConfigInternal(const sp<DisplayDevice>& hw, int mode) {
861 ALOGD("Set active config mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
862 this);
863 int32_t type = hw->getDisplayType();
864 int currentMode = hw->getActiveConfig();
865
866 if (mode == currentMode) {
867 ALOGD("Screen type=%d is already mode=%d", hw->getDisplayType(), mode);
868 return;
869 }
870
871 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
872 ALOGW("Trying to set config for virtual display");
873 return;
874 }
875
876 hw->setActiveConfig(mode);
877 getHwComposer().setActiveConfig(type, mode);
878}
879
880status_t SurfaceFlinger::setActiveConfig(const sp<IBinder>& display, int mode) {
881 class MessageSetActiveConfig: public MessageBase {
882 SurfaceFlinger& mFlinger;
883 sp<IBinder> mDisplay;
884 int mMode;
885 public:
886 MessageSetActiveConfig(SurfaceFlinger& flinger, const sp<IBinder>& disp,
887 int mode) :
888 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
889 virtual bool handler() {
Michael Lentine7306c672014-07-30 13:00:37 -0700890 Vector<DisplayInfo> configs;
891 mFlinger.getDisplayConfigs(mDisplay, &configs);
Jesse Hall78442112014-08-07 22:43:06 -0700892 if (mMode < 0 || mMode >= static_cast<int>(configs.size())) {
Michael Lentine9ae79d82014-07-30 16:42:12 -0700893 ALOGE("Attempt to set active config = %d for display with %zu configs",
Michael Lentine7306c672014-07-30 13:00:37 -0700894 mMode, configs.size());
Michael Wright28f24d02016-07-12 13:30:53 -0700895 return true;
Michael Lentine7306c672014-07-30 13:00:37 -0700896 }
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700897 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -0800898 if (hw == nullptr) {
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700899 ALOGE("Attempt to set active config = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -0700900 mMode, mDisplay.get());
Michael Lentine6c9e34a2014-07-14 13:48:55 -0700901 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
902 ALOGW("Attempt to set active config = %d for virtual display",
903 mMode);
904 } else {
905 mFlinger.setActiveConfigInternal(hw, mMode);
906 }
907 return true;
908 }
909 };
910 sp<MessageBase> msg = new MessageSetActiveConfig(*this, display, mode);
911 postMessageSync(msg);
Mathias Agopian888c8222012-08-04 21:10:38 -0700912 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700913}
Michael Wright28f24d02016-07-12 13:30:53 -0700914status_t SurfaceFlinger::getDisplayColorModes(const sp<IBinder>& display,
915 Vector<android_color_mode_t>* outColorModes) {
916 if ((outColorModes == nullptr) || (display.get() == nullptr)) {
917 return BAD_VALUE;
918 }
919
920 if (!display.get()) {
921 return NAME_NOT_FOUND;
922 }
923
924 int32_t type = NAME_NOT_FOUND;
925 for (int i=0 ; i<DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES ; i++) {
926 if (display == mBuiltinDisplays[i]) {
927 type = i;
928 break;
929 }
930 }
931
932 if (type < 0) {
933 return type;
934 }
935
Steven Thomas6d8110b2017-08-31 18:24:21 -0700936 std::vector<android_color_mode_t> modes;
937 {
938 ConditionalLock _l(mStateLock,
939 std::this_thread::get_id() != mMainThreadId);
940 modes = getHwComposer().getColorModes(type);
941 }
Michael Wright28f24d02016-07-12 13:30:53 -0700942 outColorModes->clear();
943 std::copy(modes.cbegin(), modes.cend(), std::back_inserter(*outColorModes));
944
945 return NO_ERROR;
946}
947
948android_color_mode_t SurfaceFlinger::getActiveColorMode(const sp<IBinder>& display) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -0700949 sp<const DisplayDevice> device(getDisplayDevice(display));
Michael Wright28f24d02016-07-12 13:30:53 -0700950 if (device != nullptr) {
951 return device->getActiveColorMode();
952 }
953 return static_cast<android_color_mode_t>(BAD_VALUE);
954}
955
956void SurfaceFlinger::setActiveColorModeInternal(const sp<DisplayDevice>& hw,
957 android_color_mode_t mode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700958 int32_t type = hw->getDisplayType();
959 android_color_mode_t currentMode = hw->getActiveColorMode();
960
961 if (mode == currentMode) {
Michael Wright28f24d02016-07-12 13:30:53 -0700962 return;
963 }
964
965 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
966 ALOGW("Trying to set config for virtual display");
967 return;
968 }
969
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600970 ALOGD("Set active color mode: %s (%d), type=%d", decodeColorMode(mode).c_str(), mode,
971 hw->getDisplayType());
972
Michael Wright28f24d02016-07-12 13:30:53 -0700973 hw->setActiveColorMode(mode);
974 getHwComposer().setActiveColorMode(type, mode);
975}
976
977
978status_t SurfaceFlinger::setActiveColorMode(const sp<IBinder>& display,
979 android_color_mode_t colorMode) {
980 class MessageSetActiveColorMode: public MessageBase {
981 SurfaceFlinger& mFlinger;
982 sp<IBinder> mDisplay;
983 android_color_mode_t mMode;
984 public:
985 MessageSetActiveColorMode(SurfaceFlinger& flinger, const sp<IBinder>& disp,
986 android_color_mode_t mode) :
987 mFlinger(flinger), mDisplay(disp) { mMode = mode; }
988 virtual bool handler() {
989 Vector<android_color_mode_t> modes;
990 mFlinger.getDisplayColorModes(mDisplay, &modes);
991 bool exists = std::find(std::begin(modes), std::end(modes), mMode) != std::end(modes);
992 if (mMode < 0 || !exists) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600993 ALOGE("Attempt to set invalid active color mode %s (%d) for display %p",
994 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -0700995 return true;
996 }
997 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
998 if (hw == nullptr) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -0600999 ALOGE("Attempt to set active color mode %s (%d) for null display %p",
1000 decodeColorMode(mMode).c_str(), mMode, mDisplay.get());
Michael Wright28f24d02016-07-12 13:30:53 -07001001 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001002 ALOGW("Attempt to set active color mode %s %d for virtual display",
1003 decodeColorMode(mMode).c_str(), mMode);
Michael Wright28f24d02016-07-12 13:30:53 -07001004 } else {
1005 mFlinger.setActiveColorModeInternal(hw, mMode);
1006 }
1007 return true;
1008 }
1009 };
1010 sp<MessageBase> msg = new MessageSetActiveColorMode(*this, display, colorMode);
1011 postMessageSync(msg);
1012 return NO_ERROR;
1013}
Mathias Agopianc666cae2012-07-25 18:56:13 -07001014
Svetoslavd85084b2014-03-20 10:28:31 -07001015status_t SurfaceFlinger::clearAnimationFrameStats() {
1016 Mutex::Autolock _l(mStateLock);
1017 mAnimFrameTracker.clearStats();
1018 return NO_ERROR;
1019}
1020
1021status_t SurfaceFlinger::getAnimationFrameStats(FrameStats* outStats) const {
1022 Mutex::Autolock _l(mStateLock);
1023 mAnimFrameTracker.getStats(outStats);
1024 return NO_ERROR;
1025}
1026
Dan Stozac4f471e2016-03-24 09:31:08 -07001027status_t SurfaceFlinger::getHdrCapabilities(const sp<IBinder>& display,
1028 HdrCapabilities* outCapabilities) const {
1029 Mutex::Autolock _l(mStateLock);
1030
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001031 sp<const DisplayDevice> displayDevice(getDisplayDeviceLocked(display));
Dan Stozac4f471e2016-03-24 09:31:08 -07001032 if (displayDevice == nullptr) {
1033 ALOGE("getHdrCapabilities: Invalid display %p", displayDevice.get());
1034 return BAD_VALUE;
1035 }
1036
1037 std::unique_ptr<HdrCapabilities> capabilities =
David Sodman105b7dc2017-11-04 20:28:14 -07001038 getBE().mHwc->getHdrCapabilities(displayDevice->getHwcDisplayId());
Dan Stozac4f471e2016-03-24 09:31:08 -07001039 if (capabilities) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001040 if (displayDevice->getWideColorSupport() && !displayDevice->getHdrSupport()) {
1041 // insert HDR10 as we will force client composition for HDR10
1042 // layers
1043 std::vector<int32_t> types = capabilities->getSupportedHdrTypes();
1044 types.push_back(HAL_HDR_HDR10);
1045
1046 *outCapabilities = HdrCapabilities(types,
1047 capabilities->getDesiredMaxLuminance(),
1048 capabilities->getDesiredMaxAverageLuminance(),
1049 capabilities->getDesiredMinLuminance());
1050 } else {
1051 *outCapabilities = std::move(*capabilities);
1052 }
Dan Stozac4f471e2016-03-24 09:31:08 -07001053 } else {
1054 return BAD_VALUE;
1055 }
1056
1057 return NO_ERROR;
1058}
1059
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001060status_t SurfaceFlinger::enableVSyncInjections(bool enable) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001061 sp<LambdaMessage> enableVSyncInjections = new LambdaMessage([&]() {
1062 Mutex::Autolock _l(mStateLock);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001063
Chia-I Wu90f669f2017-10-05 14:24:41 -07001064 if (mInjectVSyncs == enable) {
1065 return;
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001066 }
Chia-I Wu90f669f2017-10-05 14:24:41 -07001067
1068 if (enable) {
1069 ALOGV("VSync Injections enabled");
1070 if (mVSyncInjector.get() == nullptr) {
Lloyd Piquee83f9312018-02-01 12:53:17 -08001071 mVSyncInjector = std::make_unique<InjectVSyncSource>();
Lloyd Pique0fcde1b2017-12-20 16:50:21 -08001072 mInjectorEventThread =
1073 std::make_unique<impl::EventThread>(mVSyncInjector.get(), *this, false,
1074 "injEventThread");
Chia-I Wu90f669f2017-10-05 14:24:41 -07001075 }
Lloyd Piquee83f9312018-02-01 12:53:17 -08001076 mEventQueue.setEventThread(mInjectorEventThread.get());
Chia-I Wu90f669f2017-10-05 14:24:41 -07001077 } else {
1078 ALOGV("VSync Injections disabled");
Lloyd Piquee83f9312018-02-01 12:53:17 -08001079 mEventQueue.setEventThread(mSFEventThread.get());
Chia-I Wu90f669f2017-10-05 14:24:41 -07001080 }
1081
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001082 mInjectVSyncs = enable;
Chia-I Wu90f669f2017-10-05 14:24:41 -07001083 });
1084 postMessageSync(enableVSyncInjections);
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001085 return NO_ERROR;
1086}
1087
1088status_t SurfaceFlinger::injectVSync(nsecs_t when) {
Chia-I Wu90f669f2017-10-05 14:24:41 -07001089 Mutex::Autolock _l(mStateLock);
1090
Sahil Dhanjuc1ba5c42016-06-07 20:09:20 -07001091 if (!mInjectVSyncs) {
1092 ALOGE("VSync Injections not enabled");
1093 return BAD_VALUE;
1094 }
1095 if (mInjectVSyncs && mInjectorEventThread.get() != nullptr) {
1096 ALOGV("Injecting VSync inside SurfaceFlinger");
1097 mVSyncInjector->onInjectSyncEvent(when);
1098 }
1099 return NO_ERROR;
1100}
1101
Lloyd Pique755e3192018-01-31 16:46:15 -08001102status_t SurfaceFlinger::getLayerDebugInfo(std::vector<LayerDebugInfo>* outLayers) const
1103 NO_THREAD_SAFETY_ANALYSIS {
Kalle Raitaa099a242017-01-11 11:17:29 -08001104 IPCThreadState* ipc = IPCThreadState::self();
1105 const int pid = ipc->getCallingPid();
1106 const int uid = ipc->getCallingUid();
1107 if ((uid != AID_SHELL) &&
1108 !PermissionCache::checkPermission(sDump, pid, uid)) {
1109 ALOGE("Layer debug info permission denied for pid=%d, uid=%d", pid, uid);
1110 return PERMISSION_DENIED;
1111 }
1112
1113 // Try to acquire a lock for 1s, fail gracefully
1114 const status_t err = mStateLock.timedLock(s2ns(1));
1115 const bool locked = (err == NO_ERROR);
1116 if (!locked) {
1117 ALOGE("LayerDebugInfo: SurfaceFlinger unresponsive (%s [%d]) - exit", strerror(-err), err);
1118 return TIMED_OUT;
1119 }
1120
1121 outLayers->clear();
1122 mCurrentState.traverseInZOrder([&](Layer* layer) {
1123 outLayers->push_back(layer->getLayerDebugInfo());
1124 });
1125
1126 mStateLock.unlock();
1127 return NO_ERROR;
1128}
1129
Mathias Agopiand0566bc2011-11-17 17:49:17 -08001130// ----------------------------------------------------------------------------
1131
Jorim Jaggib1e2f8d2017-06-08 15:43:59 -07001132sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection(
1133 ISurfaceComposer::VsyncSource vsyncSource) {
1134 if (vsyncSource == eVsyncSourceSurfaceFlinger) {
1135 return mSFEventThread->createEventConnection();
1136 } else {
1137 return mEventThread->createEventConnection();
1138 }
Mathias Agopianbb641242010-05-18 17:06:55 -07001139}
1140
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001141// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001142
1143void SurfaceFlinger::waitForEvent() {
1144 mEventQueue.waitMessage();
1145}
1146
1147void SurfaceFlinger::signalTransaction() {
1148 mEventQueue.invalidate();
1149}
1150
1151void SurfaceFlinger::signalLayerUpdate() {
1152 mEventQueue.invalidate();
1153}
1154
1155void SurfaceFlinger::signalRefresh() {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001156 mRefreshPending = true;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001157 mEventQueue.refresh();
1158}
1159
1160status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001161 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001162 return mEventQueue.postMessage(msg, reltime);
1163}
1164
1165status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
Dan Stozac7014012014-02-14 15:03:43 -08001166 nsecs_t reltime, uint32_t /* flags */) {
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001167 status_t res = mEventQueue.postMessage(msg, reltime);
1168 if (res == NO_ERROR) {
1169 msg->wait();
1170 }
1171 return res;
1172}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001173
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001174void SurfaceFlinger::run() {
Mathias Agopian4f4f0942013-08-19 17:26:18 -07001175 do {
1176 waitForEvent();
1177 } while (true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001178}
1179
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001180void SurfaceFlinger::enableHardwareVsync() {
1181 Mutex::Autolock _l(mHWVsyncLock);
Jesse Hall948fe0c2013-10-14 12:56:09 -07001182 if (!mPrimaryHWVsyncEnabled && mHWVsyncAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001183 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001184 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1185 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001186 mPrimaryHWVsyncEnabled = true;
Andy McFadden43601a22012-09-11 15:15:13 -07001187 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001188}
1189
Jesse Hall948fe0c2013-10-14 12:56:09 -07001190void SurfaceFlinger::resyncToHardwareVsync(bool makeAvailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001191 Mutex::Autolock _l(mHWVsyncLock);
1192
Jesse Hall948fe0c2013-10-14 12:56:09 -07001193 if (makeAvailable) {
1194 mHWVsyncAvailable = true;
1195 } else if (!mHWVsyncAvailable) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001196 // Hardware vsync is not currently available, so abort the resync
1197 // attempt for now
Jesse Hall948fe0c2013-10-14 12:56:09 -07001198 return;
1199 }
1200
David Sodman105b7dc2017-11-04 20:28:14 -07001201 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001202 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001203
1204 mPrimaryDispSync.reset();
1205 mPrimaryDispSync.setPeriod(period);
1206
1207 if (!mPrimaryHWVsyncEnabled) {
1208 mPrimaryDispSync.beginResync();
Jamie Gennisd1700752013-10-14 12:22:52 -07001209 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, true);
1210 mEventControlThread->setVsyncEnabled(true);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001211 mPrimaryHWVsyncEnabled = true;
1212 }
1213}
1214
Jesse Hall948fe0c2013-10-14 12:56:09 -07001215void SurfaceFlinger::disableHardwareVsync(bool makeUnavailable) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001216 Mutex::Autolock _l(mHWVsyncLock);
1217 if (mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001218 //eventControl(HWC_DISPLAY_PRIMARY, SurfaceFlinger::EVENT_VSYNC, false);
1219 mEventControlThread->setVsyncEnabled(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001220 mPrimaryDispSync.endResync();
1221 mPrimaryHWVsyncEnabled = false;
1222 }
Jesse Hall948fe0c2013-10-14 12:56:09 -07001223 if (makeUnavailable) {
1224 mHWVsyncAvailable = false;
1225 }
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001226}
1227
Tim Murray4a4e4a22016-04-19 16:29:23 +00001228void SurfaceFlinger::resyncWithRateLimit() {
1229 static constexpr nsecs_t kIgnoreDelay = ms2ns(500);
Dan Stoza57164302017-05-08 14:03:54 -07001230
1231 // No explicit locking is needed here since EventThread holds a lock while calling this method
1232 static nsecs_t sLastResyncAttempted = 0;
1233 const nsecs_t now = systemTime();
1234 if (now - sLastResyncAttempted > kIgnoreDelay) {
Dan Stoza0a3c4d62016-04-19 11:56:20 -07001235 resyncToHardwareVsync(false);
Tim Murray4a4e4a22016-04-19 16:29:23 +00001236 }
Dan Stoza57164302017-05-08 14:03:54 -07001237 sLastResyncAttempted = now;
Tim Murray4a4e4a22016-04-19 16:29:23 +00001238}
1239
Steven Thomasb02664d2017-07-26 18:48:28 -07001240void SurfaceFlinger::onVsyncReceived(int32_t sequenceId,
1241 hwc2_display_t displayId, int64_t timestamp) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001242 Mutex::Autolock lock(mStateLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001243 // Ignore any vsyncs from a previous hardware composer.
David Sodman105b7dc2017-11-04 20:28:14 -07001244 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001245 return;
1246 }
1247
1248 int32_t type;
David Sodman105b7dc2017-11-04 20:28:14 -07001249 if (!getBE().mHwc->onVsync(displayId, timestamp, &type)) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001250 return;
1251 }
1252
Jamie Gennisd1700752013-10-14 12:22:52 -07001253 bool needsHwVsync = false;
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001254
Jamie Gennisd1700752013-10-14 12:22:52 -07001255 { // Scope for the lock
1256 Mutex::Autolock _l(mHWVsyncLock);
Steven Thomasb02664d2017-07-26 18:48:28 -07001257 if (type == DisplayDevice::DISPLAY_PRIMARY && mPrimaryHWVsyncEnabled) {
Jamie Gennisd1700752013-10-14 12:22:52 -07001258 needsHwVsync = mPrimaryDispSync.addResyncSample(timestamp);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001259 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001260 }
Jamie Gennisd1700752013-10-14 12:22:52 -07001261
1262 if (needsHwVsync) {
1263 enableHardwareVsync();
1264 } else {
1265 disableHardwareVsync(false);
1266 }
Mathias Agopian148994e2012-09-19 17:31:36 -07001267}
1268
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001269void SurfaceFlinger::getCompositorTiming(CompositorTiming* compositorTiming) {
David Sodman99974d22017-11-28 12:04:33 -08001270 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1271 *compositorTiming = getBE().mCompositorTiming;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001272}
1273
Lloyd Pique715a2c12017-12-14 17:18:08 -08001274void SurfaceFlinger::onHotplugReceived(int32_t sequenceId, hwc2_display_t display,
1275 HWC2::Connection connection) {
1276 ALOGV("onHotplugReceived(%d, %" PRIu64 ", %s)", sequenceId, display,
1277 connection == HWC2::Connection::Connected ? "connected" : "disconnected");
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001278
Lloyd Piqueba04e622017-12-14 17:11:26 -08001279 // Ignore events that do not have the right sequenceId.
1280 if (sequenceId != getBE().mComposerSequenceId) {
1281 return;
1282 }
1283
Steven Thomasb02664d2017-07-26 18:48:28 -07001284 // Only lock if we're not on the main thread. This function is normally
1285 // called on a hwbinder thread, but for the primary display it's called on
1286 // the main thread with the state lock already held, so don't attempt to
1287 // acquire it here.
Lloyd Piqueba04e622017-12-14 17:11:26 -08001288 ConditionalLock lock(mStateLock, std::this_thread::get_id() != mMainThreadId);
Steven Thomasb02664d2017-07-26 18:48:28 -07001289
Lloyd Pique715a2c12017-12-14 17:18:08 -08001290 mPendingHotplugEvents.emplace_back(HotplugEvent{display, connection});
Mathias Agopian9e2463e2012-09-21 18:26:16 -07001291
Jiwen 'Steve' Caiccfd6822018-02-21 16:15:58 -08001292 if (std::this_thread::get_id() == mMainThreadId) {
1293 // Process all pending hot plug events immediately if we are on the main thread.
1294 processDisplayHotplugEventsLocked();
1295 }
1296
Lloyd Piqueba04e622017-12-14 17:11:26 -08001297 setTransactionFlags(eDisplayTransactionNeeded);
Mathias Agopian86303202012-07-24 22:46:10 -07001298}
1299
Steven Thomasb02664d2017-07-26 18:48:28 -07001300void SurfaceFlinger::onRefreshReceived(int sequenceId,
1301 hwc2_display_t /*display*/) {
Steven Thomas3cfac282017-02-06 12:29:30 -08001302 Mutex::Autolock lock(mStateLock);
David Sodman105b7dc2017-11-04 20:28:14 -07001303 if (sequenceId != getBE().mComposerSequenceId) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001304 return;
Steven Thomas3cfac282017-02-06 12:29:30 -08001305 }
Steven Thomas6d8110b2017-08-31 18:24:21 -07001306 repaintEverythingLocked();
Steven Thomas3cfac282017-02-06 12:29:30 -08001307}
1308
Dan Stoza9e56aa02015-11-02 13:00:03 -08001309void SurfaceFlinger::setVsyncEnabled(int disp, int enabled) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001310 ATRACE_CALL();
Steven Thomasb02664d2017-07-26 18:48:28 -07001311 Mutex::Autolock lock(mStateLock);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001312 getHwComposer().setVsyncEnabled(disp,
1313 enabled ? HWC2::Vsync::Enable : HWC2::Vsync::Disable);
Mathias Agopian86303202012-07-24 22:46:10 -07001314}
1315
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001316// Note: it is assumed the caller holds |mStateLock| when this is called
Steven Thomasb02664d2017-07-26 18:48:28 -07001317void SurfaceFlinger::resetDisplayState() {
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001318 disableHardwareVsync(true);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001319 // Clear the drawing state so that the logic inside of
1320 // handleTransactionLocked will fire. It will determine the delta between
1321 // mCurrentState and mDrawingState and re-apply all changes when we make the
1322 // transition.
1323 mDrawingState.displays.clear();
Chia-I Wu7f402902017-11-09 12:51:10 -08001324 getRenderEngine().resetCurrentSurface();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001325 mDisplays.clear();
1326}
1327
Steven Thomas050b2c82017-03-06 11:45:16 -08001328void SurfaceFlinger::updateVrFlinger() {
1329 if (!mVrFlinger)
1330 return;
1331 bool vrFlingerRequestsDisplay = mVrFlingerRequestsDisplay;
David Sodman105b7dc2017-11-04 20:28:14 -07001332 if (vrFlingerRequestsDisplay == getBE().mHwc->isUsingVrComposer()) {
Mark Urbanus209beca2017-02-23 11:16:04 -08001333 return;
1334 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001335
David Sodman105b7dc2017-11-04 20:28:14 -07001336 if (vrFlingerRequestsDisplay && !getBE().mHwc->getComposer()->isRemote()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07001337 ALOGE("Vr flinger is only supported for remote hardware composer"
1338 " service connections. Ignoring request to transition to vr"
1339 " flinger.");
1340 mVrFlingerRequestsDisplay = false;
1341 return;
Mark Urbanus209beca2017-02-23 11:16:04 -08001342 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001343
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001344 Mutex::Autolock _l(mStateLock);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001345
Steven Thomasb02664d2017-07-26 18:48:28 -07001346 int currentDisplayPowerMode = getDisplayDeviceLocked(
1347 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY])->getPowerMode();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001348
Steven Thomasb02664d2017-07-26 18:48:28 -07001349 if (!vrFlingerRequestsDisplay) {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001350 mVrFlinger->SeizeDisplayOwnership();
Steven Thomasb02664d2017-07-26 18:48:28 -07001351 }
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001352
Steven Thomasb02664d2017-07-26 18:48:28 -07001353 resetDisplayState();
David Sodman105b7dc2017-11-04 20:28:14 -07001354 getBE().mHwc.reset(); // Delete the current instance before creating the new one
Lloyd Piquea822d522017-12-20 16:42:57 -08001355 getBE().mHwc.reset(new HWComposer(std::make_unique<Hwc2::impl::Composer>(
1356 vrFlingerRequestsDisplay ? "vr" : getBE().mHwcServiceName)));
David Sodman105b7dc2017-11-04 20:28:14 -07001357 getBE().mHwc->registerCallback(this, ++getBE().mComposerSequenceId);
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001358
David Sodman105b7dc2017-11-04 20:28:14 -07001359 LOG_ALWAYS_FATAL_IF(!getBE().mHwc->getComposer()->isRemote(),
1360 "Switched to non-remote hardware composer");
Steven Thomasb02664d2017-07-26 18:48:28 -07001361
1362 if (vrFlingerRequestsDisplay) {
1363 mVrFlinger->GrantDisplayOwnership();
1364 } else {
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001365 enableHardwareVsync();
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001366 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001367
1368 mVisibleRegionsDirty = true;
1369 invalidateHwcGeometry();
1370
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001371 // Re-enable default display.
Steven Thomasb02664d2017-07-26 18:48:28 -07001372 sp<DisplayDevice> hw(getDisplayDeviceLocked(
1373 mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]));
1374 setPowerModeInternal(hw, currentDisplayPowerMode, /*stateLockHeld*/ true);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001375
Steven Thomasb02664d2017-07-26 18:48:28 -07001376 // Reset the timing values to account for the period of the swapped in HWC
David Sodman105b7dc2017-11-04 20:28:14 -07001377 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Steven Thomasb02664d2017-07-26 18:48:28 -07001378 const nsecs_t period = activeConfig->getVsyncPeriod();
1379 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Alex Sakhartchouk096cb992017-06-05 10:37:57 -04001380
Steven Thomasb02664d2017-07-26 18:48:28 -07001381 // Use phase of 0 since phase is not known.
1382 // Use latency of 0, which will snap to the ideal latency.
1383 setCompositorTimingSnapped(0, period, 0);
Stephen Kiazyk82386cd2017-04-14 13:43:29 -07001384
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001385 android_atomic_or(1, &mRepaintEverything);
1386 setTransactionFlags(eDisplayTransactionNeeded);
Hendrik Wagenaar87670ff2017-02-01 12:10:46 -08001387}
1388
Mathias Agopian4fec8732012-06-29 14:12:52 -07001389void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -08001390 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001391 switch (what) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08001392 case MessageQueue::INVALIDATE: {
Dan Stoza50182882016-07-08 12:02:20 -07001393 bool frameMissed = !mHadClientComposition &&
1394 mPreviousPresentFence != Fence::NO_FENCE &&
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001395 (mPreviousPresentFence->getSignalTime() ==
1396 Fence::SIGNAL_TIME_PENDING);
Dan Stoza50182882016-07-08 12:02:20 -07001397 ATRACE_INT("FrameMissed", static_cast<int>(frameMissed));
Dan Stozac5da2712016-07-20 15:38:12 -07001398 if (mPropagateBackpressure && frameMissed) {
Dan Stoza50182882016-07-08 12:02:20 -07001399 signalLayerUpdate();
1400 break;
1401 }
1402
Steven Thomas050b2c82017-03-06 11:45:16 -08001403 // Now that we're going to make it to the handleMessageTransaction()
1404 // call below it's safe to call updateVrFlinger(), which will
1405 // potentially trigger a display handoff.
1406 updateVrFlinger();
1407
Dan Stoza6b9454d2014-11-07 16:00:59 -08001408 bool refreshNeeded = handleMessageTransaction();
1409 refreshNeeded |= handleMessageInvalidate();
Dan Stoza58784442014-12-02 16:58:17 -08001410 refreshNeeded |= mRepaintEverything;
Dan Stoza6b9454d2014-11-07 16:00:59 -08001411 if (refreshNeeded) {
Dan Stoza58784442014-12-02 16:58:17 -08001412 // Signal a refresh if a transaction modified the window state,
1413 // a new buffer was latched, or if HWC has requested a full
1414 // repaint
Dan Stoza6b9454d2014-11-07 16:00:59 -08001415 signalRefresh();
1416 }
1417 break;
1418 }
1419 case MessageQueue::REFRESH: {
1420 handleMessageRefresh();
1421 break;
1422 }
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001423 }
1424}
1425
Dan Stoza6b9454d2014-11-07 16:00:59 -08001426bool SurfaceFlinger::handleMessageTransaction() {
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08001427 uint32_t transactionFlags = peekTransactionFlags();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001428 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -07001429 handleTransaction(transactionFlags);
Dan Stoza6b9454d2014-11-07 16:00:59 -08001430 return true;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001431 }
Dan Stoza6b9454d2014-11-07 16:00:59 -08001432 return false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001433}
1434
Dan Stoza6b9454d2014-11-07 16:00:59 -08001435bool SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001436 ATRACE_CALL();
Dan Stoza6b9454d2014-11-07 16:00:59 -08001437 return handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001438}
1439
1440void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001441 ATRACE_CALL();
Dan Stoza14cd37c2015-07-09 12:43:33 -07001442
Dan Stoza2b6d38e2017-06-01 16:40:30 -07001443 mRefreshPending = false;
1444
Pablo Ceballos40845df2016-01-25 17:41:15 -08001445 nsecs_t refreshStartTime = systemTime(SYSTEM_TIME_MONOTONIC);
Dan Stoza14cd37c2015-07-09 12:43:33 -07001446
Brian Andersond6927fb2016-07-23 23:37:30 -07001447 preComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001448 rebuildLayerStacks();
1449 setUpHWComposer();
1450 doDebugFlashRegions();
Adrian Roos1e1a1282017-11-01 19:05:31 +01001451 doTracing("handleRefresh");
Dan Stoza05dacfb2016-07-01 13:33:38 -07001452 doComposition();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001453 postComposition(refreshStartTime);
Dan Stoza05dacfb2016-07-01 13:33:38 -07001454
David Sodman105b7dc2017-11-04 20:28:14 -07001455 mPreviousPresentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Dan Stozabfbffeb2016-07-21 14:49:33 -07001456
1457 mHadClientComposition = false;
1458 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1459 const sp<DisplayDevice>& displayDevice = mDisplays[displayId];
1460 mHadClientComposition = mHadClientComposition ||
David Sodman105b7dc2017-11-04 20:28:14 -07001461 getBE().mHwc->hasClientComposition(displayDevice->getHwcDisplayId());
Dan Stozabfbffeb2016-07-21 14:49:33 -07001462 }
Dan Stoza14cd37c2015-07-09 12:43:33 -07001463
Dan Stoza9e56aa02015-11-02 13:00:03 -08001464 mLayersWithQueuedFrames.clear();
Mathias Agopiancd60f992012-08-16 16:28:27 -07001465}
Mathias Agopian4fec8732012-06-29 14:12:52 -07001466
Mathias Agopiancd60f992012-08-16 16:28:27 -07001467void SurfaceFlinger::doDebugFlashRegions()
1468{
1469 // is debugging enabled
1470 if (CC_LIKELY(!mDebugRegion))
1471 return;
1472
1473 const bool repaintEverything = mRepaintEverything;
1474 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1475 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001476 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001477 // transform the dirty region into this screen's coordinate space
1478 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
1479 if (!dirtyRegion.isEmpty()) {
1480 // redraw the whole screen
Chia-I Wub02087d2017-11-09 10:19:54 -08001481 doComposeSurfaces(hw);
Mathias Agopiancd60f992012-08-16 16:28:27 -07001482
1483 // and draw the dirty region
Mathias Agopiancd60f992012-08-16 16:28:27 -07001484 const int32_t height = hw->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08001485 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07001486 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1487
Mathias Agopianda27af92012-09-13 18:17:13 -07001488 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -07001489 }
1490 }
1491 }
1492
1493 postFramebuffer();
1494
1495 if (mDebugRegion > 1) {
1496 usleep(mDebugRegion * 1000);
1497 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001498
Dan Stoza9e56aa02015-11-02 13:00:03 -08001499 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001500 auto& displayDevice = mDisplays[displayId];
1501 if (!displayDevice->isDisplayOn()) {
1502 continue;
1503 }
1504
David Sodman105b7dc2017-11-04 20:28:14 -07001505 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
1506 ALOGE_IF(result != NO_ERROR,
1507 "prepareFrame for display %zd failed:"
1508 " %d (%s)",
1509 displayId, result, strerror(-result));
Mathias Agopianbb53b0e2012-09-24 21:27:29 -07001510 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001511}
1512
Adrian Roos1e1a1282017-11-01 19:05:31 +01001513void SurfaceFlinger::doTracing(const char* where) {
1514 ATRACE_CALL();
1515 ATRACE_NAME(where);
1516 if (CC_UNLIKELY(mTracing.isEnabled())) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01001517 mTracing.traceLayers(where, dumpProtoInfo(LayerVector::StateSet::Drawing));
Adrian Roos1e1a1282017-11-01 19:05:31 +01001518 }
1519}
1520
Brian Andersond6927fb2016-07-23 23:37:30 -07001521void SurfaceFlinger::preComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001522{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001523 ATRACE_CALL();
1524 ALOGV("preComposition");
1525
Mathias Agopiancd60f992012-08-16 16:28:27 -07001526 bool needExtraInvalidate = false;
Robert Carr2047fae2016-11-28 14:09:09 -08001527 mDrawingState.traverseInZOrder([&](Layer* layer) {
1528 if (layer->onPreComposition(refreshStartTime)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001529 needExtraInvalidate = true;
1530 }
Robert Carr2047fae2016-11-28 14:09:09 -08001531 });
1532
Mathias Agopiancd60f992012-08-16 16:28:27 -07001533 if (needExtraInvalidate) {
1534 signalLayerUpdate();
1535 }
1536}
1537
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001538void SurfaceFlinger::updateCompositorTiming(
1539 nsecs_t vsyncPhase, nsecs_t vsyncInterval, nsecs_t compositeTime,
1540 std::shared_ptr<FenceTime>& presentFenceTime) {
1541 // Update queue of past composite+present times and determine the
1542 // most recently known composite to present latency.
David Sodman99974d22017-11-28 12:04:33 -08001543 getBE().mCompositePresentTimes.push({compositeTime, presentFenceTime});
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001544 nsecs_t compositeToPresentLatency = -1;
David Sodman99974d22017-11-28 12:04:33 -08001545 while (!getBE().mCompositePresentTimes.empty()) {
1546 SurfaceFlingerBE::CompositePresentTime& cpt = getBE().mCompositePresentTimes.front();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001547 // Cached values should have been updated before calling this method,
1548 // which helps avoid duplicate syscalls.
1549 nsecs_t displayTime = cpt.display->getCachedSignalTime();
1550 if (displayTime == Fence::SIGNAL_TIME_PENDING) {
1551 break;
1552 }
1553 compositeToPresentLatency = displayTime - cpt.composite;
David Sodman99974d22017-11-28 12:04:33 -08001554 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001555 }
1556
1557 // Don't let mCompositePresentTimes grow unbounded, just in case.
David Sodman99974d22017-11-28 12:04:33 -08001558 while (getBE().mCompositePresentTimes.size() > 16) {
1559 getBE().mCompositePresentTimes.pop();
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001560 }
1561
Brian Andersond0010582017-03-07 13:20:31 -08001562 setCompositorTimingSnapped(
1563 vsyncPhase, vsyncInterval, compositeToPresentLatency);
1564}
1565
1566void SurfaceFlinger::setCompositorTimingSnapped(nsecs_t vsyncPhase,
1567 nsecs_t vsyncInterval, nsecs_t compositeToPresentLatency) {
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001568 // Integer division and modulo round toward 0 not -inf, so we need to
1569 // treat negative and positive offsets differently.
Brian Andersond0010582017-03-07 13:20:31 -08001570 nsecs_t idealLatency = (sfVsyncPhaseOffsetNs > 0) ?
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001571 (vsyncInterval - (sfVsyncPhaseOffsetNs % vsyncInterval)) :
1572 ((-sfVsyncPhaseOffsetNs) % vsyncInterval);
1573
Brian Andersond0010582017-03-07 13:20:31 -08001574 // Just in case sfVsyncPhaseOffsetNs == -vsyncInterval.
1575 if (idealLatency <= 0) {
1576 idealLatency = vsyncInterval;
1577 }
1578
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001579 // Snap the latency to a value that removes scheduling jitter from the
1580 // composition and present times, which often have >1ms of jitter.
1581 // Reducing jitter is important if an app attempts to extrapolate
1582 // something (such as user input) to an accurate diasplay time.
1583 // Snapping also allows an app to precisely calculate sfVsyncPhaseOffsetNs
1584 // with (presentLatency % interval).
Brian Andersond0010582017-03-07 13:20:31 -08001585 nsecs_t bias = vsyncInterval / 2;
1586 int64_t extraVsyncs =
1587 (compositeToPresentLatency - idealLatency + bias) / vsyncInterval;
1588 nsecs_t snappedCompositeToPresentLatency = (extraVsyncs > 0) ?
1589 idealLatency + (extraVsyncs * vsyncInterval) : idealLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001590
David Sodman99974d22017-11-28 12:04:33 -08001591 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1592 getBE().mCompositorTiming.deadline = vsyncPhase - idealLatency;
1593 getBE().mCompositorTiming.interval = vsyncInterval;
1594 getBE().mCompositorTiming.presentLatency = snappedCompositeToPresentLatency;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001595}
1596
1597void SurfaceFlinger::postComposition(nsecs_t refreshStartTime)
Mathias Agopiancd60f992012-08-16 16:28:27 -07001598{
Dan Stoza9e56aa02015-11-02 13:00:03 -08001599 ATRACE_CALL();
1600 ALOGV("postComposition");
1601
Brian Anderson3546a3f2016-07-14 11:51:14 -07001602 // Release any buffers which were replaced this frame
Brian Andersonf6386862016-10-31 16:34:13 -07001603 nsecs_t dequeueReadyTime = systemTime();
Brian Anderson3546a3f2016-07-14 11:51:14 -07001604 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersonf6386862016-10-31 16:34:13 -07001605 layer->releasePendingBuffer(dequeueReadyTime);
Brian Anderson3546a3f2016-07-14 11:51:14 -07001606 }
1607
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07001608 // |mStateLock| not needed as we are on the main thread
1609 const sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Brian Anderson3d4039d2016-09-23 16:31:30 -07001610
David Sodman73beded2017-11-15 11:56:06 -08001611 getBE().mGlCompositionDoneTimeline.updateSignalTimes();
Brian Anderson3d4039d2016-09-23 16:31:30 -07001612 std::shared_ptr<FenceTime> glCompositionDoneFenceTime;
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001613 if (hw && getBE().mHwc->hasClientComposition(HWC_DISPLAY_PRIMARY)) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001614 glCompositionDoneFenceTime =
1615 std::make_shared<FenceTime>(hw->getClientTargetAcquireFence());
David Sodman73beded2017-11-15 11:56:06 -08001616 getBE().mGlCompositionDoneTimeline.push(glCompositionDoneFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001617 } else {
1618 glCompositionDoneFenceTime = FenceTime::NO_FENCE;
1619 }
Brian Anderson3d4039d2016-09-23 16:31:30 -07001620
David Sodman73beded2017-11-15 11:56:06 -08001621 getBE().mDisplayTimeline.updateSignalTimes();
David Sodman105b7dc2017-11-04 20:28:14 -07001622 sp<Fence> presentFence = getBE().mHwc->getPresentFence(HWC_DISPLAY_PRIMARY);
Brian Anderson4e606e32017-03-16 15:34:57 -07001623 auto presentFenceTime = std::make_shared<FenceTime>(presentFence);
David Sodman73beded2017-11-15 11:56:06 -08001624 getBE().mDisplayTimeline.push(presentFenceTime);
Brian Anderson3d4039d2016-09-23 16:31:30 -07001625
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001626 nsecs_t vsyncPhase = mPrimaryDispSync.computeNextRefresh(0);
1627 nsecs_t vsyncInterval = mPrimaryDispSync.getPeriod();
1628
1629 // We use the refreshStartTime which might be sampled a little later than
1630 // when we started doing work for this frame, but that should be okay
1631 // since updateCompositorTiming has snapping logic.
1632 updateCompositorTiming(
Brian Anderson4e606e32017-03-16 15:34:57 -07001633 vsyncPhase, vsyncInterval, refreshStartTime, presentFenceTime);
Brian Andersond0010582017-03-07 13:20:31 -08001634 CompositorTiming compositorTiming;
1635 {
David Sodman99974d22017-11-28 12:04:33 -08001636 std::lock_guard<std::mutex> lock(getBE().mCompositorTimingLock);
1637 compositorTiming = getBE().mCompositorTiming;
Brian Andersond0010582017-03-07 13:20:31 -08001638 }
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001639
Robert Carr2047fae2016-11-28 14:09:09 -08001640 mDrawingState.traverseInZOrder([&](Layer* layer) {
1641 bool frameLatched = layer->onPostComposition(glCompositionDoneFenceTime,
Brian Anderson4e606e32017-03-16 15:34:57 -07001642 presentFenceTime, compositorTiming);
Dan Stozae77c7662016-05-13 11:37:28 -07001643 if (frameLatched) {
Robert Carr2047fae2016-11-28 14:09:09 -08001644 recordBufferingStats(layer->getName().string(),
1645 layer->getOccupancyHistory(false));
Dan Stozae77c7662016-05-13 11:37:28 -07001646 }
Robert Carr2047fae2016-11-28 14:09:09 -08001647 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001648
Brian Andersonfbc80ae2017-05-26 16:23:54 -07001649 if (presentFenceTime->isValid()) {
1650 if (mPrimaryDispSync.addPresentFence(presentFenceTime)) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001651 enableHardwareVsync();
1652 } else {
Jesse Hall948fe0c2013-10-14 12:56:09 -07001653 disableHardwareVsync(false);
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001654 }
1655 }
1656
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08001657 if (!hasSyncFramework) {
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001658 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) && hw->isDisplayOn()) {
Jamie Gennisfaf77cc2013-07-30 15:10:32 -07001659 enableHardwareVsync();
1660 }
1661 }
1662
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001663 if (mAnimCompositionPending) {
1664 mAnimCompositionPending = false;
1665
Brian Anderson4e606e32017-03-16 15:34:57 -07001666 if (presentFenceTime->isValid()) {
Brian Anderson3d4039d2016-09-23 16:31:30 -07001667 mAnimFrameTracker.setActualPresentFence(
Brian Anderson4e606e32017-03-16 15:34:57 -07001668 std::move(presentFenceTime));
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001669 } else if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001670 // The HWC doesn't support present fences, so use the refresh
1671 // timestamp instead.
Dan Stoza9e56aa02015-11-02 13:00:03 -08001672 nsecs_t presentTime =
David Sodman105b7dc2017-11-04 20:28:14 -07001673 getBE().mHwc->getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001674 mAnimFrameTracker.setActualPresentTime(presentTime);
1675 }
1676 mAnimFrameTracker.advanceFrame();
1677 }
Dan Stozab90cf072015-03-05 11:05:59 -08001678
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08001679 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY) &&
1680 hw->getPowerMode() == HWC_POWER_MODE_OFF) {
Dan Stozab90cf072015-03-05 11:05:59 -08001681 return;
1682 }
1683
1684 nsecs_t currentTime = systemTime();
1685 if (mHasPoweredOff) {
1686 mHasPoweredOff = false;
1687 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001688 nsecs_t elapsedTime = currentTime - getBE().mLastSwapTime;
Brian Anderson0a61b0c2016-12-07 14:55:56 -08001689 size_t numPeriods = static_cast<size_t>(elapsedTime / vsyncInterval);
David Sodman4a36e932017-11-07 14:29:47 -08001690 if (numPeriods < SurfaceFlingerBE::NUM_BUCKETS - 1) {
1691 getBE().mFrameBuckets[numPeriods] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001692 } else {
David Sodman4a36e932017-11-07 14:29:47 -08001693 getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001694 }
David Sodman4a36e932017-11-07 14:29:47 -08001695 getBE().mTotalTime += elapsedTime;
Dan Stozab90cf072015-03-05 11:05:59 -08001696 }
David Sodman4a36e932017-11-07 14:29:47 -08001697 getBE().mLastSwapTime = currentTime;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001698}
1699
1700void SurfaceFlinger::rebuildLayerStacks() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001701 ATRACE_CALL();
1702 ALOGV("rebuildLayerStacks");
1703
Mathias Agopiancd60f992012-08-16 16:28:27 -07001704 // rebuild the visible layer list per screen
Jeff Sharkey76488112017-02-27 14:15:18 -07001705 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Siarhei Vishniakoufc2589e2017-09-21 15:35:13 -07001706 ATRACE_NAME("rebuildLayerStacks VR Dirty");
Jeff Sharkey76488112017-02-27 14:15:18 -07001707 mVisibleRegionsDirty = false;
1708 invalidateHwcGeometry();
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001709
Jeff Sharkey76488112017-02-27 14:15:18 -07001710 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1711 Region opaqueRegion;
1712 Region dirtyRegion;
1713 Vector<sp<Layer>> layersSortedByZ;
Chia-I Wu83806892017-11-16 10:50:20 -08001714 Vector<sp<Layer>> layersNeedingFences;
Jeff Sharkey76488112017-02-27 14:15:18 -07001715 const sp<DisplayDevice>& displayDevice(mDisplays[dpy]);
1716 const Transform& tr(displayDevice->getTransform());
1717 const Rect bounds(displayDevice->getBounds());
1718 if (displayDevice->isDisplayOn()) {
Chia-I Wuab0c3192017-08-01 11:29:00 -07001719 computeVisibleRegions(displayDevice, dirtyRegion, opaqueRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001720
Jeff Sharkey76488112017-02-27 14:15:18 -07001721 mDrawingState.traverseInZOrder([&](Layer* layer) {
Chia-I Wu83806892017-11-16 10:50:20 -08001722 bool hwcLayerDestroyed = false;
Chia-I Wuab0c3192017-08-01 11:29:00 -07001723 if (layer->belongsToDisplay(displayDevice->getLayerStack(),
1724 displayDevice->isPrimary())) {
Jeff Sharkey76488112017-02-27 14:15:18 -07001725 Region drawRegion(tr.transform(
1726 layer->visibleNonTransparentRegion));
1727 drawRegion.andSelf(bounds);
1728 if (!drawRegion.isEmpty()) {
1729 layersSortedByZ.add(layer);
1730 } else {
1731 // Clear out the HWC layer if this layer was
1732 // previously visible, but no longer is
Chia-I Wu83806892017-11-16 10:50:20 -08001733 hwcLayerDestroyed = layer->destroyHwcLayer(
Steven Thomasb02664d2017-07-26 18:48:28 -07001734 displayDevice->getHwcDisplayId());
Jeff Sharkey76488112017-02-27 14:15:18 -07001735 }
Fabien Sanglard06a76c02017-03-03 11:19:30 -08001736 } else {
Fabien Sanglard82260512017-03-03 14:58:52 -08001737 // WM changes displayDevice->layerStack upon sleep/awake.
1738 // Here we make sure we delete the HWC layers even if
1739 // WM changed their layer stack.
Chia-I Wu83806892017-11-16 10:50:20 -08001740 hwcLayerDestroyed = layer->destroyHwcLayer(
1741 displayDevice->getHwcDisplayId());
1742 }
1743
1744 // If a layer is not going to get a release fence because
1745 // it is invisible, but it is also going to release its
1746 // old buffer, add it to the list of layers needing
1747 // fences.
1748 if (hwcLayerDestroyed) {
1749 auto found = std::find(mLayersWithQueuedFrames.cbegin(),
1750 mLayersWithQueuedFrames.cend(), layer);
1751 if (found != mLayersWithQueuedFrames.cend()) {
1752 layersNeedingFences.add(layer);
1753 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001754 }
Jeff Sharkey76488112017-02-27 14:15:18 -07001755 });
1756 }
1757 displayDevice->setVisibleLayersSortedByZ(layersSortedByZ);
Chia-I Wu83806892017-11-16 10:50:20 -08001758 displayDevice->setLayersNeedingFences(layersNeedingFences);
Jeff Sharkey76488112017-02-27 14:15:18 -07001759 displayDevice->undefinedRegion.set(bounds);
1760 displayDevice->undefinedRegion.subtractSelf(
1761 tr.transform(opaqueRegion));
1762 displayDevice->dirtyRegion.orSelf(dirtyRegion);
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001763 }
Fabien Sanglard3beb7112017-02-24 17:33:52 -08001764 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001765}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001766
Romain Guy0147a172017-06-01 13:53:56 -07001767mat4 SurfaceFlinger::computeSaturationMatrix() const {
1768 if (mSaturation == 1.0f) {
1769 return mat4();
1770 }
1771
1772 // Rec.709 luma coefficients
1773 float3 luminance{0.213f, 0.715f, 0.072f};
1774 luminance *= 1.0f - mSaturation;
1775 return mat4(
1776 vec4{luminance.r + mSaturation, luminance.r, luminance.r, 0.0f},
1777 vec4{luminance.g, luminance.g + mSaturation, luminance.g, 0.0f},
1778 vec4{luminance.b, luminance.b, luminance.b + mSaturation, 0.0f},
1779 vec4{0.0f, 0.0f, 0.0f, 1.0f}
1780 );
1781}
1782
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001783// pickColorMode translates a given dataspace into the best available color mode.
1784// Currently only support sRGB and Display-P3.
Romain Guy0147a172017-06-01 13:53:56 -07001785android_color_mode SurfaceFlinger::pickColorMode(android_dataspace dataSpace) const {
Romain Guy54f154a2017-10-24 21:40:32 +01001786 if (mForceNativeColorMode) {
1787 return HAL_COLOR_MODE_NATIVE;
1788 }
1789
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001790 switch (dataSpace) {
1791 // treat Unknown as regular SRGB buffer, since that's what the rest of the
1792 // system expects.
1793 case HAL_DATASPACE_UNKNOWN:
1794 case HAL_DATASPACE_SRGB:
1795 case HAL_DATASPACE_V0_SRGB:
1796 return HAL_COLOR_MODE_SRGB;
1797 break;
1798
1799 case HAL_DATASPACE_DISPLAY_P3:
1800 return HAL_COLOR_MODE_DISPLAY_P3;
1801 break;
1802
1803 default:
1804 // TODO (courtneygo): Do we want to assert an error here?
1805 ALOGE("No color mode mapping for %s (%#x)", dataspaceDetails(dataSpace).c_str(),
1806 dataSpace);
1807 return HAL_COLOR_MODE_SRGB;
1808 break;
1809 }
1810}
1811
Romain Guy0147a172017-06-01 13:53:56 -07001812android_dataspace SurfaceFlinger::bestTargetDataSpace(
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001813 android_dataspace a, android_dataspace b, bool hasHdr) const {
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001814 // Only support sRGB and Display-P3 right now.
1815 if (a == HAL_DATASPACE_DISPLAY_P3 || b == HAL_DATASPACE_DISPLAY_P3) {
1816 return HAL_DATASPACE_DISPLAY_P3;
1817 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001818 if (a == HAL_DATASPACE_V0_SCRGB_LINEAR || b == HAL_DATASPACE_V0_SCRGB_LINEAR) {
1819 return HAL_DATASPACE_DISPLAY_P3;
1820 }
1821 if (a == HAL_DATASPACE_V0_SCRGB || b == HAL_DATASPACE_V0_SCRGB) {
1822 return HAL_DATASPACE_DISPLAY_P3;
1823 }
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001824 if (!hasHdr) {
1825 if (a == HAL_DATASPACE_BT2020_PQ || b == HAL_DATASPACE_BT2020_PQ) {
1826 return HAL_DATASPACE_DISPLAY_P3;
1827 }
1828 if (a == HAL_DATASPACE_BT2020_ITU_PQ || b == HAL_DATASPACE_BT2020_ITU_PQ) {
1829 return HAL_DATASPACE_DISPLAY_P3;
1830 }
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001831 }
Romain Guy88d37dd2017-05-26 17:57:05 -07001832
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001833 return HAL_DATASPACE_V0_SRGB;
1834}
1835
Mathias Agopiancd60f992012-08-16 16:28:27 -07001836void SurfaceFlinger::setUpHWComposer() {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001837 ATRACE_CALL();
1838 ALOGV("setUpHWComposer");
1839
Jesse Hall028dc8f2013-08-20 16:35:32 -07001840 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Jesse Hallb7a05492014-08-14 15:45:06 -07001841 bool dirty = !mDisplays[dpy]->getDirtyRegion(false).isEmpty();
1842 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0;
1843 bool wasEmpty = !mDisplays[dpy]->lastCompositionHadVisibleLayers;
1844
1845 // If nothing has changed (!dirty), don't recompose.
1846 // If something changed, but we don't currently have any visible layers,
1847 // and didn't when we last did a composition, then skip it this time.
1848 // The second rule does two things:
1849 // - When all layers are removed from a display, we'll emit one black
1850 // frame, then nothing more until we get new layers.
1851 // - When a display is created with a private layer stack, we won't
1852 // emit any black frames until a layer is added to the layer stack.
1853 bool mustRecompose = dirty && !(empty && wasEmpty);
1854
1855 ALOGV_IF(mDisplays[dpy]->getDisplayType() == DisplayDevice::DISPLAY_VIRTUAL,
1856 "dpy[%zu]: %s composition (%sdirty %sempty %swasEmpty)", dpy,
1857 mustRecompose ? "doing" : "skipping",
1858 dirty ? "+" : "-",
1859 empty ? "+" : "-",
1860 wasEmpty ? "+" : "-");
1861
Dan Stoza71433162014-02-04 16:22:36 -08001862 mDisplays[dpy]->beginFrame(mustRecompose);
Jesse Hallb7a05492014-08-14 15:45:06 -07001863
1864 if (mustRecompose) {
1865 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1866 }
Jesse Hall028dc8f2013-08-20 16:35:32 -07001867 }
1868
Dan Stoza9e56aa02015-11-02 13:00:03 -08001869 // build the h/w work list
1870 if (CC_UNLIKELY(mGeometryInvalid)) {
1871 mGeometryInvalid = false;
1872 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1873 sp<const DisplayDevice> displayDevice(mDisplays[dpy]);
1874 const auto hwcId = displayDevice->getHwcDisplayId();
1875 if (hwcId >= 0) {
1876 const Vector<sp<Layer>>& currentLayers(
1877 displayDevice->getVisibleLayersSortedByZ());
Robert Carrae060832016-11-28 10:51:00 -08001878 for (size_t i = 0; i < currentLayers.size(); i++) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07001879 const auto& layer = currentLayers[i];
Dan Stoza9e56aa02015-11-02 13:00:03 -08001880 if (!layer->hasHwcLayer(hwcId)) {
David Sodman105b7dc2017-11-04 20:28:14 -07001881 if (!layer->createHwcLayer(getBE().mHwc.get(), hwcId)) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001882 layer->forceClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001883 continue;
Jamie Gennisa4310c82012-09-25 20:26:00 -07001884 }
1885 }
Jamie Gennisa4310c82012-09-25 20:26:00 -07001886
Robert Carrae060832016-11-28 10:51:00 -08001887 layer->setGeometry(displayDevice, i);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001888 if (mDebugDisableHWC || mDebugRegion) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08001889 layer->forceClientComposition(hwcId);
Riley Andrews03414a12014-07-01 14:22:59 -07001890 }
1891 }
1892 }
1893 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001894 }
Riley Andrews03414a12014-07-01 14:22:59 -07001895
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001896
Romain Guy0147a172017-06-01 13:53:56 -07001897 mat4 colorMatrix = mColorMatrix * computeSaturationMatrix() * mDaltonizer();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001898
Dan Stoza9e56aa02015-11-02 13:00:03 -08001899 // Set the per-frame data
1900 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1901 auto& displayDevice = mDisplays[displayId];
1902 const auto hwcId = displayDevice->getHwcDisplayId();
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001903
Dan Stoza9e56aa02015-11-02 13:00:03 -08001904 if (hwcId < 0) {
1905 continue;
Jesse Hall38efe862013-04-06 23:12:29 -07001906 }
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001907 if (colorMatrix != mPreviousColorMatrix) {
David Sodman105b7dc2017-11-04 20:28:14 -07001908 status_t result = getBE().mHwc->setColorTransform(hwcId, colorMatrix);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001909 ALOGE_IF(result != NO_ERROR, "Failed to set color transform on "
1910 "display %zd: %d", displayId, result);
1911 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001912 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu8d2651e2018-01-24 12:18:49 -08001913 if ((layer->getDataSpace() == HAL_DATASPACE_BT2020_PQ ||
1914 layer->getDataSpace() == HAL_DATASPACE_BT2020_ITU_PQ) &&
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001915 !displayDevice->getHdrSupport()) {
1916 layer->forceClientComposition(hwcId);
1917 }
1918
chaviwc9232ed2017-11-14 15:31:15 -08001919 if (layer->getForceClientComposition(hwcId)) {
1920 ALOGV("[%s] Requesting Client composition", layer->getName().string());
1921 layer->setCompositionType(hwcId, HWC2::Composition::Client);
1922 continue;
1923 }
1924
Dan Stoza9e56aa02015-11-02 13:00:03 -08001925 layer->setPerFrameData(displayDevice);
1926 }
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001927
1928 if (hasWideColorDisplay) {
1929 android_color_mode newColorMode;
1930 android_dataspace newDataSpace = HAL_DATASPACE_V0_SRGB;
1931
1932 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu5c6e4632018-01-11 08:54:38 -08001933 newDataSpace = bestTargetDataSpace(layer->getDataSpace(), newDataSpace,
1934 displayDevice->getHdrSupport());
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001935 ALOGV("layer: %s, dataspace: %s (%#x), newDataSpace: %s (%#x)",
1936 layer->getName().string(), dataspaceDetails(layer->getDataSpace()).c_str(),
1937 layer->getDataSpace(), dataspaceDetails(newDataSpace).c_str(), newDataSpace);
1938 }
1939 newColorMode = pickColorMode(newDataSpace);
1940
Thierry Strudel2924d012017-08-14 15:19:37 -07001941 setActiveColorModeInternal(displayDevice, newColorMode);
Courtney Goeltzenleuchter5d943892017-03-22 13:46:46 -06001942 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001943 }
1944
Dan Stoza9f26a9c2016-06-22 14:51:09 -07001945 mPreviousColorMatrix = colorMatrix;
1946
Dan Stoza9e56aa02015-11-02 13:00:03 -08001947 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001948 auto& displayDevice = mDisplays[displayId];
1949 if (!displayDevice->isDisplayOn()) {
1950 continue;
1951 }
1952
David Sodman105b7dc2017-11-04 20:28:14 -07001953 status_t result = displayDevice->prepareFrame(*getBE().mHwc);
Dan Stoza9e56aa02015-11-02 13:00:03 -08001954 ALOGE_IF(result != NO_ERROR, "prepareFrame for display %zd failed:"
1955 " %d (%s)", displayId, result, strerror(-result));
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001956 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001957}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001958
Mathias Agopiancd60f992012-08-16 16:28:27 -07001959void SurfaceFlinger::doComposition() {
1960 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001961 ALOGV("doComposition");
1962
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001963 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001964 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001965 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07001966 if (hw->isDisplayOn()) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001967 // transform the dirty region into this screen's coordinate space
1968 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -08001969
1970 // repaint the framebuffer (if needed)
1971 doDisplayComposition(hw, dirtyRegion);
1972
Mathias Agopiancd60f992012-08-16 16:28:27 -07001973 hw->dirtyRegion.clear();
Chia-I Wub02087d2017-11-09 10:19:54 -08001974 hw->flip();
Mathias Agopian87baae12012-07-31 12:38:26 -07001975 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07001976 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001977 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001978}
1979
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001980void SurfaceFlinger::postFramebuffer()
1981{
Mathias Agopian841cde52012-03-01 15:44:37 -08001982 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001983 ALOGV("postFramebuffer");
Mathias Agopianb048cef2012-02-04 15:44:04 -08001984
Mathias Agopiana44b0412011-10-16 18:46:35 -07001985 const nsecs_t now = systemTime();
1986 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001987
Dan Stoza9e56aa02015-11-02 13:00:03 -08001988 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
1989 auto& displayDevice = mDisplays[displayId];
Dan Stoza7bdf55a2016-06-17 11:29:01 -07001990 if (!displayDevice->isDisplayOn()) {
1991 continue;
1992 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08001993 const auto hwcId = displayDevice->getHwcDisplayId();
1994 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07001995 getBE().mHwc->presentAndGetReleaseFences(hwcId);
Mathias Agopian2a231842012-09-24 18:12:35 -07001996 }
Dan Stoza2dc3be82016-04-06 14:05:37 -07001997 displayDevice->onSwapBuffersCompleted();
Chia-I Wu7f402902017-11-09 12:51:10 -08001998 displayDevice->makeCurrent();
Dan Stoza9e56aa02015-11-02 13:00:03 -08001999 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002000 // The layer buffer from the previous frame (if any) is released
2001 // by HWC only when the release fence from this frame (if any) is
2002 // signaled. Always get the release fence from HWC first.
2003 auto hwcLayer = layer->getHwcLayer(hwcId);
David Sodman105b7dc2017-11-04 20:28:14 -07002004 sp<Fence> releaseFence = getBE().mHwc->getLayerReleaseFence(hwcId, hwcLayer);
Chia-I Wu7b549592017-11-15 09:14:57 -08002005
2006 // If the layer was client composited in the previous frame, we
2007 // need to merge with the previous client target acquire fence.
2008 // Since we do not track that, always merge with the current
2009 // client target acquire fence when it is available, even though
2010 // this is suboptimal.
Dan Stoza9e56aa02015-11-02 13:00:03 -08002011 if (layer->getCompositionType(hwcId) == HWC2::Composition::Client) {
Chia-I Wu7b549592017-11-15 09:14:57 -08002012 releaseFence = Fence::merge("LayerRelease", releaseFence,
2013 displayDevice->getClientTargetAcquireFence());
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002014 }
Chia-I Wu7b549592017-11-15 09:14:57 -08002015
Dan Stoza9e56aa02015-11-02 13:00:03 -08002016 layer->onLayerDisplayed(releaseFence);
2017 }
Chia-I Wu83806892017-11-16 10:50:20 -08002018
2019 // We've got a list of layers needing fences, that are disjoint with
2020 // displayDevice->getVisibleLayersSortedByZ. The best we can do is to
2021 // supply them with the present fence.
2022 if (!displayDevice->getLayersNeedingFences().isEmpty()) {
David Sodman105b7dc2017-11-04 20:28:14 -07002023 sp<Fence> presentFence = getBE().mHwc->getPresentFence(hwcId);
Chia-I Wu83806892017-11-16 10:50:20 -08002024 for (auto& layer : displayDevice->getLayersNeedingFences()) {
2025 layer->onLayerDisplayed(presentFence);
2026 }
2027 }
2028
Dan Stoza9e56aa02015-11-02 13:00:03 -08002029 if (hwcId >= 0) {
David Sodman105b7dc2017-11-04 20:28:14 -07002030 getBE().mHwc->clearReleaseFences(hwcId);
Jesse Hallef194142012-06-14 14:45:17 -07002031 }
Jamie Gennise8696a42012-01-15 18:54:57 -08002032 }
2033
Mathias Agopiana44b0412011-10-16 18:46:35 -07002034 mLastSwapBufferTime = systemTime() - now;
2035 mDebugInSwapBuffers = 0;
Jamie Gennis6547ff42013-07-16 20:12:42 -07002036
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002037 // |mStateLock| not needed as we are on the main thread
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002038 if (getBE().mHwc->isConnected(HWC_DISPLAY_PRIMARY)) {
2039 uint32_t flipCount = getDefaultDisplayDeviceLocked()->getPageFlipCount();
2040 if (flipCount % LOG_FRAME_STATS_PERIOD == 0) {
2041 logFrameStats();
2042 }
Jamie Gennis6547ff42013-07-16 20:12:42 -07002043 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002044}
2045
Mathias Agopian87baae12012-07-31 12:38:26 -07002046void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002047{
Mathias Agopian841cde52012-03-01 15:44:37 -08002048 ATRACE_CALL();
2049
Mathias Agopian7cc6df52013-06-05 14:30:54 -07002050 // here we keep a copy of the drawing state (that is the state that's
2051 // going to be overwritten by handleTransactionLocked()) outside of
2052 // mStateLock so that the side-effects of the State assignment
2053 // don't happen with mStateLock held (which can cause deadlocks).
2054 State drawingState(mDrawingState);
2055
Mathias Agopianca4d3602011-05-19 15:38:14 -07002056 Mutex::Autolock _l(mStateLock);
2057 const nsecs_t now = systemTime();
2058 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002059
Mathias Agopianca4d3602011-05-19 15:38:14 -07002060 // Here we're guaranteed that some transaction flags are set
2061 // so we can call handleTransactionLocked() unconditionally.
2062 // We call getTransactionFlags(), which will also clear the flags,
2063 // with mStateLock held to guarantee that mCurrentState won't change
2064 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07002065
Mathias Agopiane57f2922012-08-09 16:29:12 -07002066 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07002067 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07002068
Mathias Agopianca4d3602011-05-19 15:38:14 -07002069 mLastTransactionTime = systemTime() - now;
2070 mDebugInTransaction = 0;
2071 invalidateHwcGeometry();
2072 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07002073}
2074
Lloyd Pique715a2c12017-12-14 17:18:08 -08002075DisplayDevice::DisplayType SurfaceFlinger::determineDisplayType(hwc2_display_t display,
2076 HWC2::Connection connection) const {
2077 // Figure out whether the event is for the primary display or an
2078 // external display by matching the Hwc display id against one for a
2079 // connected display. If we did not find a match, we then check what
2080 // displays are not already connected to determine the type. If we don't
2081 // have a connected primary display, we assume the new display is meant to
2082 // be the primary display, and then if we don't have an external display,
2083 // we assume it is that.
2084 const auto primaryDisplayId =
2085 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_PRIMARY);
2086 const auto externalDisplayId =
2087 getBE().mHwc->getHwcDisplayId(DisplayDevice::DISPLAY_EXTERNAL);
2088 if (primaryDisplayId && primaryDisplayId == display) {
2089 return DisplayDevice::DISPLAY_PRIMARY;
2090 } else if (externalDisplayId && externalDisplayId == display) {
2091 return DisplayDevice::DISPLAY_EXTERNAL;
2092 } else if (connection == HWC2::Connection::Connected && !primaryDisplayId) {
2093 return DisplayDevice::DISPLAY_PRIMARY;
2094 } else if (connection == HWC2::Connection::Connected && !externalDisplayId) {
2095 return DisplayDevice::DISPLAY_EXTERNAL;
2096 }
2097
2098 return DisplayDevice::DISPLAY_ID_INVALID;
2099}
2100
Lloyd Piqueba04e622017-12-14 17:11:26 -08002101void SurfaceFlinger::processDisplayHotplugEventsLocked() {
2102 for (const auto& event : mPendingHotplugEvents) {
Lloyd Pique715a2c12017-12-14 17:18:08 -08002103 auto displayType = determineDisplayType(event.display, event.connection);
2104 if (displayType == DisplayDevice::DISPLAY_ID_INVALID) {
2105 ALOGW("Unable to determine the display type for display %" PRIu64, event.display);
2106 continue;
2107 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002108
2109 if (getBE().mHwc->isUsingVrComposer() && displayType == DisplayDevice::DISPLAY_EXTERNAL) {
2110 ALOGE("External displays are not supported by the vr hardware composer.");
2111 continue;
2112 }
2113
Lloyd Pique715a2c12017-12-14 17:18:08 -08002114 getBE().mHwc->onHotplug(event.display, displayType, event.connection);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002115
2116 if (event.connection == HWC2::Connection::Connected) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002117 ALOGV("Creating built in display %d", displayType);
2118 ALOGW_IF(mBuiltinDisplays[displayType],
2119 "Overwriting display token for display type %d", displayType);
2120 mBuiltinDisplays[displayType] = new BBinder();
2121 // All non-virtual displays are currently considered secure.
2122 DisplayDeviceState info(displayType, true);
2123 info.displayName = displayType == DisplayDevice::DISPLAY_PRIMARY ?
2124 "Built-in Screen" : "External Screen";
2125 mCurrentState.displays.add(mBuiltinDisplays[displayType], info);
2126 mInterceptor.saveDisplayCreation(info);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002127 } else {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002128 ALOGV("Removing built in display %d", displayType);
Lloyd Piqueba04e622017-12-14 17:11:26 -08002129
Lloyd Piquefcd86612017-12-14 17:15:36 -08002130 ssize_t idx = mCurrentState.displays.indexOfKey(mBuiltinDisplays[displayType]);
2131 if (idx >= 0) {
2132 const DisplayDeviceState& info(mCurrentState.displays.valueAt(idx));
2133 mInterceptor.saveDisplayDeletion(info.displayId);
2134 mCurrentState.displays.removeItemsAt(idx);
2135 }
2136 mBuiltinDisplays[displayType].clear();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002137 }
2138
2139 processDisplayChangesLocked();
2140 }
2141
2142 mPendingHotplugEvents.clear();
2143}
2144
Lloyd Pique347200f2017-12-14 17:00:15 -08002145void SurfaceFlinger::processDisplayChangesLocked() {
2146 // here we take advantage of Vector's copy-on-write semantics to
2147 // improve performance by skipping the transaction entirely when
2148 // know that the lists are identical
2149 const KeyedVector<wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
2150 const KeyedVector<wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
2151 if (!curr.isIdenticalTo(draw)) {
2152 mVisibleRegionsDirty = true;
2153 const size_t cc = curr.size();
2154 size_t dc = draw.size();
2155
2156 // find the displays that were removed
2157 // (ie: in drawing state but not in current state)
2158 // also handle displays that changed
2159 // (ie: displays that are in both lists)
2160 for (size_t i = 0; i < dc;) {
2161 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
2162 if (j < 0) {
2163 // in drawing state but not in current state
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002164 // Call makeCurrent() on the primary display so we can
2165 // be sure that nothing associated with this display
2166 // is current.
2167 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDeviceLocked());
2168 if (defaultDisplay != nullptr) defaultDisplay->makeCurrent();
2169 sp<DisplayDevice> hw(getDisplayDeviceLocked(draw.keyAt(i)));
2170 if (hw != nullptr) hw->disconnect(getHwComposer());
2171 if (draw[i].type < DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES)
2172 mEventThread->onHotplugReceived(draw[i].type, false);
2173 mDisplays.removeItem(draw.keyAt(i));
Lloyd Pique347200f2017-12-14 17:00:15 -08002174 } else {
2175 // this display is in both lists. see if something changed.
2176 const DisplayDeviceState& state(curr[j]);
2177 const wp<IBinder>& display(curr.keyAt(j));
2178 const sp<IBinder> state_binder = IInterface::asBinder(state.surface);
2179 const sp<IBinder> draw_binder = IInterface::asBinder(draw[i].surface);
2180 if (state_binder != draw_binder) {
2181 // changing the surface is like destroying and
2182 // recreating the DisplayDevice, so we just remove it
2183 // from the drawing state, so that it get re-added
2184 // below.
2185 sp<DisplayDevice> hw(getDisplayDeviceLocked(display));
2186 if (hw != nullptr) hw->disconnect(getHwComposer());
2187 mDisplays.removeItem(display);
2188 mDrawingState.displays.removeItemsAt(i);
2189 dc--;
2190 // at this point we must loop to the next item
2191 continue;
2192 }
2193
2194 const sp<DisplayDevice> disp(getDisplayDeviceLocked(display));
2195 if (disp != nullptr) {
2196 if (state.layerStack != draw[i].layerStack) {
2197 disp->setLayerStack(state.layerStack);
2198 }
2199 if ((state.orientation != draw[i].orientation) ||
2200 (state.viewport != draw[i].viewport) || (state.frame != draw[i].frame)) {
2201 disp->setProjection(state.orientation, state.viewport, state.frame);
2202 }
2203 if (state.width != draw[i].width || state.height != draw[i].height) {
2204 disp->setDisplaySize(state.width, state.height);
2205 }
2206 }
2207 }
2208 ++i;
2209 }
2210
2211 // find displays that were added
2212 // (ie: in current state but not in drawing state)
2213 for (size_t i = 0; i < cc; i++) {
2214 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
2215 const DisplayDeviceState& state(curr[i]);
2216
2217 sp<DisplaySurface> dispSurface;
2218 sp<IGraphicBufferProducer> producer;
2219 sp<IGraphicBufferProducer> bqProducer;
2220 sp<IGraphicBufferConsumer> bqConsumer;
Lloyd Pique12eb4232018-01-17 11:54:43 -08002221 mCreateBufferQueue(&bqProducer, &bqConsumer, false);
Lloyd Pique347200f2017-12-14 17:00:15 -08002222
2223 int32_t hwcId = -1;
2224 if (state.isVirtualDisplay()) {
2225 // Virtual displays without a surface are dormant:
2226 // they have external state (layer stack, projection,
2227 // etc.) but no internal state (i.e. a DisplayDevice).
2228 if (state.surface != nullptr) {
2229 // Allow VR composer to use virtual displays.
2230 if (mUseHwcVirtualDisplays || getBE().mHwc->isUsingVrComposer()) {
2231 int width = 0;
2232 int status = state.surface->query(NATIVE_WINDOW_WIDTH, &width);
2233 ALOGE_IF(status != NO_ERROR, "Unable to query width (%d)", status);
2234 int height = 0;
2235 status = state.surface->query(NATIVE_WINDOW_HEIGHT, &height);
2236 ALOGE_IF(status != NO_ERROR, "Unable to query height (%d)", status);
2237 int intFormat = 0;
2238 status = state.surface->query(NATIVE_WINDOW_FORMAT, &intFormat);
2239 ALOGE_IF(status != NO_ERROR, "Unable to query format (%d)", status);
2240 auto format = static_cast<android_pixel_format_t>(intFormat);
2241
2242 getBE().mHwc->allocateVirtualDisplay(width, height, &format, &hwcId);
2243 }
2244
2245 // TODO: Plumb requested format back up to consumer
2246
2247 sp<VirtualDisplaySurface> vds =
2248 new VirtualDisplaySurface(*getBE().mHwc, hwcId, state.surface,
2249 bqProducer, bqConsumer,
2250 state.displayName);
2251
2252 dispSurface = vds;
2253 producer = vds;
2254 }
2255 } else {
2256 ALOGE_IF(state.surface != nullptr,
2257 "adding a supported display, but rendering "
2258 "surface is provided (%p), ignoring it",
2259 state.surface.get());
2260
2261 hwcId = state.type;
2262 dispSurface = new FramebufferSurface(*getBE().mHwc, hwcId, bqConsumer);
2263 producer = bqProducer;
2264 }
2265
2266 const wp<IBinder>& display(curr.keyAt(i));
Lloyd Piquefcd86612017-12-14 17:15:36 -08002267
Lloyd Pique347200f2017-12-14 17:00:15 -08002268 if (dispSurface != nullptr) {
Chia-I Wu4b0e4dd2018-02-20 13:04:55 -08002269 bool hasWideColorSupport = false;
2270 if (hasWideColorDisplay) {
Lloyd Piquefcd86612017-12-14 17:15:36 -08002271 std::vector<android_color_mode_t> modes =
2272 getHwComposer().getColorModes(state.type);
2273 for (android_color_mode_t colorMode : modes) {
2274 switch (colorMode) {
2275 case HAL_COLOR_MODE_DISPLAY_P3:
2276 case HAL_COLOR_MODE_ADOBE_RGB:
2277 case HAL_COLOR_MODE_DCI_P3:
Chia-I Wu4b0e4dd2018-02-20 13:04:55 -08002278 hasWideColorSupport = true;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002279 break;
2280 default:
2281 break;
2282 }
2283 }
Lloyd Piquefcd86612017-12-14 17:15:36 -08002284 }
2285
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002286 bool hasHdrSupport = false;
2287 std::unique_ptr<HdrCapabilities> hdrCapabilities =
2288 getHwComposer().getHdrCapabilities(state.type);
2289 if (hdrCapabilities) {
2290 const std::vector<int32_t> types = hdrCapabilities->getSupportedHdrTypes();
2291 auto iter = std::find(types.cbegin(), types.cend(), HAL_HDR_HDR10);
2292 hasHdrSupport = iter != types.cend();
2293 }
2294
Lloyd Pique347200f2017-12-14 17:00:15 -08002295 sp<DisplayDevice> hw =
2296 new DisplayDevice(this, state.type, hwcId, state.isSecure, display,
Chia-I Wu4b0e4dd2018-02-20 13:04:55 -08002297 dispSurface, producer, hasWideColorSupport,
Chia-I Wu5c6e4632018-01-11 08:54:38 -08002298 hasHdrSupport);
Lloyd Piquefcd86612017-12-14 17:15:36 -08002299
Lloyd Piquec5208312018-01-08 17:59:02 -08002300 android_color_mode defaultColorMode = HAL_COLOR_MODE_NATIVE;
Chia-I Wu4b0e4dd2018-02-20 13:04:55 -08002301 if (hasWideColorSupport) {
Lloyd Piquec5208312018-01-08 17:59:02 -08002302 defaultColorMode = HAL_COLOR_MODE_SRGB;
Lloyd Piquefcd86612017-12-14 17:15:36 -08002303 }
Lloyd Piquec5208312018-01-08 17:59:02 -08002304 setActiveColorModeInternal(hw, defaultColorMode);
2305 hw->setCompositionDataSpace(HAL_DATASPACE_UNKNOWN);
Lloyd Pique347200f2017-12-14 17:00:15 -08002306 hw->setLayerStack(state.layerStack);
2307 hw->setProjection(state.orientation, state.viewport, state.frame);
2308 hw->setDisplayName(state.displayName);
Lloyd Piquec5208312018-01-08 17:59:02 -08002309
Lloyd Pique347200f2017-12-14 17:00:15 -08002310 mDisplays.add(display, hw);
2311 if (!state.isVirtualDisplay()) {
2312 mEventThread->onHotplugReceived(state.type, true);
2313 }
2314 }
2315 }
2316 }
2317 }
Lloyd Piqueba04e622017-12-14 17:11:26 -08002318
2319 mDrawingState.displays = mCurrentState.displays;
Lloyd Pique347200f2017-12-14 17:00:15 -08002320}
2321
Mathias Agopian87baae12012-07-31 12:38:26 -07002322void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07002323{
Dan Stoza7dde5992015-05-22 09:51:44 -07002324 // Notify all layers of available frames
Robert Carr2047fae2016-11-28 14:09:09 -08002325 mCurrentState.traverseInZOrder([](Layer* layer) {
2326 layer->notifyAvailableFrames();
2327 });
Dan Stoza7dde5992015-05-22 09:51:44 -07002328
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002329 /*
2330 * Traversal of the children
2331 * (perform the transaction for each of them if needed)
2332 */
2333
Mathias Agopian3559b072012-08-15 13:46:03 -07002334 if (transactionFlags & eTraversalNeeded) {
Robert Carr2047fae2016-11-28 14:09:09 -08002335 mCurrentState.traverseInZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002336 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
Robert Carr2047fae2016-11-28 14:09:09 -08002337 if (!trFlags) return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002338
2339 const uint32_t flags = layer->doTransaction(0);
2340 if (flags & Layer::eVisibleRegion)
2341 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002342 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002343 }
2344
2345 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07002346 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002347 */
2348
Mathias Agopiane57f2922012-08-09 16:29:12 -07002349 if (transactionFlags & eDisplayTransactionNeeded) {
Lloyd Pique347200f2017-12-14 17:00:15 -08002350 processDisplayChangesLocked();
Lloyd Piqueba04e622017-12-14 17:11:26 -08002351 processDisplayHotplugEventsLocked();
Mathias Agopian3559b072012-08-15 13:46:03 -07002352 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002353
Mathias Agopian84300952012-11-21 16:02:13 -08002354 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
2355 // The transform hint might have changed for some layers
2356 // (either because a display has changed, or because a layer
2357 // as changed).
2358 //
2359 // Walk through all the layers in currentLayers,
2360 // and update their transform hint.
2361 //
2362 // If a layer is visible only on a single display, then that
2363 // display is used to calculate the hint, otherwise we use the
2364 // default display.
2365 //
2366 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
2367 // the hint is set before we acquire a buffer from the surface texture.
2368 //
2369 // NOTE: layer transactions have taken place already, so we use their
2370 // drawing state. However, SurfaceFlinger's own transaction has not
2371 // happened yet, so we must use the current state layer list
2372 // (soon to become the drawing state list).
2373 //
2374 sp<const DisplayDevice> disp;
2375 uint32_t currentlayerStack = 0;
Robert Carr2047fae2016-11-28 14:09:09 -08002376 bool first = true;
2377 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian84300952012-11-21 16:02:13 -08002378 // NOTE: we rely on the fact that layers are sorted by
2379 // layerStack first (so we don't have to traverse the list
2380 // of displays for every layer).
Robert Carr1f0a16a2016-10-24 16:27:39 -07002381 uint32_t layerStack = layer->getLayerStack();
Robert Carr2047fae2016-11-28 14:09:09 -08002382 if (first || currentlayerStack != layerStack) {
Mathias Agopian84300952012-11-21 16:02:13 -08002383 currentlayerStack = layerStack;
2384 // figure out if this layerstack is mirrored
2385 // (more than one display) if so, pick the default display,
2386 // if not, pick the only display it's on.
2387 disp.clear();
2388 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2389 sp<const DisplayDevice> hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002390 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002391 if (disp == nullptr) {
George Burgess IV406a2852017-08-29 17:57:25 -07002392 disp = std::move(hw);
Mathias Agopian84300952012-11-21 16:02:13 -08002393 } else {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002394 disp = nullptr;
Mathias Agopian84300952012-11-21 16:02:13 -08002395 break;
2396 }
2397 }
2398 }
2399 }
Chet Haase91d25932013-04-11 15:24:55 -07002400
Robert Carr56a0b9a2017-12-04 16:06:13 -08002401 if (transactionFlags & eDisplayTransactionNeeded) {
Peiyong Lin566a3b42018-01-09 18:22:43 -08002402 if (disp == nullptr) {
Robert Carr56a0b9a2017-12-04 16:06:13 -08002403 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
2404 // redraw after transform hint changes. See bug 8508397.
2405
2406 // could be null when this layer is using a layerStack
2407 // that is not visible on any display. Also can occur at
2408 // screen off/on times.
2409 disp = getDefaultDisplayDeviceLocked();
2410 }
2411 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08002412 }
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08002413 if (disp != nullptr) {
2414 layer->updateTransformHint(disp);
2415 }
Robert Carr2047fae2016-11-28 14:09:09 -08002416
2417 first = false;
2418 });
Mathias Agopian84300952012-11-21 16:02:13 -08002419 }
2420
2421
Mathias Agopian3559b072012-08-15 13:46:03 -07002422 /*
2423 * Perform our own transaction if needed
2424 */
Robert Carr1f0a16a2016-10-24 16:27:39 -07002425
2426 if (mLayersAdded) {
2427 mLayersAdded = false;
2428 // Layers have been added.
Mathias Agopian3559b072012-08-15 13:46:03 -07002429 mVisibleRegionsDirty = true;
2430 }
2431
2432 // some layers might have been removed, so
2433 // we need to update the regions they're exposing.
2434 if (mLayersRemoved) {
2435 mLayersRemoved = false;
2436 mVisibleRegionsDirty = true;
Robert Carr2047fae2016-11-28 14:09:09 -08002437 mDrawingState.traverseInZOrder([&](Layer* layer) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002438 if (mLayersPendingRemoval.indexOf(layer) >= 0) {
Mathias Agopian3559b072012-08-15 13:46:03 -07002439 // this layer is not visible anymore
2440 // TODO: we could traverse the tree from front to back and
2441 // compute the actual visible region
2442 // TODO: we could cache the transformed region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002443 Region visibleReg;
2444 visibleReg.set(layer->computeScreenBounds());
Chia-I Wuab0c3192017-08-01 11:29:00 -07002445 invalidateLayerStack(layer, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07002446 }
Robert Carr2047fae2016-11-28 14:09:09 -08002447 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002448 }
2449
2450 commitTransaction();
Riley Andrews03414a12014-07-01 14:22:59 -07002451
2452 updateCursorAsync();
2453}
2454
2455void SurfaceFlinger::updateCursorAsync()
2456{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002457 for (size_t displayId = 0; displayId < mDisplays.size(); ++displayId) {
2458 auto& displayDevice = mDisplays[displayId];
2459 if (displayDevice->getHwcDisplayId() < 0) {
Riley Andrews03414a12014-07-01 14:22:59 -07002460 continue;
2461 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002462
2463 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
2464 layer->updateCursorPosition(displayDevice);
Riley Andrews03414a12014-07-01 14:22:59 -07002465 }
2466 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002467}
2468
2469void SurfaceFlinger::commitTransaction()
2470{
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002471 if (!mLayersPendingRemoval.isEmpty()) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07002472 // Notify removed layers now that they can't be drawn from
Robert Carr1f0a16a2016-10-24 16:27:39 -07002473 for (const auto& l : mLayersPendingRemoval) {
2474 recordBufferingStats(l->getName().string(),
2475 l->getOccupancyHistory(true));
2476 l->onRemoved();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002477 }
2478 mLayersPendingRemoval.clear();
2479 }
2480
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002481 // If this transaction is part of a window animation then the next frame
2482 // we composite should be considered an animation as well.
2483 mAnimCompositionPending = mAnimTransactionPending;
2484
Mathias Agopian4fec8732012-06-29 14:12:52 -07002485 mDrawingState = mCurrentState;
Robert Carr1f0a16a2016-10-24 16:27:39 -07002486 mDrawingState.traverseInZOrder([](Layer* layer) {
2487 layer->commitChildList();
2488 });
Jamie Gennis2d5e2302012-10-15 18:24:43 -07002489 mTransactionPending = false;
2490 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002491 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002492}
2493
Chia-I Wuab0c3192017-08-01 11:29:00 -07002494void SurfaceFlinger::computeVisibleRegions(const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002495 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002496{
Mathias Agopian841cde52012-03-01 15:44:37 -08002497 ATRACE_CALL();
Dan Stoza9e56aa02015-11-02 13:00:03 -08002498 ALOGV("computeVisibleRegions");
Mathias Agopian841cde52012-03-01 15:44:37 -08002499
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002500 Region aboveOpaqueLayers;
2501 Region aboveCoveredLayers;
2502 Region dirty;
2503
Mathias Agopian87baae12012-07-31 12:38:26 -07002504 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002505
Robert Carr2047fae2016-11-28 14:09:09 -08002506 mDrawingState.traverseInReverseZOrder([&](Layer* layer) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002507 // start with the whole surface at its current location
Mathias Agopian1eae0ee2013-06-05 16:59:15 -07002508 const Layer::State& s(layer->getDrawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002509
Jesse Hall01e29052013-02-19 16:13:35 -08002510 // only consider the layers on the given layer stack
Chia-I Wuab0c3192017-08-01 11:29:00 -07002511 if (!layer->belongsToDisplay(displayDevice->getLayerStack(), displayDevice->isPrimary()))
Robert Carr2047fae2016-11-28 14:09:09 -08002512 return;
Mathias Agopian87baae12012-07-31 12:38:26 -07002513
Mathias Agopianab028732010-03-16 16:41:46 -07002514 /*
2515 * opaqueRegion: area of a surface that is fully opaque.
2516 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002517 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002518
2519 /*
2520 * visibleRegion: area of a surface that is visible on screen
2521 * and not fully transparent. This is essentially the layer's
2522 * footprint minus the opaque regions above it.
2523 * Areas covered by a translucent surface are considered visible.
2524 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002525 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002526
2527 /*
2528 * coveredRegion: area of a surface that is covered by all
2529 * visible regions above it (which includes the translucent areas).
2530 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002531 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002532
Jesse Halla8026d22012-09-25 13:25:04 -07002533 /*
2534 * transparentRegion: area of a surface that is hinted to be completely
2535 * transparent. This is only used to tell when the layer has no visible
2536 * non-transparent regions and can be removed from the layer list. It
2537 * does not affect the visibleRegion of this layer or any layers
2538 * beneath it. The hint may not be correct if apps don't respect the
2539 * SurfaceView restrictions (which, sadly, some don't).
2540 */
2541 Region transparentRegion;
2542
Mathias Agopianab028732010-03-16 16:41:46 -07002543
2544 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07002545 if (CC_LIKELY(layer->isVisible())) {
Andy McFadden4125a4f2014-01-29 17:17:11 -08002546 const bool translucent = !layer->isOpaque(s);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002547 Rect bounds(layer->computeScreenBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002548 visibleRegion.set(bounds);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002549 Transform tr = layer->getTransform();
Mathias Agopianab028732010-03-16 16:41:46 -07002550 if (!visibleRegion.isEmpty()) {
2551 // Remove the transparent area from the visible region
2552 if (translucent) {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002553 if (tr.preserveRects()) {
2554 // transform the transparent region
2555 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07002556 } else {
Dan Stoza22f7fc42016-05-10 16:19:53 -07002557 // transformation too complex, can't do the
2558 // transparent region optimization.
2559 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07002560 }
Mathias Agopianab028732010-03-16 16:41:46 -07002561 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002562
Mathias Agopianab028732010-03-16 16:41:46 -07002563 // compute the opaque region
Robert Carr1f0a16a2016-10-24 16:27:39 -07002564 const int32_t layerOrientation = tr.getOrientation();
Jorim Jaggi039bbb82017-09-06 18:12:05 +02002565 if (layer->getAlpha() == 1.0f && !translucent &&
Mathias Agopianab028732010-03-16 16:41:46 -07002566 ((layerOrientation & Transform::ROT_INVALID) == false)) {
2567 // the opaque region is the layer's footprint
2568 opaqueRegion = visibleRegion;
2569 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002570 }
2571 }
2572
Robert Carre5f4f692018-01-12 13:12:28 -08002573 if (visibleRegion.isEmpty()) {
2574 layer->clearVisibilityRegions();
2575 return;
2576 }
2577
Mathias Agopianab028732010-03-16 16:41:46 -07002578 // Clip the covered region to the visible region
2579 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
2580
2581 // Update aboveCoveredLayers for next (lower) layer
2582 aboveCoveredLayers.orSelf(visibleRegion);
2583
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002584 // subtract the opaque region covered by the layers above us
2585 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002586
2587 // compute this layer's dirty region
2588 if (layer->contentDirty) {
2589 // we need to invalidate the whole region
2590 dirty = visibleRegion;
2591 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07002592 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002593 layer->contentDirty = false;
2594 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002595 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07002596 * the exposed region consists of two components:
2597 * 1) what's VISIBLE now and was COVERED before
2598 * 2) what's EXPOSED now less what was EXPOSED before
2599 *
2600 * note that (1) is conservative, we start with the whole
2601 * visible region but only keep what used to be covered by
2602 * something -- which mean it may have been exposed.
2603 *
2604 * (2) handles areas that were not covered by anything but got
2605 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07002606 */
Mathias Agopianab028732010-03-16 16:41:46 -07002607 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07002608 const Region oldVisibleRegion = layer->visibleRegion;
2609 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07002610 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
2611 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002612 }
2613 dirty.subtractSelf(aboveOpaqueLayers);
2614
2615 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07002616 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002617
Mathias Agopianab028732010-03-16 16:41:46 -07002618 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002619 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07002620
Jesse Halla8026d22012-09-25 13:25:04 -07002621 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002622 layer->setVisibleRegion(visibleRegion);
2623 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07002624 layer->setVisibleNonTransparentRegion(
2625 visibleRegion.subtract(transparentRegion));
Robert Carr2047fae2016-11-28 14:09:09 -08002626 });
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002627
Mathias Agopian87baae12012-07-31 12:38:26 -07002628 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002629}
2630
Chia-I Wuab0c3192017-08-01 11:29:00 -07002631void SurfaceFlinger::invalidateLayerStack(const sp<const Layer>& layer, const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07002632 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07002633 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Chia-I Wuab0c3192017-08-01 11:29:00 -07002634 if (layer->belongsToDisplay(hw->getLayerStack(), hw->isPrimary())) {
Mathias Agopian42977342012-08-05 00:40:46 -07002635 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07002636 }
2637 }
Mathias Agopian87baae12012-07-31 12:38:26 -07002638}
2639
Dan Stoza6b9454d2014-11-07 16:00:59 -08002640bool SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002641{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002642 ALOGV("handlePageFlip");
2643
Brian Andersond6927fb2016-07-23 23:37:30 -07002644 nsecs_t latchTime = systemTime();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002645
Mathias Agopian4fec8732012-06-29 14:12:52 -07002646 bool visibleRegions = false;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002647 bool frameQueued = false;
Mike Stroyan0cd76192017-04-20 12:10:48 -06002648 bool newDataLatched = false;
Eric Penner51c59cd2014-07-28 19:51:58 -07002649
2650 // Store the set of layers that need updates. This set must not change as
2651 // buffers are being latched, as this could result in a deadlock.
2652 // Example: Two producers share the same command stream and:
2653 // 1.) Layer 0 is latched
2654 // 2.) Layer 0 gets a new frame
2655 // 2.) Layer 1 gets a new frame
2656 // 3.) Layer 1 is latched.
2657 // Display is now waiting on Layer 1's frame, which is behind layer 0's
2658 // second frame. But layer 0's second frame could be waiting on display.
Robert Carr2047fae2016-11-28 14:09:09 -08002659 mDrawingState.traverseInZOrder([&](Layer* layer) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002660 if (layer->hasQueuedFrame()) {
2661 frameQueued = true;
2662 if (layer->shouldPresentNow(mPrimaryDispSync)) {
Robert Carr2047fae2016-11-28 14:09:09 -08002663 mLayersWithQueuedFrames.push_back(layer);
Dan Stozaee44edd2015-03-23 15:50:23 -07002664 } else {
2665 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002666 }
Dan Stozaee44edd2015-03-23 15:50:23 -07002667 } else {
2668 layer->useEmptyDamage();
Dan Stoza6b9454d2014-11-07 16:00:59 -08002669 }
Robert Carr2047fae2016-11-28 14:09:09 -08002670 });
2671
Dan Stoza9e56aa02015-11-02 13:00:03 -08002672 for (auto& layer : mLayersWithQueuedFrames) {
Brian Andersond6927fb2016-07-23 23:37:30 -07002673 const Region dirty(layer->latchBuffer(visibleRegions, latchTime));
Dan Stozaee44edd2015-03-23 15:50:23 -07002674 layer->useSurfaceDamage();
Chia-I Wuab0c3192017-08-01 11:29:00 -07002675 invalidateLayerStack(layer, dirty);
Chia-I Wua36bf922017-06-30 12:51:05 -07002676 if (layer->isBufferLatched()) {
Mike Stroyan0cd76192017-04-20 12:10:48 -06002677 newDataLatched = true;
2678 }
Mathias Agopian4fec8732012-06-29 14:12:52 -07002679 }
Mathias Agopian4da75192010-08-10 17:19:56 -07002680
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002681 mVisibleRegionsDirty |= visibleRegions;
Dan Stoza6b9454d2014-11-07 16:00:59 -08002682
2683 // If we will need to wake up at some time in the future to deal with a
2684 // queued frame that shouldn't be displayed during this vsync period, wake
2685 // up during the next vsync period to check again.
Chia-I Wua36bf922017-06-30 12:51:05 -07002686 if (frameQueued && (mLayersWithQueuedFrames.empty() || !newDataLatched)) {
Dan Stoza6b9454d2014-11-07 16:00:59 -08002687 signalLayerUpdate();
2688 }
2689
2690 // Only continue with the refresh if there is actually new work to do
Mike Stroyan0cd76192017-04-20 12:10:48 -06002691 return !mLayersWithQueuedFrames.empty() && newDataLatched;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002692}
2693
Mathias Agopianad456f92011-01-13 17:53:01 -08002694void SurfaceFlinger::invalidateHwcGeometry()
2695{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002696 mGeometryInvalid = true;
Mathias Agopianad456f92011-01-13 17:53:01 -08002697}
2698
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002699
Fabien Sanglard830b8472016-11-30 16:35:58 -08002700void SurfaceFlinger::doDisplayComposition(
2701 const sp<const DisplayDevice>& displayDevice,
Mathias Agopian87baae12012-07-31 12:38:26 -07002702 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002703{
Dan Stoza71433162014-02-04 16:22:36 -08002704 // We only need to actually compose the display if:
2705 // 1) It is being handled by hardware composer, which may need this to
2706 // keep its virtual display state machine in sync, or
2707 // 2) There is work to be done (the dirty region isn't empty)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002708 bool isHwcDisplay = displayDevice->getHwcDisplayId() >= 0;
Dan Stoza71433162014-02-04 16:22:36 -08002709 if (!isHwcDisplay && inDirtyRegion.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002710 ALOGV("Skipping display composition");
Dan Stoza71433162014-02-04 16:22:36 -08002711 return;
2712 }
2713
Dan Stoza9e56aa02015-11-02 13:00:03 -08002714 ALOGV("doDisplayComposition");
Chia-I Wub02087d2017-11-09 10:19:54 -08002715 if (!doComposeSurfaces(displayDevice)) return;
Mathias Agopianda27af92012-09-13 18:17:13 -07002716
2717 // swap buffers (presentation)
Fabien Sanglard830b8472016-11-30 16:35:58 -08002718 displayDevice->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002719}
2720
Chia-I Wub02087d2017-11-09 10:19:54 -08002721bool SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& displayDevice)
Mathias Agopianf384cc32011-09-08 18:31:55 -07002722{
Dan Stoza9e56aa02015-11-02 13:00:03 -08002723 ALOGV("doComposeSurfaces");
Mathias Agopiancd20eb02011-09-22 20:57:04 -07002724
Chia-I Wub02087d2017-11-09 10:19:54 -08002725 const Region bounds(displayDevice->bounds());
chaviwa76b2712017-09-20 12:02:26 -07002726 const DisplayRenderArea renderArea(displayDevice);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002727 const auto hwcId = displayDevice->getHwcDisplayId();
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002728
2729 mat4 oldColorMatrix;
David Sodman105b7dc2017-11-04 20:28:14 -07002730 const bool applyColorMatrix = !getBE().mHwc->hasDeviceComposition(hwcId) &&
2731 !getBE().mHwc->hasCapability(HWC2::Capability::SkipClientColorTransform);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002732 if (applyColorMatrix) {
2733 mat4 colorMatrix = mColorMatrix * mDaltonizer();
2734 oldColorMatrix = getRenderEngine().setupColorTransform(colorMatrix);
2735 }
2736
David Sodman105b7dc2017-11-04 20:28:14 -07002737 bool hasClientComposition = getBE().mHwc->hasClientComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002738 if (hasClientComposition) {
2739 ALOGV("hasClientComposition");
2740
Chia-I Wu69bf10f2018-02-20 13:04:50 -08002741 android_dataspace outputDataspace = HAL_DATASPACE_UNKNOWN;
2742 if (!mForceNativeColorMode && displayDevice->getWideColorSupport() &&
2743 displayDevice->getActiveColorMode() == HAL_COLOR_MODE_DISPLAY_P3) {
2744 outputDataspace = HAL_DATASPACE_DISPLAY_P3;
2745 }
2746 getBE().mRenderEngine->setOutputDataSpace(outputDataspace);
2747
Chia-I Wu7f402902017-11-09 12:51:10 -08002748 if (!displayDevice->makeCurrent()) {
Michael Chockc8c71092013-03-04 15:15:46 -08002749 ALOGW("DisplayDevice::makeCurrent failed. Aborting surface composition for display %s",
Dan Stoza9e56aa02015-11-02 13:00:03 -08002750 displayDevice->getDisplayName().string());
Chia-I Wu7f402902017-11-09 12:51:10 -08002751 getRenderEngine().resetCurrentSurface();
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07002752
2753 // |mStateLock| not needed as we are on the main thread
Chia-I Wu7f402902017-11-09 12:51:10 -08002754 if(!getDefaultDisplayDeviceLocked()->makeCurrent()) {
Michael Lentine3f121fc2014-10-01 11:17:28 -07002755 ALOGE("DisplayDevice::makeCurrent on default display failed. Aborting.");
2756 }
2757 return false;
Michael Chockc8c71092013-03-04 15:15:46 -08002758 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002759
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07002760 // Never touch the framebuffer if we don't have any framebuffer layers
David Sodman105b7dc2017-11-04 20:28:14 -07002761 const bool hasDeviceComposition = getBE().mHwc->hasDeviceComposition(hwcId);
Dan Stoza9e56aa02015-11-02 13:00:03 -08002762 if (hasDeviceComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002763 // when using overlays, we assume a fully transparent framebuffer
2764 // NOTE: we could reduce how much we need to clear, for instance
2765 // remove where there are opaque FB layers. however, on some
Mathias Agopian3f844832013-08-07 21:24:32 -07002766 // GPUs doing a "clean slate" clear might be more efficient.
Mathias Agopianb9494d52012-04-18 02:28:45 -07002767 // We'll revisit later if needed.
David Sodmanbc815282017-11-05 18:57:52 -08002768 getBE().mRenderEngine->clearWithColor(0, 0, 0, 0);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002769 } else {
Chia-I Wub02087d2017-11-09 10:19:54 -08002770 // we start with the whole screen area and remove the scissor part
Mathias Agopian766dc492012-10-30 18:08:06 -07002771 // we're left with the letterbox region
2772 // (common case is that letterbox ends-up being empty)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002773 const Region letterbox(bounds.subtract(displayDevice->getScissor()));
Mathias Agopian766dc492012-10-30 18:08:06 -07002774
2775 // compute the area to clear
Dan Stoza9e56aa02015-11-02 13:00:03 -08002776 Region region(displayDevice->undefinedRegion.merge(letterbox));
Mathias Agopian766dc492012-10-30 18:08:06 -07002777
Mathias Agopianb9494d52012-04-18 02:28:45 -07002778 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07002779 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07002780 // can happen with SurfaceView
Dan Stoza9e56aa02015-11-02 13:00:03 -08002781 drawWormhole(displayDevice, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002782 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07002783 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002784
Dan Stoza9e56aa02015-11-02 13:00:03 -08002785 if (displayDevice->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopian766dc492012-10-30 18:08:06 -07002786 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07002787 // scissor on the main display. It should never be needed
2788 // anyways (though in theory it could since the API allows it).
Dan Stoza9e56aa02015-11-02 13:00:03 -08002789 const Rect& bounds(displayDevice->getBounds());
2790 const Rect& scissor(displayDevice->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002791 if (scissor != bounds) {
2792 // scissor doesn't match the screen's dimensions, so we
2793 // need to clear everything outside of it and enable
2794 // the GL scissor so we don't draw anything where we shouldn't
Mathias Agopian3f844832013-08-07 21:24:32 -07002795
Mathias Agopianf45c5102012-10-24 16:29:17 -07002796 // enable scissor for this frame
Dan Stoza9e56aa02015-11-02 13:00:03 -08002797 const uint32_t height = displayDevice->getHeight();
David Sodmanbc815282017-11-05 18:57:52 -08002798 getBE().mRenderEngine->setScissor(scissor.left, height - scissor.bottom,
Mathias Agopian3f844832013-08-07 21:24:32 -07002799 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07002800 }
2801 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002802 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002803
Mathias Agopian85d751c2012-08-29 16:59:24 -07002804 /*
2805 * and then, render the layers targeted at the framebuffer
2806 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002807
Dan Stoza9e56aa02015-11-02 13:00:03 -08002808 ALOGV("Rendering client layers");
2809 const Transform& displayTransform = displayDevice->getTransform();
2810 if (hwcId >= 0) {
Mathias Agopian85d751c2012-08-29 16:59:24 -07002811 // we're using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002812 bool firstLayer = true;
2813 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002814 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002815 displayTransform.transform(layer->visibleRegion)));
2816 ALOGV("Layer: %s", layer->getName().string());
2817 ALOGV(" Composition type: %s",
2818 to_string(layer->getCompositionType(hwcId)).c_str());
Mathias Agopian85d751c2012-08-29 16:59:24 -07002819 if (!clip.isEmpty()) {
Dan Stoza9e56aa02015-11-02 13:00:03 -08002820 switch (layer->getCompositionType(hwcId)) {
2821 case HWC2::Composition::Cursor:
2822 case HWC2::Composition::Device:
Gray Huang267ab792017-01-11 13:41:09 +08002823 case HWC2::Composition::Sideband:
Dan Stoza9e56aa02015-11-02 13:00:03 -08002824 case HWC2::Composition::SolidColor: {
Mathias Agopianac683022013-10-01 15:36:52 -07002825 const Layer::State& state(layer->getDrawingState());
Dan Stoza9e56aa02015-11-02 13:00:03 -08002826 if (layer->getClearClientTarget(hwcId) && !firstLayer &&
chaviw13fdc492017-06-27 12:40:18 -07002827 layer->isOpaque(state) && (state.color.a == 1.0f)
Dan Stoza9e56aa02015-11-02 13:00:03 -08002828 && hasClientComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07002829 // never clear the very first layer since we're
2830 // guaranteed the FB is already cleared
chaviwa76b2712017-09-20 12:02:26 -07002831 layer->clearWithOpenGL(renderArea);
Mathias Agopiancd60f992012-08-16 16:28:27 -07002832 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07002833 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002834 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002835 case HWC2::Composition::Client: {
chaviwa76b2712017-09-20 12:02:26 -07002836 layer->draw(renderArea, clip);
Mathias Agopian85d751c2012-08-29 16:59:24 -07002837 break;
2838 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002839 default:
Mathias Agopianda27af92012-09-13 18:17:13 -07002840 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07002841 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002842 } else {
2843 ALOGV(" Skipping for empty clip");
Mathias Agopian85d751c2012-08-29 16:59:24 -07002844 }
Dan Stoza9e56aa02015-11-02 13:00:03 -08002845 firstLayer = false;
Mathias Agopian85d751c2012-08-29 16:59:24 -07002846 }
2847 } else {
2848 // we're not using h/w composer
Dan Stoza9e56aa02015-11-02 13:00:03 -08002849 for (auto& layer : displayDevice->getVisibleLayersSortedByZ()) {
Chia-I Wub02087d2017-11-09 10:19:54 -08002850 const Region clip(bounds.intersect(
Dan Stoza9e56aa02015-11-02 13:00:03 -08002851 displayTransform.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07002852 if (!clip.isEmpty()) {
chaviwa76b2712017-09-20 12:02:26 -07002853 layer->draw(renderArea, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07002854 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07002855 }
2856 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07002857
Dan Stoza9f26a9c2016-06-22 14:51:09 -07002858 if (applyColorMatrix) {
2859 getRenderEngine().setupColorTransform(oldColorMatrix);
2860 }
2861
Mathias Agopianf45c5102012-10-24 16:29:17 -07002862 // disable scissor at the end of the frame
David Sodmanbc815282017-11-05 18:57:52 -08002863 getBE().mRenderEngine->disableScissor();
Michael Lentine3f121fc2014-10-01 11:17:28 -07002864 return true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002865}
2866
Fabien Sanglard830b8472016-11-30 16:35:58 -08002867void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& displayDevice, const Region& region) const {
2868 const int32_t height = displayDevice->getHeight();
Lloyd Pique144e1162017-12-20 16:44:52 -08002869 auto& engine(getRenderEngine());
Mathias Agopian3f844832013-08-07 21:24:32 -07002870 engine.fillRegionWithColor(region, height, 0, 0, 0, 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002871}
2872
Dan Stoza7d89d062015-04-30 13:29:25 -07002873status_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
Mathias Agopianac9fa422013-02-11 16:40:36 -08002874 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07002875 const sp<IGraphicBufferProducer>& gbc,
Robert Carr1f0a16a2016-10-24 16:27:39 -07002876 const sp<Layer>& lbc,
2877 const sp<Layer>& parent)
Mathias Agopian96f08192010-06-02 23:28:45 -07002878{
Dan Stoza7d89d062015-04-30 13:29:25 -07002879 // add this layer to the current state list
2880 {
2881 Mutex::Autolock _l(mStateLock);
Robert Carr1f0a16a2016-10-24 16:27:39 -07002882 if (mNumLayers >= MAX_LAYERS) {
Courtney Goeltzenleuchterab702f52017-04-19 15:14:02 -06002883 ALOGE("AddClientLayer failed, mNumLayers (%zu) >= MAX_LAYERS (%zu)", mNumLayers,
2884 MAX_LAYERS);
Dan Stoza7d89d062015-04-30 13:29:25 -07002885 return NO_MEMORY;
2886 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002887 if (parent == nullptr) {
2888 mCurrentState.layersSortedByZ.add(lbc);
2889 } else {
Robert Carrebd62af2017-11-28 08:49:59 -08002890 if (parent->isPendingRemoval()) {
Chia-I Wu98f1c102017-05-30 14:54:08 -07002891 ALOGE("addClientLayer called with a removed parent");
2892 return NAME_NOT_FOUND;
2893 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002894 parent->addChild(lbc);
2895 }
Chia-I Wu98f1c102017-05-30 14:54:08 -07002896
Dan Stoza7d89d062015-04-30 13:29:25 -07002897 mGraphicBufferProducerList.add(IInterface::asBinder(gbc));
Robert Carr1f0a16a2016-10-24 16:27:39 -07002898 mLayersAdded = true;
2899 mNumLayers++;
Dan Stoza7d89d062015-04-30 13:29:25 -07002900 }
2901
Mathias Agopian96f08192010-06-02 23:28:45 -07002902 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08002903 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07002904
Dan Stoza7d89d062015-04-30 13:29:25 -07002905 return NO_ERROR;
Mathias Agopian96f08192010-06-02 23:28:45 -07002906}
2907
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002908status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer, bool topLevelOnly) {
Robert Carr7f9b8992017-03-10 11:08:39 -08002909 Mutex::Autolock _l(mStateLock);
chaviwca27f252018-02-06 16:46:39 -08002910 return removeLayerLocked(mStateLock, layer, topLevelOnly);
2911}
Robert Carr7f9b8992017-03-10 11:08:39 -08002912
chaviwca27f252018-02-06 16:46:39 -08002913status_t SurfaceFlinger::removeLayerLocked(const Mutex&, const sp<Layer>& layer,
2914 bool topLevelOnly) {
chaviw8b3871a2017-11-01 17:41:01 -07002915 if (layer->isPendingRemoval()) {
2916 return NO_ERROR;
2917 }
2918
Robert Carr1f0a16a2016-10-24 16:27:39 -07002919 const auto& p = layer->getParent();
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002920 ssize_t index;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002921 if (p != nullptr) {
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002922 if (topLevelOnly) {
2923 return NO_ERROR;
2924 }
2925
Chia-I Wu98f1c102017-05-30 14:54:08 -07002926 sp<Layer> ancestor = p;
2927 while (ancestor->getParent() != nullptr) {
2928 ancestor = ancestor->getParent();
2929 }
2930 if (mCurrentState.layersSortedByZ.indexOf(ancestor) < 0) {
2931 ALOGE("removeLayer called with a layer whose parent has been removed");
2932 return NAME_NOT_FOUND;
2933 }
Chia-I Wufae51c42017-06-15 12:53:59 -07002934
2935 index = p->removeChild(layer);
Chia-I Wu515dc9c2017-06-15 12:53:59 -07002936 } else {
2937 index = mCurrentState.layersSortedByZ.remove(layer);
Chia-I Wu98f1c102017-05-30 14:54:08 -07002938 }
2939
Robert Carr136e2f62017-02-08 17:54:29 -08002940 // As a matter of normal operation, the LayerCleaner will produce a second
2941 // attempt to remove the surface. The Layer will be kept alive in mDrawingState
2942 // so we will succeed in promoting it, but it's already been removed
2943 // from mCurrentState. As long as we can find it in mDrawingState we have no problem
2944 // otherwise something has gone wrong and we are leaking the layer.
2945 if (index < 0 && mDrawingState.layersSortedByZ.indexOf(layer) < 0) {
Robert Carr1f0a16a2016-10-24 16:27:39 -07002946 ALOGE("Failed to find layer (%s) in layer parent (%s).",
2947 layer->getName().string(),
2948 (p != nullptr) ? p->getName().string() : "no-parent");
2949 return BAD_VALUE;
Robert Carr136e2f62017-02-08 17:54:29 -08002950 } else if (index < 0) {
2951 return NO_ERROR;
Steve Pfetsch598f6d52016-10-25 21:47:58 +00002952 }
Robert Carr1f0a16a2016-10-24 16:27:39 -07002953
Chia-I Wuc6657022017-08-15 11:18:17 -07002954 layer->onRemovedFromCurrentState();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002955 mLayersPendingRemoval.add(layer);
2956 mLayersRemoved = true;
Chia-I Wu98f1c102017-05-30 14:54:08 -07002957 mNumLayers -= 1 + layer->getChildrenCount();
Robert Carr1f0a16a2016-10-24 16:27:39 -07002958 setTransactionFlags(eTransactionNeeded);
2959 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002960}
2961
Fabien Sanglardc8251eb2016-12-07 13:59:48 -08002962uint32_t SurfaceFlinger::peekTransactionFlags() {
Mathias Agopiandea20b12011-05-03 17:04:02 -07002963 return android_atomic_release_load(&mTransactionFlags);
2964}
2965
Mathias Agopian3f844832013-08-07 21:24:32 -07002966uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002967 return android_atomic_and(~flags, &mTransactionFlags) & flags;
2968}
2969
Mathias Agopian3f844832013-08-07 21:24:32 -07002970uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002971 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
2972 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002973 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002974 }
2975 return old;
2976}
2977
chaviwca27f252018-02-06 16:46:39 -08002978bool SurfaceFlinger::containsAnyInvalidClientState(const Vector<ComposerState>& states) {
2979 for (const ComposerState& state : states) {
2980 // Here we need to check that the interface we're given is indeed
2981 // one of our own. A malicious client could give us a nullptr
2982 // IInterface, or one of its own or even one of our own but a
2983 // different type. All these situations would cause us to crash.
2984 if (state.client == nullptr) {
2985 return true;
2986 }
2987
2988 sp<IBinder> binder = IInterface::asBinder(state.client);
2989 if (binder == nullptr) {
2990 return true;
2991 }
2992
2993 if (binder->queryLocalInterface(ISurfaceComposerClient::descriptor) == nullptr) {
2994 return true;
2995 }
2996 }
2997 return false;
2998}
2999
Mathias Agopian8b33f032012-07-24 20:43:54 -07003000void SurfaceFlinger::setTransactionState(
chaviwca27f252018-02-06 16:46:39 -08003001 const Vector<ComposerState>& states,
Mathias Agopian8b33f032012-07-24 20:43:54 -07003002 const Vector<DisplayState>& displays,
3003 uint32_t flags)
3004{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003005 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07003006 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07003007 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003008
chaviwca27f252018-02-06 16:46:39 -08003009 if (containsAnyInvalidClientState(states)) {
3010 return;
3011 }
3012
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003013 if (flags & eAnimation) {
3014 // For window updates that are part of an animation we must wait for
3015 // previous animation "frames" to be handled.
3016 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003017 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003018 if (CC_UNLIKELY(err != NO_ERROR)) {
3019 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07003020 // caller after a few seconds.
3021 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
3022 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003023 mAnimTransactionPending = false;
3024 break;
3025 }
3026 }
3027 }
3028
chaviwca27f252018-02-06 16:46:39 -08003029 for (const DisplayState& display : displays) {
3030 transactionFlags |= setDisplayStateLocked(display);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07003031 }
3032
chaviwca27f252018-02-06 16:46:39 -08003033 for (const ComposerState& state : states) {
3034 transactionFlags |= setClientStateLocked(state);
3035 }
3036
3037 // Iterate through all layers again to determine if any need to be destroyed. Marking layers
3038 // as destroyed should only occur after setting all other states. This is to allow for a
3039 // child re-parent to happen before marking its original parent as destroyed (which would
3040 // then mark the child as destroyed).
3041 for (const ComposerState& state : states) {
3042 setDestroyStateLocked(state);
Mathias Agopian698c0872011-06-28 19:09:31 -07003043 }
Mathias Agopian698c0872011-06-28 19:09:31 -07003044
Jorim Jaggibdcf09c2017-08-08 15:22:08 +02003045 // If a synchronous transaction is explicitly requested without any changes, force a transaction
3046 // anyway. This can be used as a flush mechanism for previous async transactions.
3047 // Empty animation transaction can be used to simulate back-pressure, so also force a
3048 // transaction for empty animation transactions.
3049 if (transactionFlags == 0 &&
3050 ((flags & eSynchronous) || (flags & eAnimation))) {
Robert Carr2a7dbb42016-05-24 11:41:28 -07003051 transactionFlags = eTransactionNeeded;
3052 }
3053
Mathias Agopian386aa982011-11-07 21:58:03 -08003054 if (transactionFlags) {
Irvelffc9efc2016-07-27 15:16:37 -07003055 if (mInterceptor.isEnabled()) {
chaviwca27f252018-02-06 16:46:39 -08003056 mInterceptor.saveTransaction(states, mCurrentState.displays, displays, flags);
Irvelffc9efc2016-07-27 15:16:37 -07003057 }
Irvel468051e2016-06-13 16:44:44 -07003058
Mathias Agopian386aa982011-11-07 21:58:03 -08003059 // this triggers the transaction
3060 setTransactionFlags(transactionFlags);
3061
3062 // if this is a synchronous transaction, wait for it to take effect
3063 // before returning.
3064 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003065 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08003066 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003067 if (flags & eAnimation) {
3068 mAnimTransactionPending = true;
3069 }
3070 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08003071 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
3072 if (CC_UNLIKELY(err != NO_ERROR)) {
3073 // just in case something goes wrong in SF, return to the
3074 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07003075 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
3076 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08003077 break;
3078 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07003079 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003080 }
3081}
3082
Mathias Agopiane57f2922012-08-09 16:29:12 -07003083uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
3084{
Jesse Hall9a143922012-10-04 16:29:19 -07003085 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
3086 if (dpyIdx < 0)
3087 return 0;
3088
Mathias Agopiane57f2922012-08-09 16:29:12 -07003089 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07003090 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07003091 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003092 const uint32_t what = s.what;
3093 if (what & DisplayState::eSurfaceChanged) {
Marco Nelissen097ca272014-11-14 08:01:01 -08003094 if (IInterface::asBinder(disp.surface) != IInterface::asBinder(s.surface)) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003095 disp.surface = s.surface;
3096 flags |= eDisplayTransactionNeeded;
3097 }
3098 }
3099 if (what & DisplayState::eLayerStackChanged) {
3100 if (disp.layerStack != s.layerStack) {
3101 disp.layerStack = s.layerStack;
3102 flags |= eDisplayTransactionNeeded;
3103 }
3104 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07003105 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003106 if (disp.orientation != s.orientation) {
3107 disp.orientation = s.orientation;
3108 flags |= eDisplayTransactionNeeded;
3109 }
3110 if (disp.frame != s.frame) {
3111 disp.frame = s.frame;
3112 flags |= eDisplayTransactionNeeded;
3113 }
3114 if (disp.viewport != s.viewport) {
3115 disp.viewport = s.viewport;
3116 flags |= eDisplayTransactionNeeded;
3117 }
3118 }
Michael Lentine47e45402014-07-18 15:34:25 -07003119 if (what & DisplayState::eDisplaySizeChanged) {
3120 if (disp.width != s.width) {
3121 disp.width = s.width;
3122 flags |= eDisplayTransactionNeeded;
3123 }
3124 if (disp.height != s.height) {
3125 disp.height = s.height;
3126 flags |= eDisplayTransactionNeeded;
3127 }
3128 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003129 }
3130 return flags;
3131}
3132
chaviwca27f252018-02-06 16:46:39 -08003133uint32_t SurfaceFlinger::setClientStateLocked(const ComposerState& composerState) {
3134 const layer_state_t& s = composerState.state;
3135 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3136
Mathias Agopian13127d82013-03-05 17:47:11 -08003137 sp<Layer> layer(client->getLayerUser(s.surface));
chaviw8b3871a2017-11-01 17:41:01 -07003138 if (layer == nullptr) {
3139 return 0;
3140 }
3141
3142 if (layer->isPendingRemoval()) {
3143 ALOGW("Attempting to set client state on removed layer: %s", layer->getName().string());
3144 return 0;
3145 }
3146
3147 uint32_t flags = 0;
3148
3149 const uint32_t what = s.what;
3150 bool geometryAppliesWithResize =
3151 what & layer_state_t::eGeometryAppliesWithResize;
3152 if (what & layer_state_t::ePositionChanged) {
3153 if (layer->setPosition(s.x, s.y, !geometryAppliesWithResize)) {
3154 flags |= eTraversalNeeded;
Mathias Agopiane57f2922012-08-09 16:29:12 -07003155 }
chaviw8b3871a2017-11-01 17:41:01 -07003156 }
3157 if (what & layer_state_t::eLayerChanged) {
3158 // NOTE: index needs to be calculated before we update the state
3159 const auto& p = layer->getParent();
3160 if (p == nullptr) {
chaviw64f7b422017-07-12 10:31:58 -07003161 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
chaviw8b3871a2017-11-01 17:41:01 -07003162 if (layer->setLayer(s.z) && idx >= 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07003163 mCurrentState.layersSortedByZ.removeAt(idx);
3164 mCurrentState.layersSortedByZ.add(layer);
3165 // we need traversal (state changed)
3166 // AND transaction (list changed)
3167 flags |= eTransactionNeeded|eTraversalNeeded;
3168 }
chaviw8b3871a2017-11-01 17:41:01 -07003169 } else {
3170 if (p->setChildLayer(layer, s.z)) {
chaviw06178942017-07-27 10:25:59 -07003171 flags |= eTransactionNeeded|eTraversalNeeded;
3172 }
3173 }
chaviw8b3871a2017-11-01 17:41:01 -07003174 }
3175 if (what & layer_state_t::eRelativeLayerChanged) {
Robert Carr503c7042017-09-27 15:06:08 -07003176 // NOTE: index needs to be calculated before we update the state
3177 const auto& p = layer->getParent();
3178 if (p == nullptr) {
3179 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3180 if (layer->setRelativeLayer(s.relativeLayerHandle, s.z) && idx >= 0) {
3181 mCurrentState.layersSortedByZ.removeAt(idx);
3182 mCurrentState.layersSortedByZ.add(layer);
3183 // we need traversal (state changed)
3184 // AND transaction (list changed)
3185 flags |= eTransactionNeeded|eTraversalNeeded;
3186 }
3187 } else {
3188 if (p->setChildRelativeLayer(layer, s.relativeLayerHandle, s.z)) {
3189 flags |= eTransactionNeeded|eTraversalNeeded;
3190 }
chaviw8b3871a2017-11-01 17:41:01 -07003191 }
3192 }
3193 if (what & layer_state_t::eSizeChanged) {
3194 if (layer->setSize(s.w, s.h)) {
3195 flags |= eTraversalNeeded;
3196 }
3197 }
3198 if (what & layer_state_t::eAlphaChanged) {
3199 if (layer->setAlpha(s.alpha))
3200 flags |= eTraversalNeeded;
3201 }
3202 if (what & layer_state_t::eColorChanged) {
3203 if (layer->setColor(s.color))
3204 flags |= eTraversalNeeded;
3205 }
3206 if (what & layer_state_t::eMatrixChanged) {
3207 if (layer->setMatrix(s.matrix))
3208 flags |= eTraversalNeeded;
3209 }
3210 if (what & layer_state_t::eTransparentRegionChanged) {
3211 if (layer->setTransparentRegionHint(s.transparentRegion))
3212 flags |= eTraversalNeeded;
3213 }
3214 if (what & layer_state_t::eFlagsChanged) {
3215 if (layer->setFlags(s.flags, s.mask))
3216 flags |= eTraversalNeeded;
3217 }
3218 if (what & layer_state_t::eCropChanged) {
3219 if (layer->setCrop(s.crop, !geometryAppliesWithResize))
3220 flags |= eTraversalNeeded;
3221 }
3222 if (what & layer_state_t::eFinalCropChanged) {
3223 if (layer->setFinalCrop(s.finalCrop, !geometryAppliesWithResize))
3224 flags |= eTraversalNeeded;
3225 }
3226 if (what & layer_state_t::eLayerStackChanged) {
3227 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
3228 // We only allow setting layer stacks for top level layers,
3229 // everything else inherits layer stack from its parent.
3230 if (layer->hasParent()) {
3231 ALOGE("Attempt to set layer stack on layer with parent (%s) is invalid",
3232 layer->getName().string());
3233 } else if (idx < 0) {
3234 ALOGE("Attempt to set layer stack on layer without parent (%s) that "
3235 "that also does not appear in the top level layer list. Something"
3236 " has gone wrong.", layer->getName().string());
3237 } else if (layer->setLayerStack(s.layerStack)) {
3238 mCurrentState.layersSortedByZ.removeAt(idx);
3239 mCurrentState.layersSortedByZ.add(layer);
3240 // we need traversal (state changed)
3241 // AND transaction (list changed)
3242 flags |= eTransactionNeeded|eTraversalNeeded;
3243 }
3244 }
3245 if (what & layer_state_t::eDeferTransaction) {
3246 if (s.barrierHandle != nullptr) {
3247 layer->deferTransactionUntil(s.barrierHandle, s.frameNumber);
3248 } else if (s.barrierGbp != nullptr) {
3249 const sp<IGraphicBufferProducer>& gbp = s.barrierGbp;
3250 if (authenticateSurfaceTextureLocked(gbp)) {
3251 const auto& otherLayer =
3252 (static_cast<MonitoredProducer*>(gbp.get()))->getLayer();
3253 layer->deferTransactionUntil(otherLayer, s.frameNumber);
3254 } else {
3255 ALOGE("Attempt to defer transaction to to an"
3256 " unrecognized GraphicBufferProducer");
Robert Carr1db73f62016-12-21 12:58:51 -08003257 }
3258 }
chaviw8b3871a2017-11-01 17:41:01 -07003259 // We don't trigger a traversal here because if no other state is
3260 // changed, we don't want this to cause any more work
3261 }
3262 if (what & layer_state_t::eReparent) {
chaviw8ea97bb2017-11-29 10:05:15 -08003263 bool hadParent = layer->hasParent();
chaviw8b3871a2017-11-01 17:41:01 -07003264 if (layer->reparent(s.parentHandleForChild)) {
chaviw8ea97bb2017-11-29 10:05:15 -08003265 if (!hadParent) {
3266 mCurrentState.layersSortedByZ.remove(layer);
3267 }
chaviw8b3871a2017-11-01 17:41:01 -07003268 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carr9524cb32017-02-13 11:32:32 -08003269 }
chaviw8b3871a2017-11-01 17:41:01 -07003270 }
3271 if (what & layer_state_t::eReparentChildren) {
3272 if (layer->reparentChildren(s.reparentHandle)) {
3273 flags |= eTransactionNeeded|eTraversalNeeded;
Robert Carrc3574f72016-03-24 12:19:32 -07003274 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003275 }
chaviw8b3871a2017-11-01 17:41:01 -07003276 if (what & layer_state_t::eDetachChildren) {
3277 layer->detachChildren();
3278 }
3279 if (what & layer_state_t::eOverrideScalingModeChanged) {
3280 layer->setOverrideScalingMode(s.overrideScalingMode);
3281 // We don't trigger a traversal here because if no other state is
3282 // changed, we don't want this to cause any more work
3283 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07003284 return flags;
3285}
3286
chaviwca27f252018-02-06 16:46:39 -08003287void SurfaceFlinger::setDestroyStateLocked(const ComposerState& composerState) {
3288 const layer_state_t& state = composerState.state;
3289 sp<Client> client(static_cast<Client*>(composerState.client.get()));
3290
3291 sp<Layer> layer(client->getLayerUser(state.surface));
3292 if (layer == nullptr) {
3293 return;
3294 }
3295
3296 if (layer->isPendingRemoval()) {
3297 ALOGW("Attempting to destroy on removed layer: %s", layer->getName().string());
3298 return;
3299 }
3300
3301 if (state.what & layer_state_t::eDestroySurface) {
3302 removeLayerLocked(mStateLock, layer);
3303 }
3304}
3305
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003306status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07003307 const String8& name,
3308 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003309 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
Albert Chaulk479c60c2017-01-27 14:21:34 -05003310 uint32_t windowType, uint32_t ownerUid, sp<IBinder>* handle,
3311 sp<IGraphicBufferProducer>* gbp, sp<Layer>* parent)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003312{
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003313 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07003314 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003315 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003316 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07003317 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07003318
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003319 status_t result = NO_ERROR;
3320
3321 sp<Layer> layer;
3322
Cody Northropbc755282017-03-31 12:00:08 -06003323 String8 uniqueName = getUniqueLayerName(name);
3324
Mathias Agopian3165cc22012-08-08 19:42:09 -07003325 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
3326 case ISurfaceComposerClient::eFXSurfaceNormal:
David Sodman0c69cad2017-08-21 12:12:51 -07003327 result = createBufferLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003328 uniqueName, w, h, flags, format,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003329 handle, gbp, &layer);
David Sodman0c69cad2017-08-21 12:12:51 -07003330
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003331 break;
chaviw13fdc492017-06-27 12:40:18 -07003332 case ISurfaceComposerClient::eFXSurfaceColor:
3333 result = createColorLayer(client,
Cody Northropbc755282017-03-31 12:00:08 -06003334 uniqueName, w, h, flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003335 handle, &layer);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003336 break;
3337 default:
3338 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003339 break;
3340 }
3341
Dan Stoza7d89d062015-04-30 13:29:25 -07003342 if (result != NO_ERROR) {
3343 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003344 }
Dan Stoza7d89d062015-04-30 13:29:25 -07003345
Chia-I Wuab0c3192017-08-01 11:29:00 -07003346 // window type is WINDOW_TYPE_DONT_SCREENSHOT from SurfaceControl.java
3347 // TODO b/64227542
3348 if (windowType == 441731) {
3349 windowType = 2024; // TYPE_NAVIGATION_BAR_PANEL
3350 layer->setPrimaryDisplayOnly();
3351 }
3352
Albert Chaulk479c60c2017-01-27 14:21:34 -05003353 layer->setInfo(windowType, ownerUid);
3354
Robert Carr1f0a16a2016-10-24 16:27:39 -07003355 result = addClientLayer(client, *handle, *gbp, layer, *parent);
Dan Stoza7d89d062015-04-30 13:29:25 -07003356 if (result != NO_ERROR) {
3357 return result;
3358 }
Irvelffc9efc2016-07-27 15:16:37 -07003359 mInterceptor.saveSurfaceCreation(layer);
Dan Stoza7d89d062015-04-30 13:29:25 -07003360
3361 setTransactionFlags(eTransactionNeeded);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003362 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003363}
3364
Cody Northropbc755282017-03-31 12:00:08 -06003365String8 SurfaceFlinger::getUniqueLayerName(const String8& name)
3366{
3367 bool matchFound = true;
3368 uint32_t dupeCounter = 0;
3369
3370 // Tack on our counter whether there is a hit or not, so everyone gets a tag
3371 String8 uniqueName = name + "#" + String8(std::to_string(dupeCounter).c_str());
3372
3373 // Loop over layers until we're sure there is no matching name
3374 while (matchFound) {
3375 matchFound = false;
3376 mDrawingState.traverseInZOrder([&](Layer* layer) {
3377 if (layer->getName() == uniqueName) {
3378 matchFound = true;
3379 uniqueName = name + "#" + String8(std::to_string(++dupeCounter).c_str());
3380 }
3381 });
3382 }
3383
3384 ALOGD_IF(dupeCounter > 0, "duplicate layer name: changing %s to %s", name.c_str(), uniqueName.c_str());
3385
3386 return uniqueName;
3387}
3388
David Sodman0c69cad2017-08-21 12:12:51 -07003389status_t SurfaceFlinger::createBufferLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003390 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
3391 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003392{
3393 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07003394 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003395 case PIXEL_FORMAT_TRANSPARENT:
3396 case PIXEL_FORMAT_TRANSLUCENT:
3397 format = PIXEL_FORMAT_RGBA_8888;
3398 break;
3399 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian8f105402010-04-05 18:01:24 -07003400 format = PIXEL_FORMAT_RGBX_8888;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003401 break;
3402 }
3403
David Sodman0c69cad2017-08-21 12:12:51 -07003404 sp<BufferLayer> layer = new BufferLayer(this, client, name, w, h, flags);
3405 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003406 if (err == NO_ERROR) {
David Sodman0c69cad2017-08-21 12:12:51 -07003407 *handle = layer->getHandle();
3408 *gbp = layer->getProducer();
3409 *outLayer = layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003410 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003411
David Sodman0c69cad2017-08-21 12:12:51 -07003412 ALOGE_IF(err, "createBufferLayer() failed (%s)", strerror(-err));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003413 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003414}
3415
chaviw13fdc492017-06-27 12:40:18 -07003416status_t SurfaceFlinger::createColorLayer(const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003417 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
David Sodman0c69cad2017-08-21 12:12:51 -07003418 sp<IBinder>* handle, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003419{
chaviw13fdc492017-06-27 12:40:18 -07003420 *outLayer = new ColorLayer(this, client, name, w, h, flags);
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003421 *handle = (*outLayer)->getHandle();
Mathias Agopian4d9b8222013-03-12 17:11:48 -07003422 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07003423}
3424
Mathias Agopianac9fa422013-02-11 16:40:36 -08003425status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003426{
Robert Carr9524cb32017-02-13 11:32:32 -08003427 // called by a client when it wants to remove a Layer
Mathias Agopian67106042013-03-14 19:18:13 -07003428 status_t err = NO_ERROR;
3429 sp<Layer> l(client->getLayerUser(handle));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003430 if (l != nullptr) {
Irvelffc9efc2016-07-27 15:16:37 -07003431 mInterceptor.saveSurfaceDeletion(l);
Mathias Agopian67106042013-03-14 19:18:13 -07003432 err = removeLayer(l);
3433 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
3434 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07003435 }
3436 return err;
3437}
3438
Mathias Agopian13127d82013-03-05 17:47:11 -08003439status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07003440{
Mathias Agopian67106042013-03-14 19:18:13 -07003441 // called by ~LayerCleaner() when all references to the IBinder (handle)
3442 // are gone
Robert Carr9524cb32017-02-13 11:32:32 -08003443 sp<Layer> l = layer.promote();
3444 if (l == nullptr) {
3445 // The layer has already been removed, carry on
3446 return NO_ERROR;
Robert Carr9524cb32017-02-13 11:32:32 -08003447 }
Chia-I Wu515dc9c2017-06-15 12:53:59 -07003448 // If we have a parent, then we can continue to live as long as it does.
3449 return removeLayer(l, true);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003450}
3451
Mathias Agopianb60314a2012-04-10 22:09:54 -07003452// ---------------------------------------------------------------------------
3453
Andy McFadden13a082e2012-08-24 10:16:42 -07003454void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08003455 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07003456 Vector<ComposerState> state;
3457 Vector<DisplayState> displays;
3458 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08003459 d.what = DisplayState::eDisplayProjectionChanged |
3460 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08003461 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08003462 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003463 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07003464 d.frame.makeInvalid();
3465 d.viewport.makeInvalid();
Michael Lentine47e45402014-07-18 15:34:25 -07003466 d.width = 0;
3467 d.height = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07003468 displays.add(d);
3469 setTransactionState(state, displays, 0);
Steven Thomasb02664d2017-07-26 18:48:28 -07003470 setPowerModeInternal(getDisplayDevice(d.token), HWC_POWER_MODE_NORMAL,
3471 /*stateLockHeld*/ false);
Jamie Gennis6547ff42013-07-16 20:12:42 -07003472
David Sodman105b7dc2017-11-04 20:28:14 -07003473 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003474 const nsecs_t period = activeConfig->getVsyncPeriod();
Jamie Gennis6547ff42013-07-16 20:12:42 -07003475 mAnimFrameTracker.setDisplayRefreshPeriod(period);
Brian Anderson0a61b0c2016-12-07 14:55:56 -08003476
Brian Andersond0010582017-03-07 13:20:31 -08003477 // Use phase of 0 since phase is not known.
3478 // Use latency of 0, which will snap to the ideal latency.
3479 setCompositorTimingSnapped(0, period, 0);
Andy McFadden13a082e2012-08-24 10:16:42 -07003480}
3481
3482void SurfaceFlinger::initializeDisplays() {
3483 class MessageScreenInitialized : public MessageBase {
3484 SurfaceFlinger* flinger;
3485 public:
Chih-Hung Hsiehc4067912016-05-03 14:03:27 -07003486 explicit MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
Andy McFadden13a082e2012-08-24 10:16:42 -07003487 virtual bool handler() {
3488 flinger->onInitializeDisplays();
3489 return true;
3490 }
3491 };
3492 sp<MessageBase> msg = new MessageScreenInitialized(this);
3493 postMessageAsync(msg); // we may be called from main thread, use async message
3494}
3495
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003496void SurfaceFlinger::setPowerModeInternal(const sp<DisplayDevice>& hw,
Steven Thomasb02664d2017-07-26 18:48:28 -07003497 int mode, bool stateLockHeld) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003498 ALOGD("Set power mode=%d, type=%d flinger=%p", mode, hw->getDisplayType(),
3499 this);
3500 int32_t type = hw->getDisplayType();
3501 int currentMode = hw->getPowerMode();
Andy McFadden13a082e2012-08-24 10:16:42 -07003502
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003503 if (mode == currentMode) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003504 return;
3505 }
3506
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003507 hw->setPowerMode(mode);
3508 if (type >= DisplayDevice::NUM_BUILTIN_DISPLAY_TYPES) {
3509 ALOGW("Trying to set power mode for virtual display");
3510 return;
3511 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003512
Irvelffc9efc2016-07-27 15:16:37 -07003513 if (mInterceptor.isEnabled()) {
Steven Thomasb02664d2017-07-26 18:48:28 -07003514 ConditionalLock lock(mStateLock, !stateLockHeld);
Irvelffc9efc2016-07-27 15:16:37 -07003515 ssize_t idx = mCurrentState.displays.indexOfKey(hw->getDisplayToken());
3516 if (idx < 0) {
3517 ALOGW("Surface Interceptor SavePowerMode: invalid display token");
3518 return;
3519 }
3520 mInterceptor.savePowerModeUpdate(mCurrentState.displays.valueAt(idx).displayId, mode);
3521 }
3522
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003523 if (currentMode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003524 // Turn on the display
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003525 getHwComposer().setPowerMode(type, mode);
Matthew Bouyack38d49612017-05-12 12:49:32 -07003526 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3527 mode != HWC_POWER_MODE_DOZE_SUSPEND) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003528 // FIXME: eventthread only knows about the main display right now
3529 mEventThread->onScreenAcquired();
Jesse Hall948fe0c2013-10-14 12:56:09 -07003530 resyncToHardwareVsync(true);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003531 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003532
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003533 mVisibleRegionsDirty = true;
Dan Stozab90cf072015-03-05 11:05:59 -08003534 mHasPoweredOff = true;
Steven Thomas6d8110b2017-08-31 18:24:21 -07003535 repaintEverythingLocked();
Tim Murrayf9d4e442016-08-02 15:43:59 -07003536
3537 struct sched_param param = {0};
3538 param.sched_priority = 1;
3539 if (sched_setscheduler(0, SCHED_FIFO, &param) != 0) {
3540 ALOGW("Couldn't set SCHED_FIFO on display on");
3541 }
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003542 } else if (mode == HWC_POWER_MODE_OFF) {
Tim Murrayf9d4e442016-08-02 15:43:59 -07003543 // Turn off the display
3544 struct sched_param param = {0};
3545 if (sched_setscheduler(0, SCHED_OTHER, &param) != 0) {
3546 ALOGW("Couldn't set SCHED_OTHER on display off");
3547 }
3548
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003549 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3550 currentMode != HWC_POWER_MODE_DOZE_SUSPEND) {
Jesse Hall948fe0c2013-10-14 12:56:09 -07003551 disableHardwareVsync(true); // also cancels any in-progress resync
3552
Mathias Agopiancde87a32012-09-13 14:09:01 -07003553 // FIXME: eventthread only knows about the main display right now
3554 mEventThread->onScreenReleased();
3555 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003556
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003557 getHwComposer().setPowerMode(type, mode);
3558 mVisibleRegionsDirty = true;
3559 // from this point on, SF will stop drawing on this display
Matthew Bouyack38d49612017-05-12 12:49:32 -07003560 } else if (mode == HWC_POWER_MODE_DOZE ||
3561 mode == HWC_POWER_MODE_NORMAL) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003562 // Update display while dozing
3563 getHwComposer().setPowerMode(type, mode);
Matthew Bouyackcd9b55c2017-06-01 14:37:29 -07003564 if (type == DisplayDevice::DISPLAY_PRIMARY &&
3565 currentMode == HWC_POWER_MODE_DOZE_SUSPEND) {
Zheng Zhang8a43fe62017-03-17 11:19:39 +01003566 // FIXME: eventthread only knows about the main display right now
3567 mEventThread->onScreenAcquired();
3568 resyncToHardwareVsync(true);
3569 }
3570 } else if (mode == HWC_POWER_MODE_DOZE_SUSPEND) {
3571 // Leave display going to doze
3572 if (type == DisplayDevice::DISPLAY_PRIMARY) {
3573 disableHardwareVsync(true); // also cancels any in-progress resync
3574 // FIXME: eventthread only knows about the main display right now
3575 mEventThread->onScreenReleased();
3576 }
3577 getHwComposer().setPowerMode(type, mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003578 } else {
Matthew Bouyack38d49612017-05-12 12:49:32 -07003579 ALOGE("Attempting to set unknown power mode: %d\n", mode);
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003580 getHwComposer().setPowerMode(type, mode);
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003581 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003582}
3583
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003584void SurfaceFlinger::setPowerMode(const sp<IBinder>& display, int mode) {
3585 class MessageSetPowerMode: public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003586 SurfaceFlinger& mFlinger;
3587 sp<IBinder> mDisplay;
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003588 int mMode;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003589 public:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003590 MessageSetPowerMode(SurfaceFlinger& flinger,
3591 const sp<IBinder>& disp, int mode) : mFlinger(flinger),
3592 mDisplay(disp) { mMode = mode; }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003593 virtual bool handler() {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003594 sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
Peiyong Lin566a3b42018-01-09 18:22:43 -08003595 if (hw == nullptr) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003596 ALOGE("Attempt to set power mode = %d for null display %p",
Michael Lentine7306c672014-07-30 13:00:37 -07003597 mMode, mDisplay.get());
Jesse Hall9e663de2013-08-16 14:28:37 -07003598 } else if (hw->getDisplayType() >= DisplayDevice::DISPLAY_VIRTUAL) {
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003599 ALOGW("Attempt to set power mode = %d for virtual display",
3600 mMode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003601 } else {
Steven Thomasb02664d2017-07-26 18:48:28 -07003602 mFlinger.setPowerModeInternal(
3603 hw, mMode, /*stateLockHeld*/ false);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003604 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07003605 return true;
3606 }
3607 };
Prashant Malani2c9b11f2014-05-25 01:36:31 -07003608 sp<MessageBase> msg = new MessageSetPowerMode(*this, display, mode);
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07003609 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07003610}
3611
3612// ---------------------------------------------------------------------------
3613
Lloyd Pique755e3192018-01-31 16:46:15 -08003614status_t SurfaceFlinger::doDump(int fd, const Vector<String16>& args, bool asProto)
3615 NO_THREAD_SAFETY_ANALYSIS {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003616 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07003617
Mathias Agopianbd115332013-04-18 16:41:04 -07003618 IPCThreadState* ipc = IPCThreadState::self();
3619 const int pid = ipc->getCallingPid();
3620 const int uid = ipc->getCallingUid();
Vishnu Nair6a408532017-10-24 09:11:27 -07003621
Mathias Agopianbd115332013-04-18 16:41:04 -07003622 if ((uid != AID_SHELL) &&
3623 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003624 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07003625 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003626 } else {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003627 // Try to get the main lock, but give up after one second
Mathias Agopian9795c422009-08-26 16:36:26 -07003628 // (this would indicate SF is stuck, but we want to be able to
3629 // print something in dumpsys).
Jesse Hallfcd15b42014-12-23 13:57:23 -08003630 status_t err = mStateLock.timedLock(s2ns(1));
3631 bool locked = (err == NO_ERROR);
Mathias Agopian9795c422009-08-26 16:36:26 -07003632 if (!locked) {
Jesse Hallfcd15b42014-12-23 13:57:23 -08003633 result.appendFormat(
3634 "SurfaceFlinger appears to be unresponsive (%s [%d]), "
3635 "dumping anyways (no locks held)\n", strerror(-err), err);
Mathias Agopian9795c422009-08-26 16:36:26 -07003636 }
3637
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003638 bool dumpAll = true;
3639 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003640 size_t numArgs = args.size();
chaviwa3d7bd32017-11-03 09:41:53 -07003641
3642 if (asProto) {
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003643 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviwa3d7bd32017-11-03 09:41:53 -07003644 result.append(layersProto.SerializeAsString().c_str(), layersProto.ByteSize());
3645 dumpAll = false;
3646 }
3647
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003648 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003649 if ((index < numArgs) &&
3650 (args[index] == String16("--list"))) {
3651 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003652 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003653 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003654 }
3655
3656 if ((index < numArgs) &&
3657 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003658 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003659 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003660 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003661 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003662
3663 if ((index < numArgs) &&
3664 (args[index] == String16("--latency-clear"))) {
3665 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02003666 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08003667 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003668 }
Andy McFaddenc751e922014-05-08 14:53:26 -07003669
3670 if ((index < numArgs) &&
3671 (args[index] == String16("--dispsync"))) {
3672 index++;
3673 mPrimaryDispSync.dump(result);
3674 dumpAll = false;
3675 }
Dan Stozab90cf072015-03-05 11:05:59 -08003676
3677 if ((index < numArgs) &&
3678 (args[index] == String16("--static-screen"))) {
3679 index++;
3680 dumpStaticScreenStats(result);
3681 dumpAll = false;
3682 }
Pablo Ceballos40845df2016-01-25 17:41:15 -08003683
3684 if ((index < numArgs) &&
Brian Andersond6927fb2016-07-23 23:37:30 -07003685 (args[index] == String16("--frame-events"))) {
Pablo Ceballos40845df2016-01-25 17:41:15 -08003686 index++;
Brian Andersond6927fb2016-07-23 23:37:30 -07003687 dumpFrameEventsLocked(result);
Pablo Ceballos40845df2016-01-25 17:41:15 -08003688 dumpAll = false;
3689 }
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003690
3691 if ((index < numArgs) && (args[index] == String16("--wide-color"))) {
3692 index++;
3693 dumpWideColorInfo(result);
3694 dumpAll = false;
3695 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003696 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07003697
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003698 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003699 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08003700 }
3701
Mathias Agopian9795c422009-08-26 16:36:26 -07003702 if (locked) {
3703 mStateLock.unlock();
3704 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08003705 }
3706 write(fd, result.string(), result.size());
3707 return NO_ERROR;
3708}
3709
Dan Stozac7014012014-02-14 15:03:43 -08003710void SurfaceFlinger::listLayersLocked(const Vector<String16>& /* args */,
3711 size_t& /* index */, String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003712{
Robert Carr2047fae2016-11-28 14:09:09 -08003713 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02003714 result.appendFormat("%s\n", layer->getName().string());
Robert Carr2047fae2016-11-28 14:09:09 -08003715 });
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003716}
3717
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003718void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02003719 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003720{
3721 String8 name;
3722 if (index < args.size()) {
3723 name = String8(args[index]);
3724 index++;
3725 }
3726
David Sodman105b7dc2017-11-04 20:28:14 -07003727 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003728 const nsecs_t period = activeConfig->getVsyncPeriod();
Greg Hackmann86efcc02014-03-07 12:44:02 -08003729 result.appendFormat("%" PRId64 "\n", period);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003730
3731 if (name.isEmpty()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003732 mAnimFrameTracker.dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003733 } else {
Robert Carr2047fae2016-11-28 14:09:09 -08003734 mCurrentState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003735 if (name == layer->getName()) {
Svetoslavd85084b2014-03-20 10:28:31 -07003736 layer->dumpFrameStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003737 }
Robert Carr2047fae2016-11-28 14:09:09 -08003738 });
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003739 }
3740}
3741
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003742void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Dan Stozac7014012014-02-14 15:03:43 -08003743 String8& /* result */)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003744{
3745 String8 name;
3746 if (index < args.size()) {
3747 name = String8(args[index]);
3748 index++;
3749 }
3750
Robert Carr2047fae2016-11-28 14:09:09 -08003751 mCurrentState.traverseInZOrder([&](Layer* layer) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003752 if (name.isEmpty() || (name == layer->getName())) {
Svetoslavd85084b2014-03-20 10:28:31 -07003753 layer->clearFrameStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003754 }
Robert Carr2047fae2016-11-28 14:09:09 -08003755 });
Jamie Gennis4b0eba92013-02-05 13:30:24 -08003756
Svetoslavd85084b2014-03-20 10:28:31 -07003757 mAnimFrameTracker.clearStats();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08003758}
3759
Jamie Gennis6547ff42013-07-16 20:12:42 -07003760// This should only be called from the main thread. Otherwise it would need
3761// the lock and should use mCurrentState rather than mDrawingState.
3762void SurfaceFlinger::logFrameStats() {
Robert Carr2047fae2016-11-28 14:09:09 -08003763 mDrawingState.traverseInZOrder([&](Layer* layer) {
Jamie Gennis6547ff42013-07-16 20:12:42 -07003764 layer->logFrameStats();
Robert Carr2047fae2016-11-28 14:09:09 -08003765 });
Jamie Gennis6547ff42013-07-16 20:12:42 -07003766
3767 mAnimFrameTracker.logAndResetStats(String8("<win-anim>"));
3768}
3769
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003770void SurfaceFlinger::appendSfConfigString(String8& result) const
Andy McFadden4803b742012-09-24 19:07:20 -07003771{
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003772 result.append(" [sf");
Fabien Sanglardc93afd52017-03-13 13:02:42 -07003773
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003774 if (isLayerTripleBufferingDisabled())
3775 result.append(" DISABLE_TRIPLE_BUFFERING");
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003776
3777 result.appendFormat(" PRESENT_TIME_OFFSET=%" PRId64 , dispSyncPresentTimeOffset);
Fabien Sanglarda34ed632017-03-14 11:43:52 -07003778 result.appendFormat(" FORCE_HWC_FOR_RBG_TO_YUV=%d", useHwcForRgbToYuv);
Fabien Sanglardc8e387e2017-03-10 10:30:28 -08003779 result.appendFormat(" MAX_VIRT_DISPLAY_DIM=%" PRIu64, maxVirtualDisplaySize);
Fabien Sanglardcbf153b2017-03-10 17:57:12 -08003780 result.appendFormat(" RUNNING_WITHOUT_SYNC_FRAMEWORK=%d", !hasSyncFramework);
Fabien Sanglard1971b632017-03-10 14:50:03 -08003781 result.appendFormat(" NUM_FRAMEBUFFER_SURFACE_BUFFERS=%" PRId64,
3782 maxFrameBufferAcquiredBuffers);
Fabien Sanglard63a5fcd2016-12-29 15:13:07 -08003783 result.append("]");
Andy McFadden4803b742012-09-24 19:07:20 -07003784}
3785
Dan Stozab90cf072015-03-05 11:05:59 -08003786void SurfaceFlinger::dumpStaticScreenStats(String8& result) const
3787{
3788 result.appendFormat("Static screen stats:\n");
David Sodman4a36e932017-11-07 14:29:47 -08003789 for (size_t b = 0; b < SurfaceFlingerBE::NUM_BUCKETS - 1; ++b) {
3790 float bucketTimeSec = getBE().mFrameBuckets[b] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003791 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003792 static_cast<float>(getBE().mFrameBuckets[b]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003793 result.appendFormat(" < %zd frames: %.3f s (%.1f%%)\n",
3794 b + 1, bucketTimeSec, percent);
3795 }
David Sodman4a36e932017-11-07 14:29:47 -08003796 float bucketTimeSec = getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1] / 1e9;
Dan Stozab90cf072015-03-05 11:05:59 -08003797 float percent = 100.0f *
David Sodman4a36e932017-11-07 14:29:47 -08003798 static_cast<float>(getBE().mFrameBuckets[SurfaceFlingerBE::NUM_BUCKETS - 1]) / getBE().mTotalTime;
Dan Stozab90cf072015-03-05 11:05:59 -08003799 result.appendFormat(" %zd+ frames: %.3f s (%.1f%%)\n",
David Sodman4a36e932017-11-07 14:29:47 -08003800 SurfaceFlingerBE::NUM_BUCKETS - 1, bucketTimeSec, percent);
Dan Stozab90cf072015-03-05 11:05:59 -08003801}
3802
Dan Stozae77c7662016-05-13 11:37:28 -07003803void SurfaceFlinger::recordBufferingStats(const char* layerName,
3804 std::vector<OccupancyTracker::Segment>&& history) {
David Sodmancbaf0832017-11-07 14:21:36 -08003805 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
3806 auto& stats = getBE().mBufferingStats[layerName];
Dan Stozae77c7662016-05-13 11:37:28 -07003807 for (const auto& segment : history) {
3808 if (!segment.usedThirdBuffer) {
3809 stats.twoBufferTime += segment.totalTime;
3810 }
3811 if (segment.occupancyAverage < 1.0f) {
3812 stats.doubleBufferedTime += segment.totalTime;
3813 } else if (segment.occupancyAverage < 2.0f) {
3814 stats.tripleBufferedTime += segment.totalTime;
3815 }
3816 ++stats.numSegments;
3817 stats.totalTime += segment.totalTime;
3818 }
3819}
3820
Brian Andersond6927fb2016-07-23 23:37:30 -07003821void SurfaceFlinger::dumpFrameEventsLocked(String8& result) {
3822 result.appendFormat("Layer frame timestamps:\n");
3823
3824 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
3825 const size_t count = currentLayers.size();
3826 for (size_t i=0 ; i<count ; i++) {
3827 currentLayers[i]->dumpFrameEvents(result);
3828 }
3829}
3830
Dan Stozae77c7662016-05-13 11:37:28 -07003831void SurfaceFlinger::dumpBufferingStats(String8& result) const {
3832 result.append("Buffering stats:\n");
3833 result.append(" [Layer name] <Active time> <Two buffer> "
3834 "<Double buffered> <Triple buffered>\n");
David Sodmancbaf0832017-11-07 14:21:36 -08003835 Mutex::Autolock lock(getBE().mBufferingStatsMutex);
Dan Stozae77c7662016-05-13 11:37:28 -07003836 typedef std::tuple<std::string, float, float, float> BufferTuple;
3837 std::map<float, BufferTuple, std::greater<float>> sorted;
David Sodmancbaf0832017-11-07 14:21:36 -08003838 for (const auto& statsPair : getBE().mBufferingStats) {
Dan Stozae77c7662016-05-13 11:37:28 -07003839 const char* name = statsPair.first.c_str();
David Sodmancbaf0832017-11-07 14:21:36 -08003840 const SurfaceFlingerBE::BufferingStats& stats = statsPair.second;
Dan Stozae77c7662016-05-13 11:37:28 -07003841 if (stats.numSegments == 0) {
3842 continue;
3843 }
3844 float activeTime = ns2ms(stats.totalTime) / 1000.0f;
3845 float twoBufferRatio = static_cast<float>(stats.twoBufferTime) /
3846 stats.totalTime;
3847 float doubleBufferRatio = static_cast<float>(
3848 stats.doubleBufferedTime) / stats.totalTime;
3849 float tripleBufferRatio = static_cast<float>(
3850 stats.tripleBufferedTime) / stats.totalTime;
3851 sorted.insert({activeTime, {name, twoBufferRatio,
3852 doubleBufferRatio, tripleBufferRatio}});
3853 }
3854 for (const auto& sortedPair : sorted) {
3855 float activeTime = sortedPair.first;
3856 const BufferTuple& values = sortedPair.second;
3857 result.appendFormat(" [%s] %.2f %.3f %.3f %.3f\n",
3858 std::get<0>(values).c_str(), activeTime,
3859 std::get<1>(values), std::get<2>(values),
3860 std::get<3>(values));
3861 }
3862 result.append("\n");
3863}
3864
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003865void SurfaceFlinger::dumpWideColorInfo(String8& result) const {
3866 result.appendFormat("hasWideColorDisplay: %d\n", hasWideColorDisplay);
Romain Guy54f154a2017-10-24 21:40:32 +01003867 result.appendFormat("forceNativeColorMode: %d\n", mForceNativeColorMode);
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003868
3869 // TODO: print out if wide-color mode is active or not
3870
3871 for (size_t d = 0; d < mDisplays.size(); d++) {
3872 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
3873 int32_t hwcId = displayDevice->getHwcDisplayId();
3874 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
3875 continue;
3876 }
3877
3878 result.appendFormat("Display %d color modes:\n", hwcId);
3879 std::vector<android_color_mode_t> modes = getHwComposer().getColorModes(hwcId);
3880 for (auto&& mode : modes) {
3881 result.appendFormat(" %s (%d)\n", decodeColorMode(mode).c_str(), mode);
3882 }
3883
3884 android_color_mode_t currentMode = displayDevice->getActiveColorMode();
3885 result.appendFormat(" Current color mode: %s (%d)\n",
3886 decodeColorMode(currentMode).c_str(), currentMode);
3887 }
3888 result.append("\n");
3889}
3890
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003891LayersProto SurfaceFlinger::dumpProtoInfo(LayerVector::StateSet stateSet) const {
chaviw1d044282017-09-27 12:19:28 -07003892 LayersProto layersProto;
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003893 const bool useDrawing = stateSet == LayerVector::StateSet::Drawing;
3894 const State& state = useDrawing ? mDrawingState : mCurrentState;
3895 state.traverseInZOrder([&](Layer* layer) {
chaviw1d044282017-09-27 12:19:28 -07003896 LayerProto* layerProto = layersProto.add_layers();
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003897 layer->writeToProto(layerProto, stateSet);
chaviw1d044282017-09-27 12:19:28 -07003898 });
3899
3900 return layersProto;
3901}
3902
Mathias Agopian74d211a2013-04-22 16:55:35 +02003903void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
3904 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003905{
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003906 bool colorize = false;
3907 if (index < args.size()
3908 && (args[index] == String16("--color"))) {
3909 colorize = true;
3910 index++;
3911 }
3912
3913 Colorizer colorizer(colorize);
3914
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003915 // figure out if we're stuck somewhere
3916 const nsecs_t now = systemTime();
3917 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
3918 const nsecs_t inTransaction(mDebugInTransaction);
3919 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
3920 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
3921
3922 /*
Andy McFadden4803b742012-09-24 19:07:20 -07003923 * Dump library configuration.
3924 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003925
3926 colorizer.bold(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003927 result.append("Build configuration:");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003928 colorizer.reset(result);
Andy McFadden4803b742012-09-24 19:07:20 -07003929 appendSfConfigString(result);
3930 appendUiConfigString(result);
3931 appendGuiConfigString(result);
3932 result.append("\n");
3933
Courtney Goeltzenleuchterf3b2de12017-03-27 12:18:12 -06003934 result.append("\nWide-Color information:\n");
3935 dumpWideColorInfo(result);
3936
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003937 colorizer.bold(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003938 result.append("Sync configuration: ");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003939 colorizer.reset(result);
Mathias Agopianca088332013-03-28 17:44:13 -07003940 result.append(SyncFeatures::getInstance().toString());
3941 result.append("\n");
3942
David Sodman105b7dc2017-11-04 20:28:14 -07003943 const auto& activeConfig = getBE().mHwc->getActiveConfig(HWC_DISPLAY_PRIMARY);
Dan Stoza9e56aa02015-11-02 13:00:03 -08003944
Andy McFadden41d67d72014-04-25 16:58:34 -07003945 colorizer.bold(result);
3946 result.append("DispSync configuration: ");
3947 colorizer.reset(result);
Jesse Hall24cd98e2014-07-13 14:37:16 -07003948 result.appendFormat("app phase %" PRId64 " ns, sf phase %" PRId64 " ns, "
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003949 "present offset %" PRId64 " ns (refresh %" PRId64 " ns)",
Dan Stoza9e56aa02015-11-02 13:00:03 -08003950 vsyncPhaseOffsetNs, sfVsyncPhaseOffsetNs,
Fabien Sanglardc45a7d92017-03-14 13:24:22 -07003951 dispSyncPresentTimeOffset, activeConfig->getVsyncPeriod());
Andy McFadden41d67d72014-04-25 16:58:34 -07003952 result.append("\n");
3953
Dan Stozab90cf072015-03-05 11:05:59 -08003954 // Dump static screen stats
3955 result.append("\n");
3956 dumpStaticScreenStats(result);
3957 result.append("\n");
3958
Dan Stozae77c7662016-05-13 11:37:28 -07003959 dumpBufferingStats(result);
3960
Andy McFadden4803b742012-09-24 19:07:20 -07003961 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003962 * Dump the visible layer list
3963 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003964 colorizer.bold(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07003965 result.appendFormat("Visible layers (count = %zu)\n", mNumLayers);
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003966 colorizer.reset(result);
chaviw1d044282017-09-27 12:19:28 -07003967
Jorim Jaggi8e0af362017-11-14 16:28:28 +01003968 LayersProto layersProto = dumpProtoInfo(LayerVector::StateSet::Current);
chaviw1d044282017-09-27 12:19:28 -07003969 auto layerTree = LayerProtoParser::generateLayerTree(layersProto);
3970 result.append(LayerProtoParser::layersToString(layerTree).c_str());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003971
3972 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003973 * Dump Display state
3974 */
3975
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003976 colorizer.bold(result);
Greg Hackmann86efcc02014-03-07 12:44:02 -08003977 result.appendFormat("Displays (%zu entries)\n", mDisplays.size());
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003978 colorizer.reset(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003979 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
3980 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003981 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07003982 }
3983
3984 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003985 * Dump SurfaceFlinger global state
3986 */
3987
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003988 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02003989 result.append("SurfaceFlinger global state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02003990 colorizer.reset(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003991
Mathias Agopian888c8222012-08-04 21:10:38 -07003992 HWComposer& hwc(getHwComposer());
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07003993 sp<const DisplayDevice> hw(getDefaultDisplayDeviceLocked());
Mathias Agopianca088332013-03-28 17:44:13 -07003994
David Sodmanbc815282017-11-05 18:57:52 -08003995 getBE().mRenderEngine->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08003996
Lloyd Pique2ae2b3b2017-12-14 17:18:17 -08003997 if (hw) {
3998 hw->undefinedRegion.dump(result, "undefinedRegion");
3999 result.appendFormat(" orientation=%d, isDisplayOn=%d\n",
4000 hw->getOrientation(), hw->isDisplayOn());
4001 }
Mathias Agopian74d211a2013-04-22 16:55:35 +02004002 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004003 " last eglSwapBuffers() time: %f us\n"
4004 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08004005 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004006 " refresh-rate : %f fps\n"
4007 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004008 " y-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07004009 " gpu_to_cpu_unsupported : %d\n"
4010 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004011 mLastSwapBufferTime/1000.0,
4012 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08004013 mTransactionFlags,
Dan Stoza9e56aa02015-11-02 13:00:03 -08004014 1e9 / activeConfig->getVsyncPeriod(),
4015 activeConfig->getDpiX(),
4016 activeConfig->getDpiY(),
Mathias Agopianed985572013-03-22 00:24:39 -07004017 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004018
Mathias Agopian74d211a2013-04-22 16:55:35 +02004019 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004020 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004021
Mathias Agopian74d211a2013-04-22 16:55:35 +02004022 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004023 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004024
4025 /*
4026 * VSYNC state
4027 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02004028 mEventThread->dump(result);
Dan Stozae22aec72016-08-01 13:20:59 -07004029 result.append("\n");
4030
4031 /*
4032 * HWC layer minidump
4033 */
4034 for (size_t d = 0; d < mDisplays.size(); d++) {
4035 const sp<const DisplayDevice>& displayDevice(mDisplays[d]);
4036 int32_t hwcId = displayDevice->getHwcDisplayId();
4037 if (hwcId == DisplayDevice::DISPLAY_ID_INVALID) {
4038 continue;
4039 }
4040
4041 result.appendFormat("Display %d HWC layers:\n", hwcId);
4042 Layer::miniDumpHeader(result);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004043 mCurrentState.traverseInZOrder([&](Layer* layer) {
Dan Stozae22aec72016-08-01 13:20:59 -07004044 layer->miniDump(result, hwcId);
Robert Carr1f0a16a2016-10-24 16:27:39 -07004045 });
Dan Stozae22aec72016-08-01 13:20:59 -07004046 result.append("\n");
4047 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004048
4049 /*
4050 * Dump HWComposer state
4051 */
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004052 colorizer.bold(result);
Mathias Agopian74d211a2013-04-22 16:55:35 +02004053 result.append("h/w composer state:\n");
Mathias Agopian3e25fd82013-04-22 17:52:16 +02004054 colorizer.reset(result);
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004055 bool hwcDisabled = mDebugDisableHWC || mDebugRegion;
Dan Stoza9e56aa02015-11-02 13:00:03 -08004056 result.appendFormat(" h/w composer %s\n",
4057 hwcDisabled ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02004058 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004059
4060 /*
4061 * Dump gralloc state
4062 */
4063 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
4064 alloc.dump(result);
Karthik Ravi Shankar171155a2017-06-28 15:40:24 -07004065
4066 /*
4067 * Dump VrFlinger state if in use.
4068 */
4069 if (mVrFlingerRequestsDisplay && mVrFlinger) {
4070 result.append("VrFlinger state:\n");
4071 result.append(mVrFlinger->Dump().c_str());
4072 result.append("\n");
4073 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08004074}
4075
Mathias Agopian13127d82013-03-05 17:47:11 -08004076const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07004077SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07004078 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07004079 wp<IBinder> dpy;
4080 for (size_t i=0 ; i<mDisplays.size() ; i++) {
4081 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
4082 dpy = mDisplays.keyAt(i);
4083 break;
4084 }
4085 }
Peiyong Lin566a3b42018-01-09 18:22:43 -08004086 if (dpy == nullptr) {
Jesse Hall48bc05b2013-03-21 14:06:52 -07004087 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
4088 // Just use the primary display so we have something to return
4089 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
4090 }
Stephen Kiazyk7d3dcb92017-04-05 16:46:49 -07004091 return getDisplayDeviceLocked(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07004092}
4093
Keun young Park63f165f2012-08-31 10:53:36 -07004094bool SurfaceFlinger::startDdmConnection()
4095{
4096 void* libddmconnection_dso =
4097 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
4098 if (!libddmconnection_dso) {
4099 return false;
4100 }
4101 void (*DdmConnection_start)(const char* name);
4102 DdmConnection_start =
Jesse Hall24cd98e2014-07-13 14:37:16 -07004103 (decltype(DdmConnection_start))dlsym(libddmconnection_dso, "DdmConnection_start");
Keun young Park63f165f2012-08-31 10:53:36 -07004104 if (!DdmConnection_start) {
4105 dlclose(libddmconnection_dso);
4106 return false;
4107 }
4108 (*DdmConnection_start)(getServiceName());
4109 return true;
4110}
4111
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004112status_t SurfaceFlinger::CheckTransactCodeCredentials(uint32_t code) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004113 switch (code) {
4114 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07004115 case CREATE_DISPLAY:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004116 case BOOT_FINISHED:
Svetoslavd85084b2014-03-20 10:28:31 -07004117 case CLEAR_ANIMATION_FRAME_STATS:
4118 case GET_ANIMATION_FRAME_STATS:
Prashant Malani2c9b11f2014-05-25 01:36:31 -07004119 case SET_POWER_MODE:
Dan Stozac4f471e2016-03-24 09:31:08 -07004120 case GET_HDR_CAPABILITIES:
Chia-I Wu90f669f2017-10-05 14:24:41 -07004121 case ENABLE_VSYNC_INJECTIONS:
4122 case INJECT_VSYNC:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004123 {
4124 // codes that require permission check
4125 IPCThreadState* ipc = IPCThreadState::self();
4126 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07004127 const int uid = ipc->getCallingUid();
Jeff Brown3bfe51d2015-04-10 20:20:13 -07004128 if ((uid != AID_GRAPHICS && uid != AID_SYSTEM) &&
Mathias Agopian99b49842011-06-27 16:05:52 -07004129 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004130 ALOGE("Permission Denial: can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
Mathias Agopian375f5632009-06-15 18:24:59 -07004131 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004132 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004133 break;
4134 }
Robert Carr1db73f62016-12-21 12:58:51 -08004135 /*
4136 * Calling setTransactionState is safe, because you need to have been
4137 * granted a reference to Client* and Handle* to do anything with it.
4138 *
4139 * Creating a scoped connection is safe, as per discussion in ISurfaceComposer.h
4140 */
4141 case SET_TRANSACTION_STATE:
4142 case CREATE_SCOPED_CONNECTION:
4143 {
4144 return OK;
4145 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004146 case CAPTURE_SCREEN:
4147 {
4148 // codes that require permission check
4149 IPCThreadState* ipc = IPCThreadState::self();
4150 const int pid = ipc->getCallingPid();
4151 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07004152 if ((uid != AID_GRAPHICS) &&
4153 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004154 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004155 return PERMISSION_DENIED;
4156 }
4157 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004158 }
chaviwa76b2712017-09-20 12:02:26 -07004159 case CAPTURE_LAYERS: {
4160 IPCThreadState* ipc = IPCThreadState::self();
4161 const int pid = ipc->getCallingPid();
4162 const int uid = ipc->getCallingUid();
4163 if ((uid != AID_GRAPHICS) &&
4164 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
4165 ALOGE("Permission Denial: can't read framebuffer pid=%d, uid=%d", pid, uid);
4166 return PERMISSION_DENIED;
4167 }
4168 break;
4169 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004170 }
Fabien Sanglard6e8e98a2016-10-27 20:04:11 -07004171 return OK;
4172}
4173
4174status_t SurfaceFlinger::onTransact(
4175 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
4176{
4177 status_t credentialCheck = CheckTransactCodeCredentials(code);
4178 if (credentialCheck != OK) {
4179 return credentialCheck;
4180 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004181
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004182 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
4183 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07004184 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Romain Guy8c6bbd62017-06-05 13:51:43 -07004185 IPCThreadState* ipc = IPCThreadState::self();
4186 const int uid = ipc->getCallingUid();
4187 if (CC_UNLIKELY(uid != AID_SYSTEM
4188 && !PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07004189 const int pid = ipc->getCallingPid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00004190 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07004191 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004192 return PERMISSION_DENIED;
4193 }
4194 int n;
4195 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07004196 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07004197 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004198 return NO_ERROR;
4199 case 1002: // SHOW_UPDATES
4200 n = data.readInt32();
4201 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07004202 invalidateHwcGeometry();
4203 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004204 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004205 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07004206 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004207 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004208 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004209 case 1005:{ // force transaction
Steven Thomas6d8110b2017-08-31 18:24:21 -07004210 Mutex::Autolock _l(mStateLock);
Mathias Agopiane57f2922012-08-09 16:29:12 -07004211 setTransactionFlags(
4212 eTransactionNeeded|
4213 eDisplayTransactionNeeded|
4214 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07004215 return NO_ERROR;
4216 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08004217 case 1006:{ // send empty update
4218 signalRefresh();
4219 return NO_ERROR;
4220 }
Mathias Agopian53331da2011-08-22 21:44:41 -07004221 case 1008: // toggle use of hw composer
4222 n = data.readInt32();
4223 mDebugDisableHWC = n ? 1 : 0;
4224 invalidateHwcGeometry();
4225 repaintEverything();
4226 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07004227 case 1009: // toggle use of transform hint
4228 n = data.readInt32();
4229 mDebugDisableTransformHint = n ? 1 : 0;
4230 invalidateHwcGeometry();
4231 repaintEverything();
4232 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004233 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07004234 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004235 reply->writeInt32(0);
4236 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07004237 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08004238 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004239 return NO_ERROR;
4240 case 1013: {
Tomasz Wasilczyk8722a312017-04-13 19:14:30 +00004241 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopian42977342012-08-05 00:40:46 -07004242 reply->writeInt32(hw->getPageFlipCount());
Mathias Agopianff2ed702013-09-01 21:36:12 -07004243 return NO_ERROR;
4244 }
4245 case 1014: {
4246 // daltonize
4247 n = data.readInt32();
4248 switch (n % 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004249 case 1:
4250 mDaltonizer.setType(ColorBlindnessType::Protanomaly);
4251 break;
4252 case 2:
4253 mDaltonizer.setType(ColorBlindnessType::Deuteranomaly);
4254 break;
4255 case 3:
4256 mDaltonizer.setType(ColorBlindnessType::Tritanomaly);
4257 break;
4258 default:
4259 mDaltonizer.setType(ColorBlindnessType::None);
4260 break;
Mathias Agopianff2ed702013-09-01 21:36:12 -07004261 }
4262 if (n >= 10) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004263 mDaltonizer.setMode(ColorBlindnessMode::Correction);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004264 } else {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004265 mDaltonizer.setMode(ColorBlindnessMode::Simulation);
Mathias Agopianff2ed702013-09-01 21:36:12 -07004266 }
Mathias Agopianff2ed702013-09-01 21:36:12 -07004267 invalidateHwcGeometry();
4268 repaintEverything();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004269 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004270 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004271 case 1015: {
4272 // apply a color matrix
4273 n = data.readInt32();
Alan Viverette9c5a3332013-09-12 20:04:35 -07004274 if (n) {
Romain Guy0147a172017-06-01 13:53:56 -07004275 // color matrix is sent as a column-major mat4 matrix
Alan Viverette794c5ba2013-10-03 16:40:52 -07004276 for (size_t i = 0 ; i < 4; i++) {
Dan Stoza9f26a9c2016-06-22 14:51:09 -07004277 for (size_t j = 0; j < 4; j++) {
4278 mColorMatrix[i][j] = data.readFloat();
4279 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004280 }
Alan Viverette9c5a3332013-09-12 20:04:35 -07004281 } else {
4282 mColorMatrix = mat4();
4283 }
Romain Guy88d37dd2017-05-26 17:57:05 -07004284
4285 // Check that supplied matrix's last row is {0,0,0,1} so we can avoid
4286 // the division by w in the fragment shader
4287 float4 lastRow(transpose(mColorMatrix)[3]);
4288 if (any(greaterThan(abs(lastRow - float4{0, 0, 0, 1}), float4{1e-4f}))) {
4289 ALOGE("The color transform's last row must be (0, 0, 0, 1)");
4290 }
4291
Alan Viverette9c5a3332013-09-12 20:04:35 -07004292 invalidateHwcGeometry();
4293 repaintEverything();
4294 return NO_ERROR;
4295 }
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004296 // This is an experimental interface
4297 // Needs to be shifted to proper binder interface when we productize
4298 case 1016: {
Andy McFadden645b1f72014-06-10 14:43:32 -07004299 n = data.readInt32();
4300 mPrimaryDispSync.setRefreshSkipCount(n);
Ruchi Kandoif52b3c82014-04-24 16:42:35 -07004301 return NO_ERROR;
4302 }
Dan Stozaee44edd2015-03-23 15:50:23 -07004303 case 1017: {
4304 n = data.readInt32();
4305 mForceFullDamage = static_cast<bool>(n);
4306 return NO_ERROR;
4307 }
Dan Stozadb4ac3c2015-04-14 11:34:01 -07004308 case 1018: { // Modify Choreographer's phase offset
4309 n = data.readInt32();
4310 mEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4311 return NO_ERROR;
4312 }
4313 case 1019: { // Modify SurfaceFlinger's phase offset
4314 n = data.readInt32();
4315 mSFEventThread->setPhaseOffset(static_cast<nsecs_t>(n));
4316 return NO_ERROR;
4317 }
Irvel468051e2016-06-13 16:44:44 -07004318 case 1020: { // Layer updates interceptor
4319 n = data.readInt32();
4320 if (n) {
4321 ALOGV("Interceptor enabled");
Irvelffc9efc2016-07-27 15:16:37 -07004322 mInterceptor.enable(mDrawingState.layersSortedByZ, mDrawingState.displays);
Irvel468051e2016-06-13 16:44:44 -07004323 }
4324 else{
4325 ALOGV("Interceptor disabled");
4326 mInterceptor.disable();
4327 }
4328 return NO_ERROR;
4329 }
Dan Stoza8cf150a2016-08-02 10:27:31 -07004330 case 1021: { // Disable HWC virtual displays
4331 n = data.readInt32();
4332 mUseHwcVirtualDisplays = !n;
4333 return NO_ERROR;
4334 }
Romain Guy0147a172017-06-01 13:53:56 -07004335 case 1022: { // Set saturation boost
4336 mSaturation = std::max(0.0f, std::min(data.readFloat(), 2.0f));
4337
4338 invalidateHwcGeometry();
4339 repaintEverything();
4340 return NO_ERROR;
4341 }
Romain Guy54f154a2017-10-24 21:40:32 +01004342 case 1023: { // Set native mode
4343 mForceNativeColorMode = data.readInt32() == 1;
4344
4345 invalidateHwcGeometry();
4346 repaintEverything();
4347 return NO_ERROR;
4348 }
4349 case 1024: { // Is wide color gamut rendering/color management supported?
4350 reply->writeBool(hasWideColorDisplay);
4351 return NO_ERROR;
4352 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004353 case 1025: { // Set layer tracing
Adrian Roos1e1a1282017-11-01 19:05:31 +01004354 n = data.readInt32();
4355 if (n) {
4356 ALOGV("LayerTracing enabled");
4357 mTracing.enable();
4358 doTracing("tracing.enable");
4359 reply->writeInt32(NO_ERROR);
4360 } else {
4361 ALOGV("LayerTracing disabled");
4362 status_t err = mTracing.disable();
4363 reply->writeInt32(err);
4364 }
4365 return NO_ERROR;
4366 }
Vishnu Nair87704c92018-01-08 15:32:57 -08004367 case 1026: { // Get layer tracing status
4368 reply->writeBool(mTracing.isEnabled());
4369 return NO_ERROR;
4370 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004371 }
4372 }
4373 return err;
4374}
4375
Steven Thomas6d8110b2017-08-31 18:24:21 -07004376void SurfaceFlinger::repaintEverythingLocked() {
Mathias Agopian87baae12012-07-31 12:38:26 -07004377 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08004378 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07004379}
4380
Steven Thomas6d8110b2017-08-31 18:24:21 -07004381void SurfaceFlinger::repaintEverything() {
4382 ConditionalLock _l(mStateLock,
4383 std::this_thread::get_id() != mMainThreadId);
4384 repaintEverythingLocked();
4385}
4386
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004387// A simple RAII class to disconnect from an ANativeWindow* when it goes out of scope
4388class WindowDisconnector {
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004389public:
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004390 WindowDisconnector(ANativeWindow* window, int api) : mWindow(window), mApi(api) {}
4391 ~WindowDisconnector() {
4392 native_window_api_disconnect(mWindow, mApi);
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004393 }
4394
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004395private:
4396 ANativeWindow* mWindow;
4397 const int mApi;
Mathias Agopian2ed0fe52013-07-08 17:09:41 -07004398};
4399
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004400status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, sp<GraphicBuffer>* outBuffer,
4401 Rect sourceCrop, uint32_t reqWidth, uint32_t reqHeight,
4402 int32_t minLayerZ, int32_t maxLayerZ,
4403 bool useIdentityTransform,
chaviwa76b2712017-09-20 12:02:26 -07004404 ISurfaceComposer::Rotation rotation) {
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004405 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004406
chaviwa76b2712017-09-20 12:02:26 -07004407 if (CC_UNLIKELY(display == 0)) return BAD_VALUE;
4408
4409 const sp<const DisplayDevice> device(getDisplayDeviceLocked(display));
4410 DisplayRenderArea renderArea(device, sourceCrop, reqHeight, reqWidth, rotation);
4411
4412 auto traverseLayers = std::bind(std::mem_fn(&SurfaceFlinger::traverseLayersInDisplay), this,
4413 device, minLayerZ, maxLayerZ, std::placeholders::_1);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004414 return captureScreenCommon(renderArea, traverseLayers, outBuffer, useIdentityTransform);
chaviwa76b2712017-09-20 12:02:26 -07004415}
4416
4417status_t SurfaceFlinger::captureLayers(const sp<IBinder>& layerHandleBinder,
Vishnu Nair87704c92018-01-08 15:32:57 -08004418 sp<GraphicBuffer>* outBuffer, const Rect& sourceCrop,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004419 float frameScale) {
chaviwa76b2712017-09-20 12:02:26 -07004420 ATRACE_CALL();
4421
4422 class LayerRenderArea : public RenderArea {
4423 public:
chaviw7206d492017-11-10 16:16:12 -08004424 LayerRenderArea(const sp<Layer>& layer, const Rect crop, int32_t reqWidth,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004425 int32_t reqHeight)
chaviw7206d492017-11-10 16:16:12 -08004426 : RenderArea(reqHeight, reqWidth), mLayer(layer), mCrop(crop) {}
chaviwa76b2712017-09-20 12:02:26 -07004427 const Transform& getTransform() const override {
4428 // Make the top level transform the inverse the transform and it's parent so it sets
4429 // the whole capture back to 0,0
4430 return *new Transform(mLayer->getTransform().inverse());
4431 }
4432 Rect getBounds() const override {
4433 const Layer::State& layerState(mLayer->getDrawingState());
4434 return Rect(layerState.active.w, layerState.active.h);
4435 }
4436 int getHeight() const override { return mLayer->getDrawingState().active.h; }
4437 int getWidth() const override { return mLayer->getDrawingState().active.w; }
4438 bool isSecure() const override { return false; }
4439 bool needsFiltering() const override { return false; }
4440
chaviw7206d492017-11-10 16:16:12 -08004441 Rect getSourceCrop() const override {
4442 if (mCrop.isEmpty()) {
4443 return getBounds();
4444 } else {
4445 return mCrop;
4446 }
4447 }
chaviwa76b2712017-09-20 12:02:26 -07004448 bool getWideColorSupport() const override { return false; }
4449 android_color_mode_t getActiveColorMode() const override { return HAL_COLOR_MODE_NATIVE; }
4450
4451 private:
chaviw7206d492017-11-10 16:16:12 -08004452 const sp<Layer> mLayer;
4453 const Rect mCrop;
chaviwa76b2712017-09-20 12:02:26 -07004454 };
4455
4456 auto layerHandle = reinterpret_cast<Layer::Handle*>(layerHandleBinder.get());
4457 auto parent = layerHandle->owner.promote();
4458
chaviw7206d492017-11-10 16:16:12 -08004459 if (parent == nullptr || parent->isPendingRemoval()) {
4460 ALOGE("captureLayers called with a removed parent");
4461 return NAME_NOT_FOUND;
4462 }
4463
4464 Rect crop(sourceCrop);
4465 if (sourceCrop.width() <= 0) {
4466 crop.left = 0;
4467 crop.right = parent->getCurrentState().active.w;
4468 }
4469
4470 if (sourceCrop.height() <= 0) {
4471 crop.top = 0;
4472 crop.bottom = parent->getCurrentState().active.h;
4473 }
4474
4475 int32_t reqWidth = crop.width() * frameScale;
4476 int32_t reqHeight = crop.height() * frameScale;
4477
4478 LayerRenderArea renderArea(parent, crop, reqWidth, reqHeight);
4479
chaviwa76b2712017-09-20 12:02:26 -07004480 auto traverseLayers = [parent](const LayerVector::Visitor& visitor) {
4481 parent->traverseChildrenInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
4482 if (!layer->isVisible()) {
4483 return;
4484 }
4485 visitor(layer);
4486 });
4487 };
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004488 return captureScreenCommon(renderArea, traverseLayers, outBuffer, false);
chaviwa76b2712017-09-20 12:02:26 -07004489}
4490
4491status_t SurfaceFlinger::captureScreenCommon(RenderArea& renderArea,
4492 TraverseLayersFunction traverseLayers,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004493 sp<GraphicBuffer>* outBuffer,
chaviwa76b2712017-09-20 12:02:26 -07004494 bool useIdentityTransform) {
4495 ATRACE_CALL();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004496
chaviwa76b2712017-09-20 12:02:26 -07004497 renderArea.updateDimensions();
4498
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004499 const uint32_t usage = GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN |
4500 GRALLOC_USAGE_HW_RENDER | GRALLOC_USAGE_HW_TEXTURE;
4501 *outBuffer = new GraphicBuffer(renderArea.getReqWidth(), renderArea.getReqHeight(),
4502 HAL_PIXEL_FORMAT_RGBA_8888, 1, usage, "screenshot");
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004503
4504 // This mutex protects syncFd and captureResult for communication of the return values from the
4505 // main thread back to this Binder thread
4506 std::mutex captureMutex;
4507 std::condition_variable captureCondition;
4508 std::unique_lock<std::mutex> captureLock(captureMutex);
4509 int syncFd = -1;
4510 std::optional<status_t> captureResult;
4511
Robert Carr03480e22018-01-04 16:02:06 -08004512 const int uid = IPCThreadState::self()->getCallingUid();
4513 const bool forSystem = uid == AID_GRAPHICS || uid == AID_SYSTEM;
4514
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004515 sp<LambdaMessage> message = new LambdaMessage([&]() {
4516 // If there is a refresh pending, bug out early and tell the binder thread to try again
4517 // after the refresh.
4518 if (mRefreshPending) {
4519 ATRACE_NAME("Skipping screenshot for now");
4520 std::unique_lock<std::mutex> captureLock(captureMutex);
4521 captureResult = std::make_optional<status_t>(EAGAIN);
4522 captureCondition.notify_one();
4523 return;
4524 }
4525
4526 status_t result = NO_ERROR;
4527 int fd = -1;
4528 {
4529 Mutex::Autolock _l(mStateLock);
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004530 result = captureScreenImplLocked(renderArea, traverseLayers, (*outBuffer).get(),
Robert Carr03480e22018-01-04 16:02:06 -08004531 useIdentityTransform, forSystem, &fd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004532 }
4533
4534 {
4535 std::unique_lock<std::mutex> captureLock(captureMutex);
4536 syncFd = fd;
4537 captureResult = std::make_optional<status_t>(result);
4538 captureCondition.notify_one();
4539 }
4540 });
4541
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004542 status_t result = postMessageAsync(message);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004543 if (result == NO_ERROR) {
4544 captureCondition.wait(captureLock, [&]() { return captureResult; });
4545 while (*captureResult == EAGAIN) {
4546 captureResult.reset();
4547 result = postMessageAsync(message);
4548 if (result != NO_ERROR) {
4549 return result;
4550 }
4551 captureCondition.wait(captureLock, [&]() { return captureResult; });
4552 }
4553 result = *captureResult;
4554 }
4555
4556 if (result == NO_ERROR) {
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004557 sync_wait(syncFd, -1);
4558 close(syncFd);
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004559 }
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004560
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004561 return result;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004562}
4563
chaviwa76b2712017-09-20 12:02:26 -07004564void SurfaceFlinger::renderScreenImplLocked(const RenderArea& renderArea,
4565 TraverseLayersFunction traverseLayers, bool yswap,
4566 bool useIdentityTransform) {
Mathias Agopian180f10d2013-04-10 22:55:41 -07004567 ATRACE_CALL();
chaviwa76b2712017-09-20 12:02:26 -07004568
Lloyd Pique144e1162017-12-20 16:44:52 -08004569 auto& engine(getRenderEngine());
Mathias Agopian180f10d2013-04-10 22:55:41 -07004570
4571 // get screen geometry
chaviwa76b2712017-09-20 12:02:26 -07004572 const auto raWidth = renderArea.getWidth();
4573 const auto raHeight = renderArea.getHeight();
4574
4575 const auto reqWidth = renderArea.getReqWidth();
4576 const auto reqHeight = renderArea.getReqHeight();
4577 Rect sourceCrop = renderArea.getSourceCrop();
4578
4579 const bool filtering = static_cast<int32_t>(reqWidth) != raWidth ||
4580 static_cast<int32_t>(reqHeight) != raHeight;
Mathias Agopian180f10d2013-04-10 22:55:41 -07004581
Dan Stozac1879002014-05-22 15:59:05 -07004582 // if a default or invalid sourceCrop is passed in, set reasonable values
chaviwa76b2712017-09-20 12:02:26 -07004583 if (sourceCrop.width() == 0 || sourceCrop.height() == 0 || !sourceCrop.isValid()) {
Dan Stozac1879002014-05-22 15:59:05 -07004584 sourceCrop.setLeftTop(Point(0, 0));
chaviwa76b2712017-09-20 12:02:26 -07004585 sourceCrop.setRightBottom(Point(raWidth, raHeight));
Dan Stozac1879002014-05-22 15:59:05 -07004586 }
4587
4588 // ensure that sourceCrop is inside screen
4589 if (sourceCrop.left < 0) {
4590 ALOGE("Invalid crop rect: l = %d (< 0)", sourceCrop.left);
4591 }
chaviwa76b2712017-09-20 12:02:26 -07004592 if (sourceCrop.right > raWidth) {
4593 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, raWidth);
Dan Stozac1879002014-05-22 15:59:05 -07004594 }
4595 if (sourceCrop.top < 0) {
4596 ALOGE("Invalid crop rect: t = %d (< 0)", sourceCrop.top);
4597 }
chaviwa76b2712017-09-20 12:02:26 -07004598 if (sourceCrop.bottom > raHeight) {
4599 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, raHeight);
Dan Stozac1879002014-05-22 15:59:05 -07004600 }
4601
Chia-I Wu69bf10f2018-02-20 13:04:50 -08004602 android_dataspace outputDataspace = HAL_DATASPACE_UNKNOWN;
4603 if (!mForceNativeColorMode && renderArea.getWideColorSupport() &&
4604 renderArea.getActiveColorMode() == HAL_COLOR_MODE_DISPLAY_P3) {
4605 outputDataspace = HAL_DATASPACE_DISPLAY_P3;
4606 }
4607 getBE().mRenderEngine->setOutputDataSpace(outputDataspace);
Romain Guy88d37dd2017-05-26 17:57:05 -07004608
Mathias Agopian180f10d2013-04-10 22:55:41 -07004609 // make sure to clear all GL error flags
Mathias Agopian3f844832013-08-07 21:24:32 -07004610 engine.checkErrors();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004611
4612 // set-up our viewport
chaviwa76b2712017-09-20 12:02:26 -07004613 engine.setViewportAndProjection(reqWidth, reqHeight, sourceCrop, raHeight, yswap,
4614 renderArea.getRotationFlags());
Mathias Agopian3f844832013-08-07 21:24:32 -07004615 engine.disableTexturing();
Mathias Agopian180f10d2013-04-10 22:55:41 -07004616
4617 // redraw the screen entirely...
Mathias Agopian3f844832013-08-07 21:24:32 -07004618 engine.clearWithColor(0, 0, 0, 1);
Mathias Agopian180f10d2013-04-10 22:55:41 -07004619
chaviwa76b2712017-09-20 12:02:26 -07004620 traverseLayers([&](Layer* layer) {
4621 if (filtering) layer->setFiltering(true);
4622 layer->draw(renderArea, useIdentityTransform);
4623 if (filtering) layer->setFiltering(false);
4624 });
Mathias Agopian180f10d2013-04-10 22:55:41 -07004625}
4626
chaviwa76b2712017-09-20 12:02:26 -07004627status_t SurfaceFlinger::captureScreenImplLocked(const RenderArea& renderArea,
4628 TraverseLayersFunction traverseLayers,
4629 ANativeWindowBuffer* buffer,
Chavi Weingarten40482ff2017-11-30 01:51:40 +00004630 bool useIdentityTransform,
Robert Carr03480e22018-01-04 16:02:06 -08004631 bool forSystem,
chaviwa76b2712017-09-20 12:02:26 -07004632 int* outSyncFd) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08004633 ATRACE_CALL();
4634
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004635 bool secureLayerIsVisible = false;
chaviwa76b2712017-09-20 12:02:26 -07004636
4637 traverseLayers([&](Layer* layer) {
4638 secureLayerIsVisible = secureLayerIsVisible || (layer->isVisible() && layer->isSecure());
4639 });
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004640
Robert Carr03480e22018-01-04 16:02:06 -08004641 // We allow the system server to take screenshots of secure layers for
4642 // use in situations like the Screen-rotation animation and place
4643 // the impetus on WindowManager to not persist them.
4644 if (secureLayerIsVisible && !forSystem) {
Pablo Ceballosb5b35632016-02-23 11:18:51 -08004645 ALOGW("FB is protected: PERMISSION_DENIED");
4646 return PERMISSION_DENIED;
4647 }
4648
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004649 // this binds the given EGLImage as a framebuffer for the
4650 // duration of this scope.
Lloyd Pique144e1162017-12-20 16:44:52 -08004651 RE::BindNativeBufferAsFramebuffer bufferBond(getRenderEngine(), buffer);
Chia-I Wueadbaa62017-11-09 11:26:15 -08004652 if (bufferBond.getStatus() != NO_ERROR) {
4653 ALOGE("got ANWB binding error while taking screenshot");
Dan Stozaabcda352017-06-01 14:37:39 -07004654 return INVALID_OPERATION;
4655 }
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004656
Dan Stozaabcda352017-06-01 14:37:39 -07004657 // this will in fact render into our dequeued buffer
4658 // via an FBO, which means we didn't have to create
4659 // an EGLSurface and therefore we're not
4660 // dependent on the context's EGLConfig.
chaviwa76b2712017-09-20 12:02:26 -07004661 renderScreenImplLocked(renderArea, traverseLayers, true, useIdentityTransform);
Dan Stozaa9b1aa02017-06-01 14:16:23 -07004662
Dan Stozaabcda352017-06-01 14:37:39 -07004663 if (DEBUG_SCREENSHOTS) {
Chia-I Wu767fcf72017-11-30 22:07:38 -08004664 getRenderEngine().finish();
4665 *outSyncFd = -1;
4666
chaviwa76b2712017-09-20 12:02:26 -07004667 const auto reqWidth = renderArea.getReqWidth();
4668 const auto reqHeight = renderArea.getReqHeight();
4669
Dan Stozaabcda352017-06-01 14:37:39 -07004670 uint32_t* pixels = new uint32_t[reqWidth*reqHeight];
4671 getRenderEngine().readPixels(0, 0, reqWidth, reqHeight, pixels);
chaviwa76b2712017-09-20 12:02:26 -07004672 checkScreenshot(reqWidth, reqHeight, reqWidth, pixels, traverseLayers);
Dan Stozaabcda352017-06-01 14:37:39 -07004673 delete [] pixels;
Chia-I Wu767fcf72017-11-30 22:07:38 -08004674 } else {
4675 base::unique_fd syncFd = getRenderEngine().flush();
4676 if (syncFd < 0) {
4677 getRenderEngine().finish();
4678 }
4679 *outSyncFd = syncFd.release();
Dan Stozaabcda352017-06-01 14:37:39 -07004680 }
4681
Dan Stoza2b6d38e2017-06-01 16:40:30 -07004682 return NO_ERROR;
Mathias Agopian74c40c02010-09-29 13:02:36 -07004683}
4684
Mathias Agopiand5556842013-09-19 17:08:37 -07004685void SurfaceFlinger::checkScreenshot(size_t w, size_t s, size_t h, void const* vaddr,
chaviwa76b2712017-09-20 12:02:26 -07004686 TraverseLayersFunction traverseLayers) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004687 if (DEBUG_SCREENSHOTS) {
chaviwa76b2712017-09-20 12:02:26 -07004688 for (size_t y = 0; y < h; y++) {
4689 uint32_t const* p = (uint32_t const*)vaddr + y * s;
4690 for (size_t x = 0; x < w; x++) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004691 if (p[x] != 0xFF000000) return;
4692 }
4693 }
chaviwa76b2712017-09-20 12:02:26 -07004694 ALOGE("*** we just took a black screenshot ***");
Robert Carr1f0a16a2016-10-24 16:27:39 -07004695
Robert Carr2047fae2016-11-28 14:09:09 -08004696 size_t i = 0;
chaviwa76b2712017-09-20 12:02:26 -07004697 traverseLayers([&](Layer* layer) {
Mathias Agopianfee2b462013-07-03 12:34:01 -07004698 const Layer::State& state(layer->getDrawingState());
chaviwa76b2712017-09-20 12:02:26 -07004699 ALOGE("%c index=%zu, name=%s, layerStack=%d, z=%d, visible=%d, flags=%x, alpha=%.3f",
4700 layer->isVisible() ? '+' : '-', i, layer->getName().string(),
4701 layer->getLayerStack(), state.z, layer->isVisible(), state.flags,
4702 static_cast<float>(state.color.a));
4703 i++;
4704 });
Mathias Agopianfee2b462013-07-03 12:34:01 -07004705 }
4706}
4707
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07004708// ---------------------------------------------------------------------------
4709
Dan Stoza412903f2017-04-27 13:42:17 -07004710void SurfaceFlinger::State::traverseInZOrder(const LayerVector::Visitor& visitor) const {
4711 layersSortedByZ.traverseInZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004712}
4713
Dan Stoza412903f2017-04-27 13:42:17 -07004714void SurfaceFlinger::State::traverseInReverseZOrder(const LayerVector::Visitor& visitor) const {
4715 layersSortedByZ.traverseInReverseZOrder(stateSet, visitor);
Mathias Agopian921e6ac2012-07-23 23:11:29 -07004716}
4717
chaviwa76b2712017-09-20 12:02:26 -07004718void SurfaceFlinger::traverseLayersInDisplay(const sp<const DisplayDevice>& hw, int32_t minLayerZ,
4719 int32_t maxLayerZ,
4720 const LayerVector::Visitor& visitor) {
4721 // We loop through the first level of layers without traversing,
4722 // as we need to interpret min/max layer Z in the top level Z space.
4723 for (const auto& layer : mDrawingState.layersSortedByZ) {
4724 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4725 continue;
4726 }
4727 const Layer::State& state(layer->getDrawingState());
Chia-I Wuec2d9852017-11-21 09:21:01 -08004728 // relative layers are traversed in Layer::traverseInZOrder
4729 if (state.zOrderRelativeOf != nullptr || state.z < minLayerZ || state.z > maxLayerZ) {
chaviwa76b2712017-09-20 12:02:26 -07004730 continue;
4731 }
4732 layer->traverseInZOrder(LayerVector::StateSet::Drawing, [&](Layer* layer) {
Adrian Roos8acf5a02018-01-17 21:28:19 +01004733 if (!layer->belongsToDisplay(hw->getLayerStack(), false)) {
4734 return;
4735 }
chaviwa76b2712017-09-20 12:02:26 -07004736 if (!layer->isVisible()) {
4737 return;
4738 }
4739 visitor(layer);
4740 });
4741 }
4742}
4743
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08004744}; // namespace android
Mathias Agopian3f844832013-08-07 21:24:32 -07004745
4746
4747#if defined(__gl_h_)
4748#error "don't include gl/gl.h in this file"
4749#endif
4750
4751#if defined(__gl2_h_)
4752#error "don't include gl2/gl2.h in this file"
Chia-I Wu767fcf72017-11-30 22:07:38 -08004753#endif