blob: dc73fe7403b97e212f38d8526d759e0a450c7d95 [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
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080017#define ATRACE_TAG ATRACE_TAG_GRAPHICS
18
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019#include <stdint.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070020#include <sys/types.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080021#include <errno.h>
22#include <math.h>
Keun young Park63f165f2012-08-31 10:53:36 -070023#include <dlfcn.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070024
25#include <EGL/egl.h>
26#include <GLES/gl.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080027
28#include <cutils/log.h>
29#include <cutils/properties.h>
30
Mathias Agopianc5b2c0b2009-05-19 19:08:10 -070031#include <binder/IPCThreadState.h>
32#include <binder/IServiceManager.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070033#include <binder/MemoryHeapBase.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070034#include <binder/PermissionCache.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070035
Mathias Agopianc666cae2012-07-25 18:56:13 -070036#include <ui/DisplayInfo.h>
37
Mathias Agopian921e6ac2012-07-23 23:11:29 -070038#include <gui/BitTube.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070039#include <gui/BufferQueue.h>
Andy McFadden4803b742012-09-24 19:07:20 -070040#include <gui/GuiConfig.h>
Jamie Gennis1a4d8832012-08-02 20:11:05 -070041#include <gui/IDisplayEventConnection.h>
Mathias Agopiane3c697f2013-02-14 17:11:02 -080042#include <gui/Surface.h>
Jamie Gennis392edd82012-11-29 23:26:29 -080043#include <gui/GraphicBufferAlloc.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070044
45#include <ui/GraphicBufferAllocator.h>
46#include <ui/PixelFormat.h>
Andy McFadden4803b742012-09-24 19:07:20 -070047#include <ui/UiConfig.h>
Mathias Agopiand0566bc2011-11-17 17:49:17 -080048
Mathias Agopiancde87a32012-09-13 14:09:01 -070049#include <utils/misc.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080050#include <utils/String8.h>
51#include <utils/String16.h>
52#include <utils/StopWatch.h>
Jamie Gennis1c8e95c2012-02-23 19:27:23 -080053#include <utils/Trace.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054
Mathias Agopian921e6ac2012-07-23 23:11:29 -070055#include <private/android_filesystem_config.h>
Mathias Agopianca088332013-03-28 17:44:13 -070056#include <private/gui/SyncFeatures.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080057
58#include "clz.h"
Mathias Agopian90ac7992012-02-25 18:48:35 -080059#include "DdmConnection.h"
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -070060#include "DisplayDevice.h"
Mathias Agopiandb403e82012-06-18 16:47:56 -070061#include "Client.h"
Mathias Agopiand0566bc2011-11-17 17:49:17 -080062#include "EventThread.h"
Mathias Agopian1f7bec62010-06-25 18:02:21 -070063#include "GLExtensions.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064#include "Layer.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065#include "LayerDim.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080067
Mathias Agopiana4912602012-07-12 14:25:33 -070068#include "DisplayHardware/FramebufferSurface.h"
Mathias Agopiana350ff92010-08-10 17:14:02 -070069#include "DisplayHardware/HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070070#include "DisplayHardware/VirtualDisplaySurface.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080071
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080072#define DISPLAY_COUNT 1
73
Mathias Agopianca088332013-03-28 17:44:13 -070074EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name);
75
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076namespace android {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080077// ---------------------------------------------------------------------------
78
Mathias Agopian99b49842011-06-27 16:05:52 -070079const String16 sHardwareTest("android.permission.HARDWARE_TEST");
80const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
81const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
82const String16 sDump("android.permission.DUMP");
83
84// ---------------------------------------------------------------------------
85
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080086SurfaceFlinger::SurfaceFlinger()
87 : BnSurfaceComposer(), Thread(false),
88 mTransactionFlags(0),
Jamie Gennis2d5e2302012-10-15 18:24:43 -070089 mTransactionPending(false),
90 mAnimTransactionPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -070091 mLayersRemoved(false),
Mathias Agopian52bbb1a2012-07-31 19:01:53 -070092 mRepaintEverything(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080093 mBootTime(systemTime()),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080094 mVisibleRegionsDirty(false),
Mathias Agopiana350ff92010-08-10 17:14:02 -070095 mHwWorkListDirty(false),
Jamie Gennis4b0eba92013-02-05 13:30:24 -080096 mAnimCompositionPending(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080097 mDebugRegion(0),
Mathias Agopian8afb7e32011-08-15 20:44:40 -070098 mDebugDDMS(0),
Mathias Agopian73d3ba92010-09-22 18:58:01 -070099 mDebugDisableHWC(0),
Mathias Agopiana4583642011-08-23 18:03:18 -0700100 mDebugDisableTransformHint(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700101 mDebugInSwapBuffers(0),
102 mLastSwapBufferTime(0),
103 mDebugInTransaction(0),
104 mLastTransactionTime(0),
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700105 mBootFinished(false)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800106{
Steve Blocka19954a2012-01-04 20:05:49 +0000107 ALOGI("SurfaceFlinger is starting");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800108
109 // debugging stuff...
110 char value[PROPERTY_VALUE_MAX];
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700111
Mathias Agopianb4b17302013-03-20 18:36:41 -0700112 property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
Mathias Agopian50210b92013-03-21 21:13:21 -0700113 mGpuToCpuSupported = !atoi(value);
Mathias Agopianb4b17302013-03-20 18:36:41 -0700114
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800115 property_get("debug.sf.showupdates", value, "0");
116 mDebugRegion = atoi(value);
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700117
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700118 property_get("debug.sf.ddms", value, "0");
119 mDebugDDMS = atoi(value);
120 if (mDebugDDMS) {
Keun young Park63f165f2012-08-31 10:53:36 -0700121 if (!startDdmConnection()) {
122 // start failed, and DDMS debugging not enabled
123 mDebugDDMS = 0;
124 }
Mathias Agopian8afb7e32011-08-15 20:44:40 -0700125 }
Mathias Agopianc1d359d2012-08-04 20:09:03 -0700126 ALOGI_IF(mDebugRegion, "showupdates enabled");
127 ALOGI_IF(mDebugDDMS, "DDMS debugging enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800128}
129
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800130void SurfaceFlinger::onFirstRef()
131{
132 mEventQueue.init(this);
133
134 run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY);
135
136 // Wait for the main thread to be done with its initialization
137 mReadyToRunBarrier.wait();
138}
139
140
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800141SurfaceFlinger::~SurfaceFlinger()
142{
Mathias Agopiana4912602012-07-12 14:25:33 -0700143 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
144 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
145 eglTerminate(display);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800146}
147
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800148void SurfaceFlinger::binderDied(const wp<IBinder>& who)
149{
150 // the window manager died on us. prepare its eulogy.
151
Andy McFadden13a082e2012-08-24 10:16:42 -0700152 // restore initial conditions (default device unblank, etc)
153 initializeDisplays();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800154
155 // restart the boot-animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700156 startBootAnim();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800157}
158
Mathias Agopian7e27f052010-05-28 14:22:23 -0700159sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800160{
Mathias Agopian96f08192010-06-02 23:28:45 -0700161 sp<ISurfaceComposerClient> bclient;
162 sp<Client> client(new Client(this));
163 status_t err = client->initCheck();
164 if (err == NO_ERROR) {
165 bclient = client;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800167 return bclient;
168}
169
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700170sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName,
171 bool secure)
Mathias Agopiane57f2922012-08-09 16:29:12 -0700172{
173 class DisplayToken : public BBinder {
174 sp<SurfaceFlinger> flinger;
175 virtual ~DisplayToken() {
176 // no more references, this display must be terminated
177 Mutex::Autolock _l(flinger->mStateLock);
178 flinger->mCurrentState.displays.removeItem(this);
179 flinger->setTransactionFlags(eDisplayTransactionNeeded);
180 }
181 public:
182 DisplayToken(const sp<SurfaceFlinger>& flinger)
183 : flinger(flinger) {
184 }
185 };
186
187 sp<BBinder> token = new DisplayToken(this);
188
189 Mutex::Autolock _l(mStateLock);
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700190 DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL);
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700191 info.displayName = displayName;
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700192 info.isSecure = secure;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700193 mCurrentState.displays.add(token, info);
194
195 return token;
196}
197
Jesse Hall692c7232012-11-08 15:41:56 -0800198void SurfaceFlinger::createBuiltinDisplayLocked(DisplayDevice::DisplayType type) {
199 ALOGW_IF(mBuiltinDisplays[type],
200 "Overwriting display token for display type %d", type);
201 mBuiltinDisplays[type] = new BBinder();
202 DisplayDeviceState info(type);
203 // All non-virtual displays are currently considered secure.
204 info.isSecure = true;
205 mCurrentState.displays.add(mBuiltinDisplays[type], info);
206}
207
Mathias Agopiane57f2922012-08-09 16:29:12 -0700208sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) {
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700209 if (uint32_t(id) >= DisplayDevice::NUM_DISPLAY_TYPES) {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700210 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
211 return NULL;
212 }
Jesse Hall692c7232012-11-08 15:41:56 -0800213 return mBuiltinDisplays[id];
Mathias Agopiane57f2922012-08-09 16:29:12 -0700214}
215
Jamie Gennis9a78c902011-01-12 18:30:40 -0800216sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc()
217{
218 sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc());
219 return gba;
220}
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700221
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800222void SurfaceFlinger::bootFinished()
223{
224 const nsecs_t now = systemTime();
225 const nsecs_t duration = now - mBootTime;
Steve Blocka19954a2012-01-04 20:05:49 +0000226 ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian3330b202009-10-05 17:07:12 -0700227 mBootFinished = true;
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700228
229 // wait patiently for the window manager death
230 const String16 name("window");
231 sp<IBinder> window(defaultServiceManager()->getService(name));
232 if (window != 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700233 window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this));
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700234 }
235
236 // stop boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700237 // formerly we would just kill the process, but we now ask it to exit so it
238 // can choose where to stop the animation.
239 property_set("service.bootanim.exit", "1");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800240}
241
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700242void SurfaceFlinger::deleteTextureAsync(GLuint texture) {
243 class MessageDestroyGLTexture : public MessageBase {
244 GLuint texture;
245 public:
246 MessageDestroyGLTexture(GLuint texture)
247 : texture(texture) {
248 }
249 virtual bool handler() {
250 glDeleteTextures(1, &texture);
251 return true;
252 }
253 };
254 postMessageAsync(new MessageDestroyGLTexture(texture));
255}
256
Mathias Agopian722b98f2012-09-25 18:24:31 -0700257status_t SurfaceFlinger::selectConfigForAttribute(
Mathias Agopiana4912602012-07-12 14:25:33 -0700258 EGLDisplay dpy,
259 EGLint const* attrs,
Mathias Agopian722b98f2012-09-25 18:24:31 -0700260 EGLint attribute, EGLint wanted,
Mathias Agopiana4912602012-07-12 14:25:33 -0700261 EGLConfig* outConfig)
262{
263 EGLConfig config = NULL;
264 EGLint numConfigs = -1, n=0;
265 eglGetConfigs(dpy, NULL, 0, &numConfigs);
266 EGLConfig* const configs = new EGLConfig[numConfigs];
267 eglChooseConfig(dpy, attrs, configs, numConfigs, &n);
Mathias Agopiancde87a32012-09-13 14:09:01 -0700268
Mathias Agopian722b98f2012-09-25 18:24:31 -0700269 if (n) {
270 if (attribute != EGL_NONE) {
271 for (int i=0 ; i<n ; i++) {
272 EGLint value = 0;
273 eglGetConfigAttrib(dpy, configs[i], attribute, &value);
274 if (wanted == value) {
275 *outConfig = configs[i];
276 delete [] configs;
277 return NO_ERROR;
278 }
279 }
280 } else {
281 // just pick the first one
282 *outConfig = configs[0];
Mathias Agopiana4912602012-07-12 14:25:33 -0700283 delete [] configs;
284 return NO_ERROR;
285 }
286 }
287 delete [] configs;
288 return NAME_NOT_FOUND;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800289}
290
Mathias Agopian722b98f2012-09-25 18:24:31 -0700291class EGLAttributeVector {
292 struct Attribute;
293 class Adder;
294 friend class Adder;
295 KeyedVector<Attribute, EGLint> mList;
296 struct Attribute {
297 Attribute() {};
298 Attribute(EGLint v) : v(v) { }
299 EGLint v;
300 bool operator < (const Attribute& other) const {
301 // this places EGL_NONE at the end
302 EGLint lhs(v);
303 EGLint rhs(other.v);
304 if (lhs == EGL_NONE) lhs = 0x7FFFFFFF;
305 if (rhs == EGL_NONE) rhs = 0x7FFFFFFF;
306 return lhs < rhs;
307 }
308 };
309 class Adder {
310 friend class EGLAttributeVector;
311 EGLAttributeVector& v;
312 EGLint attribute;
313 Adder(EGLAttributeVector& v, EGLint attribute)
314 : v(v), attribute(attribute) {
315 }
316 public:
317 void operator = (EGLint value) {
318 if (attribute != EGL_NONE) {
319 v.mList.add(attribute, value);
320 }
321 }
322 operator EGLint () const { return v.mList[attribute]; }
323 };
324public:
325 EGLAttributeVector() {
326 mList.add(EGL_NONE, EGL_NONE);
327 }
328 void remove(EGLint attribute) {
329 if (attribute != EGL_NONE) {
330 mList.removeItem(attribute);
331 }
332 }
333 Adder operator [] (EGLint attribute) {
334 return Adder(*this, attribute);
335 }
336 EGLint operator [] (EGLint attribute) const {
337 return mList[attribute];
338 }
339 // cast-operator to (EGLint const*)
340 operator EGLint const* () const { return &mList.keyAt(0).v; }
341};
342
Mathias Agopiana4912602012-07-12 14:25:33 -0700343EGLConfig SurfaceFlinger::selectEGLConfig(EGLDisplay display, EGLint nativeVisualId) {
344 // select our EGLConfig. It must support EGL_RECORDABLE_ANDROID if
345 // it is to be used with WIFI displays
346 EGLConfig config;
347 EGLint dummy;
348 status_t err;
Mathias Agopianda27af92012-09-13 18:17:13 -0700349
Mathias Agopian722b98f2012-09-25 18:24:31 -0700350 EGLAttributeVector attribs;
351 attribs[EGL_SURFACE_TYPE] = EGL_WINDOW_BIT;
352 attribs[EGL_RECORDABLE_ANDROID] = EGL_TRUE;
353 attribs[EGL_FRAMEBUFFER_TARGET_ANDROID] = EGL_TRUE;
354 attribs[EGL_RED_SIZE] = 8;
355 attribs[EGL_GREEN_SIZE] = 8;
356 attribs[EGL_BLUE_SIZE] = 8;
357
358 err = selectConfigForAttribute(display, attribs, EGL_NONE, EGL_NONE, &config);
359 if (!err)
360 goto success;
361
362 // maybe we failed because of EGL_FRAMEBUFFER_TARGET_ANDROID
363 ALOGW("no suitable EGLConfig found, trying without EGL_FRAMEBUFFER_TARGET_ANDROID");
364 attribs.remove(EGL_FRAMEBUFFER_TARGET_ANDROID);
365 err = selectConfigForAttribute(display, attribs,
366 EGL_NATIVE_VISUAL_ID, nativeVisualId, &config);
Jesse Hallf21cffa2012-09-19 21:00:49 -0700367 if (!err)
368 goto success;
369
370 // maybe we failed because of EGL_RECORDABLE_ANDROID
371 ALOGW("no suitable EGLConfig found, trying without EGL_RECORDABLE_ANDROID");
Mathias Agopian722b98f2012-09-25 18:24:31 -0700372 attribs.remove(EGL_RECORDABLE_ANDROID);
373 err = selectConfigForAttribute(display, attribs,
374 EGL_NATIVE_VISUAL_ID, nativeVisualId, &config);
Jesse Hallf21cffa2012-09-19 21:00:49 -0700375 if (!err)
376 goto success;
377
378 // allow less than 24-bit color; the non-gpu-accelerated emulator only
379 // supports 16-bit color
380 ALOGW("no suitable EGLConfig found, trying with 16-bit color allowed");
Mathias Agopian722b98f2012-09-25 18:24:31 -0700381 attribs.remove(EGL_RED_SIZE);
382 attribs.remove(EGL_GREEN_SIZE);
383 attribs.remove(EGL_BLUE_SIZE);
384 err = selectConfigForAttribute(display, attribs,
385 EGL_NATIVE_VISUAL_ID, nativeVisualId, &config);
Jesse Hallf21cffa2012-09-19 21:00:49 -0700386 if (!err)
387 goto success;
388
389 // this EGL is too lame for Android
390 ALOGE("no suitable EGLConfig found, giving up");
391
392 return 0;
393
394success:
395 if (eglGetConfigAttrib(display, config, EGL_CONFIG_CAVEAT, &dummy))
Mathias Agopiana4912602012-07-12 14:25:33 -0700396 ALOGW_IF(dummy == EGL_SLOW_CONFIG, "EGL_SLOW_CONFIG selected!");
Mathias Agopiana4912602012-07-12 14:25:33 -0700397 return config;
398}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800399
Mathias Agopiana4912602012-07-12 14:25:33 -0700400EGLContext SurfaceFlinger::createGLContext(EGLDisplay display, EGLConfig config) {
401 // Also create our EGLContext
402 EGLint contextAttributes[] = {
403#ifdef EGL_IMG_context_priority
404#ifdef HAS_CONTEXT_PRIORITY
405#warning "using EGL_IMG_context_priority"
406 EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG,
407#endif
408#endif
409 EGL_NONE, EGL_NONE
410 };
411 EGLContext ctxt = eglCreateContext(display, config, NULL, contextAttributes);
412 ALOGE_IF(ctxt==EGL_NO_CONTEXT, "EGLContext creation failed");
413 return ctxt;
414}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800415
Mathias Agopiancde87a32012-09-13 14:09:01 -0700416void SurfaceFlinger::initializeGL(EGLDisplay display) {
Mathias Agopiana4912602012-07-12 14:25:33 -0700417 GLExtensions& extensions(GLExtensions::getInstance());
418 extensions.initWithGLStrings(
419 glGetString(GL_VENDOR),
420 glGetString(GL_RENDERER),
421 glGetString(GL_VERSION),
422 glGetString(GL_EXTENSIONS),
423 eglQueryString(display, EGL_VENDOR),
424 eglQueryString(display, EGL_VERSION),
425 eglQueryString(display, EGL_EXTENSIONS));
Andreas Huber8b42e8a2010-08-16 08:49:37 -0700426
Mathias Agopiana4912602012-07-12 14:25:33 -0700427 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize);
428 glGetIntegerv(GL_MAX_VIEWPORT_DIMS, mMaxViewportDims);
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700429
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800430 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
Andreas Huber8b42e8a2010-08-16 08:49:37 -0700431 glPixelStorei(GL_PACK_ALIGNMENT, 4);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800432 glEnableClientState(GL_VERTEX_ARRAY);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800433 glShadeModel(GL_FLAT);
434 glDisable(GL_DITHER);
435 glDisable(GL_CULL_FACE);
436
Mathias Agopiana4912602012-07-12 14:25:33 -0700437 struct pack565 {
438 inline uint16_t operator() (int r, int g, int b) const {
439 return (r<<11)|(g<<5)|b;
440 }
441 } pack565;
442
Jamie Gennis9575f602011-10-07 14:51:16 -0700443 const uint16_t protTexData[] = { pack565(0x03, 0x03, 0x03) };
444 glGenTextures(1, &mProtectedTexName);
445 glBindTexture(GL_TEXTURE_2D, mProtectedTexName);
446 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
447 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
448 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
449 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
450 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1, 1, 0,
451 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, protTexData);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800452
Mathias Agopiana4912602012-07-12 14:25:33 -0700453 // print some debugging info
454 EGLint r,g,b,a;
455 eglGetConfigAttrib(display, mEGLConfig, EGL_RED_SIZE, &r);
456 eglGetConfigAttrib(display, mEGLConfig, EGL_GREEN_SIZE, &g);
457 eglGetConfigAttrib(display, mEGLConfig, EGL_BLUE_SIZE, &b);
458 eglGetConfigAttrib(display, mEGLConfig, EGL_ALPHA_SIZE, &a);
459 ALOGI("EGL informations:");
460 ALOGI("vendor : %s", extensions.getEglVendor());
461 ALOGI("version : %s", extensions.getEglVersion());
462 ALOGI("extensions: %s", extensions.getEglExtension());
463 ALOGI("Client API: %s", eglQueryString(display, EGL_CLIENT_APIS)?:"Not Supported");
464 ALOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, mEGLConfig);
465 ALOGI("OpenGL ES informations:");
466 ALOGI("vendor : %s", extensions.getVendor());
467 ALOGI("renderer : %s", extensions.getRenderer());
468 ALOGI("version : %s", extensions.getVersion());
469 ALOGI("extensions: %s", extensions.getExtension());
470 ALOGI("GL_MAX_TEXTURE_SIZE = %d", mMaxTextureSize);
471 ALOGI("GL_MAX_VIEWPORT_DIMS = %d x %d", mMaxViewportDims[0], mMaxViewportDims[1]);
472}
473
Mathias Agopiana4912602012-07-12 14:25:33 -0700474status_t SurfaceFlinger::readyToRun()
475{
476 ALOGI( "SurfaceFlinger's main thread ready to run. "
477 "Initializing graphics H/W...");
478
Jesse Hall692c7232012-11-08 15:41:56 -0800479 Mutex::Autolock _l(mStateLock);
480
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700481 // initialize EGL for the default display
Jesse Hall34a09ba2012-07-29 22:35:34 -0700482 mEGLDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
483 eglInitialize(mEGLDisplay, NULL, NULL);
Mathias Agopiana4912602012-07-12 14:25:33 -0700484
Andy McFaddenb0d1dd32012-09-10 14:08:09 -0700485 // Initialize the H/W composer object. There may or may not be an
486 // actual hardware composer underneath.
487 mHwc = new HWComposer(this,
488 *static_cast<HWComposer::EventHandler *>(this));
489
Mathias Agopiana4912602012-07-12 14:25:33 -0700490 // initialize the config and context
Mathias Agopiancde87a32012-09-13 14:09:01 -0700491 EGLint format = mHwc->getVisualID();
Jesse Hall34a09ba2012-07-29 22:35:34 -0700492 mEGLConfig = selectEGLConfig(mEGLDisplay, format);
493 mEGLContext = createGLContext(mEGLDisplay, mEGLConfig);
Mathias Agopiana4912602012-07-12 14:25:33 -0700494
Mathias Agopianed985572013-03-22 00:24:39 -0700495 // figure out which format we got
496 eglGetConfigAttrib(mEGLDisplay, mEGLConfig,
497 EGL_NATIVE_VISUAL_ID, &mEGLNativeVisualId);
498
Mathias Agopianda27af92012-09-13 18:17:13 -0700499 LOG_ALWAYS_FATAL_IF(mEGLContext == EGL_NO_CONTEXT,
500 "couldn't create EGLContext");
501
Mathias Agopiancde87a32012-09-13 14:09:01 -0700502 // initialize our non-virtual displays
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700503 for (size_t i=0 ; i<DisplayDevice::NUM_DISPLAY_TYPES ; i++) {
Mathias Agopianf5a33922012-09-19 18:16:22 -0700504 DisplayDevice::DisplayType type((DisplayDevice::DisplayType)i);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700505 // set-up the displays that are already connected
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700506 if (mHwc->isConnected(i) || type==DisplayDevice::DISPLAY_PRIMARY) {
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700507 // All non-virtual displays are currently considered secure.
508 bool isSecure = true;
Jesse Hall692c7232012-11-08 15:41:56 -0800509 createBuiltinDisplayLocked(type);
510 wp<IBinder> token = mBuiltinDisplays[i];
511
Mathias Agopianf5a33922012-09-19 18:16:22 -0700512 sp<DisplayDevice> hw = new DisplayDevice(this,
Jesse Hallffe1f192013-03-22 15:13:48 -0700513 type, allocateHwcDisplayId(type), isSecure, token,
514 new FramebufferSurface(*mHwc, i),
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700515 mEGLConfig);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700516 if (i > DisplayDevice::DISPLAY_PRIMARY) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700517 // FIXME: currently we don't get blank/unblank requests
Mathias Agopianf5a33922012-09-19 18:16:22 -0700518 // for displays other than the main display, so we always
519 // assume a connected display is unblanked.
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700520 ALOGD("marking display %d as acquired/unblanked", i);
Mathias Agopianf5a33922012-09-19 18:16:22 -0700521 hw->acquireScreen();
522 }
523 mDisplays.add(token, hw);
524 }
Mathias Agopiane57f2922012-08-09 16:29:12 -0700525 }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700526
Mathias Agopianf5a33922012-09-19 18:16:22 -0700527 // we need a GL context current in a few places, when initializing
528 // OpenGL ES (see below), or creating a layer,
529 // or when a texture is (asynchronously) destroyed, and for that
530 // we need a valid surface, so it's convenient to use the main display
531 // for that.
Mathias Agopiandb9b41f2012-10-15 16:51:41 -0700532 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopiancde87a32012-09-13 14:09:01 -0700533
Mathias Agopiana4912602012-07-12 14:25:33 -0700534 // initialize OpenGL ES
Mathias Agopiancde87a32012-09-13 14:09:01 -0700535 DisplayDevice::makeCurrent(mEGLDisplay, hw, mEGLContext);
536 initializeGL(mEGLDisplay);
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800537
Mathias Agopian028508c2012-07-25 21:12:12 -0700538 // start the EventThread
539 mEventThread = new EventThread(this);
540 mEventQueue.setEventThread(mEventThread);
541
Mathias Agopian92a979a2012-08-02 18:32:23 -0700542 // initialize our drawing state
543 mDrawingState = mCurrentState;
Mathias Agopian86303202012-07-24 22:46:10 -0700544
Mathias Agopiancde87a32012-09-13 14:09:01 -0700545
Mathias Agopiana4912602012-07-12 14:25:33 -0700546 // We're now ready to accept clients...
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800547 mReadyToRunBarrier.open();
548
Andy McFadden13a082e2012-08-24 10:16:42 -0700549 // set initial conditions (e.g. unblank default device)
550 initializeDisplays();
551
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700552 // start boot animation
Mathias Agopiana67e4182012-06-19 17:26:12 -0700553 startBootAnim();
Andreas Huber8b42e8a2010-08-16 08:49:37 -0700554
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800555 return NO_ERROR;
556}
557
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700558int32_t SurfaceFlinger::allocateHwcDisplayId(DisplayDevice::DisplayType type) {
559 return (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) ?
560 type : mHwc->allocateDisplayId();
561}
562
Mathias Agopiana67e4182012-06-19 17:26:12 -0700563void SurfaceFlinger::startBootAnim() {
564 // start boot animation
565 property_set("service.bootanim.exit", "0");
566 property_set("ctl.start", "bootanim");
567}
568
Mathias Agopiana4912602012-07-12 14:25:33 -0700569uint32_t SurfaceFlinger::getMaxTextureSize() const {
570 return mMaxTextureSize;
571}
572
573uint32_t SurfaceFlinger::getMaxViewportDims() const {
574 return mMaxViewportDims[0] < mMaxViewportDims[1] ?
575 mMaxViewportDims[0] : mMaxViewportDims[1];
576}
577
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800578// ----------------------------------------------------------------------------
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800579
Jamie Gennis582270d2011-08-17 18:19:00 -0700580bool SurfaceFlinger::authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800581 const sp<IGraphicBufferProducer>& bufferProducer) const {
Jamie Gennis134f0422011-03-08 12:18:54 -0800582 Mutex::Autolock _l(mStateLock);
Andy McFadden2adaf042012-12-18 09:49:45 -0800583 sp<IBinder> surfaceTextureBinder(bufferProducer->asBinder());
Mathias Agopian67106042013-03-14 19:18:13 -0700584 return mGraphicBufferProducerList.indexOf(surfaceTextureBinder) >= 0;
Jamie Gennis134f0422011-03-08 12:18:54 -0800585}
586
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700587status_t SurfaceFlinger::getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info) {
Jesse Hall692c7232012-11-08 15:41:56 -0800588 int32_t type = NAME_NOT_FOUND;
Mathias Agopian1604f772012-09-18 21:54:42 -0700589 for (int i=0 ; i<DisplayDevice::NUM_DISPLAY_TYPES ; i++) {
Jesse Hall692c7232012-11-08 15:41:56 -0800590 if (display == mBuiltinDisplays[i]) {
Mathias Agopian1604f772012-09-18 21:54:42 -0700591 type = i;
592 break;
593 }
594 }
595
596 if (type < 0) {
597 return type;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700598 }
Mathias Agopian8b736f12012-08-13 17:54:26 -0700599
600 const HWComposer& hwc(getHwComposer());
Mathias Agopian1604f772012-09-18 21:54:42 -0700601 float xdpi = hwc.getDpiX(type);
602 float ydpi = hwc.getDpiY(type);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700603
604 // TODO: Not sure if display density should handled by SF any longer
605 class Density {
606 static int getDensityFromProperty(char const* propName) {
607 char property[PROPERTY_VALUE_MAX];
608 int density = 0;
609 if (property_get(propName, property, NULL) > 0) {
610 density = atoi(property);
611 }
612 return density;
613 }
614 public:
615 static int getEmuDensity() {
616 return getDensityFromProperty("qemu.sf.lcd_density"); }
617 static int getBuildDensity() {
618 return getDensityFromProperty("ro.sf.lcd_density"); }
619 };
Mathias Agopian1604f772012-09-18 21:54:42 -0700620
621 if (type == DisplayDevice::DISPLAY_PRIMARY) {
622 // The density of the device is provided by a build property
623 float density = Density::getBuildDensity() / 160.0f;
624 if (density == 0) {
625 // the build doesn't provide a density -- this is wrong!
626 // use xdpi instead
627 ALOGE("ro.sf.lcd_density must be defined as a build property");
628 density = xdpi / 160.0f;
629 }
630 if (Density::getEmuDensity()) {
631 // if "qemu.sf.lcd_density" is specified, it overrides everything
632 xdpi = ydpi = density = Density::getEmuDensity();
633 density /= 160.0f;
634 }
635 info->density = density;
636
637 // TODO: this needs to go away (currently needed only by webkit)
638 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
639 info->orientation = hw->getOrientation();
640 getPixelFormatInfo(hw->getFormat(), &info->pixelFormatInfo);
641 } else {
642 // TODO: where should this value come from?
643 static const int TV_DENSITY = 213;
644 info->density = TV_DENSITY / 160.0f;
645 info->orientation = 0;
Mathias Agopian8b736f12012-08-13 17:54:26 -0700646 }
647
Mathias Agopian1604f772012-09-18 21:54:42 -0700648 info->w = hwc.getWidth(type);
649 info->h = hwc.getHeight(type);
Mathias Agopian8b736f12012-08-13 17:54:26 -0700650 info->xdpi = xdpi;
651 info->ydpi = ydpi;
Mathias Agopian1604f772012-09-18 21:54:42 -0700652 info->fps = float(1e9 / hwc.getRefreshPeriod(type));
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700653
654 // All non-virtual displays are currently considered secure.
655 info->secure = true;
656
Mathias Agopian888c8222012-08-04 21:10:38 -0700657 return NO_ERROR;
Mathias Agopianc666cae2012-07-25 18:56:13 -0700658}
659
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800660// ----------------------------------------------------------------------------
661
662sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection() {
Mathias Agopian8aedd472012-01-24 16:39:14 -0800663 return mEventThread->createEventConnection();
Mathias Agopianbb641242010-05-18 17:06:55 -0700664}
665
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800666// ----------------------------------------------------------------------------
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800667
668void SurfaceFlinger::waitForEvent() {
669 mEventQueue.waitMessage();
670}
671
672void SurfaceFlinger::signalTransaction() {
673 mEventQueue.invalidate();
674}
675
676void SurfaceFlinger::signalLayerUpdate() {
677 mEventQueue.invalidate();
678}
679
680void SurfaceFlinger::signalRefresh() {
681 mEventQueue.refresh();
682}
683
684status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
685 nsecs_t reltime, uint32_t flags) {
686 return mEventQueue.postMessage(msg, reltime);
687}
688
689status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
690 nsecs_t reltime, uint32_t flags) {
691 status_t res = mEventQueue.postMessage(msg, reltime);
692 if (res == NO_ERROR) {
693 msg->wait();
694 }
695 return res;
696}
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800697
Mathias Agopian4fec8732012-06-29 14:12:52 -0700698bool SurfaceFlinger::threadLoop() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800699 waitForEvent();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800700 return true;
701}
702
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700703void SurfaceFlinger::onVSyncReceived(int type, nsecs_t timestamp) {
Andy McFadden43601a22012-09-11 15:15:13 -0700704 if (mEventThread == NULL) {
705 // This is a temporary workaround for b/7145521. A non-null pointer
706 // does not mean EventThread has finished initializing, so this
707 // is not a correct fix.
708 ALOGW("WARNING: EventThread not started, ignoring vsync");
709 return;
710 }
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700711 if (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) {
712 // we should only receive DisplayDevice::DisplayType from the vsync callback
Mathias Agopian148994e2012-09-19 17:31:36 -0700713 mEventThread->onVSyncReceived(type, timestamp);
714 }
715}
716
717void SurfaceFlinger::onHotplugReceived(int type, bool connected) {
718 if (mEventThread == NULL) {
719 // This is a temporary workaround for b/7145521. A non-null pointer
720 // does not mean EventThread has finished initializing, so this
721 // is not a correct fix.
722 ALOGW("WARNING: EventThread not started, ignoring hotplug");
723 return;
724 }
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700725
Mathias Agopian148994e2012-09-19 17:31:36 -0700726 if (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) {
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700727 Mutex::Autolock _l(mStateLock);
Jesse Hall692c7232012-11-08 15:41:56 -0800728 if (connected) {
729 createBuiltinDisplayLocked((DisplayDevice::DisplayType)type);
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700730 } else {
Jesse Hall692c7232012-11-08 15:41:56 -0800731 mCurrentState.displays.removeItem(mBuiltinDisplays[type]);
732 mBuiltinDisplays[type].clear();
Mathias Agopian9e2463e2012-09-21 18:26:16 -0700733 }
734 setTransactionFlags(eDisplayTransactionNeeded);
735
Andy McFadden9e9689c2012-10-10 18:17:51 -0700736 // Defer EventThread notification until SF has updated mDisplays.
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700737 }
Mathias Agopian86303202012-07-24 22:46:10 -0700738}
739
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700740void SurfaceFlinger::eventControl(int disp, int event, int enabled) {
741 getHwComposer().eventControl(disp, event, enabled);
Mathias Agopian86303202012-07-24 22:46:10 -0700742}
743
Mathias Agopian4fec8732012-06-29 14:12:52 -0700744void SurfaceFlinger::onMessageReceived(int32_t what) {
Jamie Gennis1c8e95c2012-02-23 19:27:23 -0800745 ATRACE_CALL();
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800746 switch (what) {
Mathias Agopian9eb1f052013-04-10 16:27:17 -0700747 case MessageQueue::TRANSACTION:
748 handleMessageTransaction();
749 break;
Mathias Agopian4fec8732012-06-29 14:12:52 -0700750 case MessageQueue::INVALIDATE:
751 handleMessageTransaction();
752 handleMessageInvalidate();
753 signalRefresh();
754 break;
755 case MessageQueue::REFRESH:
756 handleMessageRefresh();
757 break;
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800758 }
759}
760
Mathias Agopian4fec8732012-06-29 14:12:52 -0700761void SurfaceFlinger::handleMessageTransaction() {
Mathias Agopiane57f2922012-08-09 16:29:12 -0700762 uint32_t transactionFlags = peekTransactionFlags(eTransactionMask);
Mathias Agopian4fec8732012-06-29 14:12:52 -0700763 if (transactionFlags) {
Mathias Agopian87baae12012-07-31 12:38:26 -0700764 handleTransaction(transactionFlags);
Mathias Agopian4fec8732012-06-29 14:12:52 -0700765 }
766}
767
768void SurfaceFlinger::handleMessageInvalidate() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700769 ATRACE_CALL();
Mathias Agopian87baae12012-07-31 12:38:26 -0700770 handlePageFlip();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700771}
772
773void SurfaceFlinger::handleMessageRefresh() {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700774 ATRACE_CALL();
775 preComposition();
776 rebuildLayerStacks();
777 setUpHWComposer();
778 doDebugFlashRegions();
779 doComposition();
780 postComposition();
781}
Mathias Agopian4fec8732012-06-29 14:12:52 -0700782
Mathias Agopiancd60f992012-08-16 16:28:27 -0700783void SurfaceFlinger::doDebugFlashRegions()
784{
785 // is debugging enabled
786 if (CC_LIKELY(!mDebugRegion))
787 return;
788
789 const bool repaintEverything = mRepaintEverything;
790 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
791 const sp<DisplayDevice>& hw(mDisplays[dpy]);
792 if (hw->canDraw()) {
793 // transform the dirty region into this screen's coordinate space
794 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
795 if (!dirtyRegion.isEmpty()) {
796 // redraw the whole screen
797 doComposeSurfaces(hw, Region(hw->bounds()));
798
799 // and draw the dirty region
800 glDisable(GL_TEXTURE_EXTERNAL_OES);
801 glDisable(GL_TEXTURE_2D);
802 glDisable(GL_BLEND);
803 glColor4f(1, 0, 1, 1);
804 const int32_t height = hw->getHeight();
805 Region::const_iterator it = dirtyRegion.begin();
806 Region::const_iterator const end = dirtyRegion.end();
807 while (it != end) {
808 const Rect& r = *it++;
809 GLfloat vertices[][2] = {
Andy McFadden8f06a8c2013-01-11 10:24:34 -0800810 { (GLfloat) r.left, (GLfloat) (height - r.top) },
811 { (GLfloat) r.left, (GLfloat) (height - r.bottom) },
812 { (GLfloat) r.right, (GLfloat) (height - r.bottom) },
813 { (GLfloat) r.right, (GLfloat) (height - r.top) }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700814 };
815 glVertexPointer(2, GL_FLOAT, 0, vertices);
816 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
817 }
818 hw->compositionComplete();
Mathias Agopianda27af92012-09-13 18:17:13 -0700819 hw->swapBuffers(getHwComposer());
Mathias Agopiancd60f992012-08-16 16:28:27 -0700820 }
821 }
822 }
823
824 postFramebuffer();
825
826 if (mDebugRegion > 1) {
827 usleep(mDebugRegion * 1000);
828 }
Mathias Agopianbb53b0e2012-09-24 21:27:29 -0700829
830 HWComposer& hwc(getHwComposer());
831 if (hwc.initCheck() == NO_ERROR) {
832 status_t err = hwc.prepare();
833 ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
834 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700835}
836
837void SurfaceFlinger::preComposition()
838{
839 bool needExtraInvalidate = false;
840 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
841 const size_t count = currentLayers.size();
842 for (size_t i=0 ; i<count ; i++) {
843 if (currentLayers[i]->onPreComposition()) {
844 needExtraInvalidate = true;
845 }
846 }
847 if (needExtraInvalidate) {
848 signalLayerUpdate();
849 }
850}
851
852void SurfaceFlinger::postComposition()
853{
854 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
855 const size_t count = currentLayers.size();
856 for (size_t i=0 ; i<count ; i++) {
857 currentLayers[i]->onPostComposition();
858 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800859
860 if (mAnimCompositionPending) {
861 mAnimCompositionPending = false;
862
863 const HWComposer& hwc = getHwComposer();
864 sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY);
Jesse Halla9a1b002013-02-27 16:39:25 -0800865 if (presentFence->isValid()) {
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800866 mAnimFrameTracker.setActualPresentFence(presentFence);
867 } else {
868 // The HWC doesn't support present fences, so use the refresh
869 // timestamp instead.
870 nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
871 mAnimFrameTracker.setActualPresentTime(presentTime);
872 }
873 mAnimFrameTracker.advanceFrame();
874 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700875}
876
877void SurfaceFlinger::rebuildLayerStacks() {
878 // rebuild the visible layer list per screen
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700879 if (CC_UNLIKELY(mVisibleRegionsDirty)) {
Mathias Agopiancd60f992012-08-16 16:28:27 -0700880 ATRACE_CALL();
Mathias Agopian87baae12012-07-31 12:38:26 -0700881 mVisibleRegionsDirty = false;
882 invalidateHwcGeometry();
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700883
Mathias Agopian87baae12012-07-31 12:38:26 -0700884 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
Mathias Agopian92a979a2012-08-02 18:32:23 -0700885 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700886 Region opaqueRegion;
887 Region dirtyRegion;
Mathias Agopian13127d82013-03-05 17:47:11 -0800888 Vector< sp<Layer> > layersSortedByZ;
Mathias Agopian42977342012-08-05 00:40:46 -0700889 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700890 const Transform& tr(hw->getTransform());
891 const Rect bounds(hw->getBounds());
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700892 if (hw->canDraw()) {
893 SurfaceFlinger::computeVisibleRegions(currentLayers,
894 hw->getLayerStack(), dirtyRegion, opaqueRegion);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700895
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700896 const size_t count = currentLayers.size();
897 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800898 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700899 const Layer::State& s(layer->drawingState());
900 if (s.layerStack == hw->getLayerStack()) {
Jesse Halla8026d22012-09-25 13:25:04 -0700901 Region drawRegion(tr.transform(
902 layer->visibleNonTransparentRegion));
903 drawRegion.andSelf(bounds);
904 if (!drawRegion.isEmpty()) {
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700905 layersSortedByZ.add(layer);
906 }
Mathias Agopian87baae12012-07-31 12:38:26 -0700907 }
908 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700909 }
Mathias Agopian42977342012-08-05 00:40:46 -0700910 hw->setVisibleLayersSortedByZ(layersSortedByZ);
Mathias Agopian7e7ed7f2012-08-28 14:20:00 -0700911 hw->undefinedRegion.set(bounds);
912 hw->undefinedRegion.subtractSelf(tr.transform(opaqueRegion));
913 hw->dirtyRegion.orSelf(dirtyRegion);
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700914 }
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700915 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700916}
Mathias Agopian3b1d2b62012-07-11 13:48:17 -0700917
Mathias Agopiancd60f992012-08-16 16:28:27 -0700918void SurfaceFlinger::setUpHWComposer() {
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700919 HWComposer& hwc(getHwComposer());
920 if (hwc.initCheck() == NO_ERROR) {
921 // build the h/w work list
Jamie Gennisa4310c82012-09-25 20:26:00 -0700922 if (CC_UNLIKELY(mHwWorkListDirty)) {
923 mHwWorkListDirty = false;
924 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
925 sp<const DisplayDevice> hw(mDisplays[dpy]);
926 const int32_t id = hw->getHwcDisplayId();
927 if (id >= 0) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800928 const Vector< sp<Layer> >& currentLayers(
Jamie Gennisa4310c82012-09-25 20:26:00 -0700929 hw->getVisibleLayersSortedByZ());
930 const size_t count = currentLayers.size();
931 if (hwc.createWorkList(id, count) == NO_ERROR) {
932 HWComposer::LayerListIterator cur = hwc.begin(id);
933 const HWComposer::LayerListIterator end = hwc.end(id);
934 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800935 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennisa4310c82012-09-25 20:26:00 -0700936 layer->setGeometry(hw, *cur);
937 if (mDebugDisableHWC || mDebugRegion) {
938 cur->setSkip(true);
939 }
940 }
941 }
942 }
943 }
944 }
945
946 // set the per-frame data
Mathias Agopian92a979a2012-08-02 18:32:23 -0700947 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -0700948 sp<const DisplayDevice> hw(mDisplays[dpy]);
Mathias Agopiane60b0682012-08-21 23:34:09 -0700949 const int32_t id = hw->getHwcDisplayId();
950 if (id >= 0) {
Mathias Agopian13127d82013-03-05 17:47:11 -0800951 const Vector< sp<Layer> >& currentLayers(
Mathias Agopiancd60f992012-08-16 16:28:27 -0700952 hw->getVisibleLayersSortedByZ());
Mathias Agopiane60b0682012-08-21 23:34:09 -0700953 const size_t count = currentLayers.size();
Jamie Gennisa4310c82012-09-25 20:26:00 -0700954 HWComposer::LayerListIterator cur = hwc.begin(id);
955 const HWComposer::LayerListIterator end = hwc.end(id);
956 for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) {
957 /*
958 * update the per-frame h/w composer data for each layer
959 * and build the transparent region of the FB
960 */
Mathias Agopian13127d82013-03-05 17:47:11 -0800961 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennisa4310c82012-09-25 20:26:00 -0700962 layer->setPerFrameData(hw, *cur);
Mathias Agopian1e260872012-08-08 18:35:12 -0700963 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700964 }
Mathias Agopian87baae12012-07-31 12:38:26 -0700965 }
Jamie Gennisa4310c82012-09-25 20:26:00 -0700966
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700967 status_t err = hwc.prepare();
968 ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
969 }
Mathias Agopiancd60f992012-08-16 16:28:27 -0700970}
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700971
Mathias Agopiancd60f992012-08-16 16:28:27 -0700972void SurfaceFlinger::doComposition() {
973 ATRACE_CALL();
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700974 const bool repaintEverything = android_atomic_and(0, &mRepaintEverything);
Mathias Agopian92a979a2012-08-02 18:32:23 -0700975 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -0700976 const sp<DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopiancd60f992012-08-16 16:28:27 -0700977 if (hw->canDraw()) {
978 // transform the dirty region into this screen's coordinate space
979 const Region dirtyRegion(hw->getDirtyRegion(repaintEverything));
Mathias Agopian02b95102012-11-05 17:50:57 -0800980
981 // repaint the framebuffer (if needed)
982 doDisplayComposition(hw, dirtyRegion);
983
Mathias Agopiancd60f992012-08-16 16:28:27 -0700984 hw->dirtyRegion.clear();
985 hw->flip(hw->swapRegion);
986 hw->swapRegion.clear();
Mathias Agopian87baae12012-07-31 12:38:26 -0700987 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700988 // inform the h/w that we're done compositing
Mathias Agopian42977342012-08-05 00:40:46 -0700989 hw->compositionComplete();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700990 }
Mathias Agopian52bbb1a2012-07-31 19:01:53 -0700991 postFramebuffer();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700992}
993
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800994void SurfaceFlinger::postFramebuffer()
995{
Mathias Agopian841cde52012-03-01 15:44:37 -0800996 ATRACE_CALL();
Mathias Agopianb048cef2012-02-04 15:44:04 -0800997
Mathias Agopiana44b0412011-10-16 18:46:35 -0700998 const nsecs_t now = systemTime();
999 mDebugInSwapBuffers = now;
Jesse Hallc5c5a142012-07-02 16:49:28 -07001000
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001001 HWComposer& hwc(getHwComposer());
Jesse Hallef194142012-06-14 14:45:17 -07001002 if (hwc.initCheck() == NO_ERROR) {
Mathias Agopian2a231842012-09-24 18:12:35 -07001003 if (!hwc.supportsFramebufferTarget()) {
1004 // EGL spec says:
1005 // "surface must be bound to the calling thread's current context,
1006 // for the current rendering API."
1007 DisplayDevice::makeCurrent(mEGLDisplay,
1008 getDefaultDisplayDevice(), mEGLContext);
1009 }
Mathias Agopiane60b0682012-08-21 23:34:09 -07001010 hwc.commit();
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001011 }
1012
Mathias Agopian92a979a2012-08-02 18:32:23 -07001013 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001014 sp<const DisplayDevice> hw(mDisplays[dpy]);
Mathias Agopian13127d82013-03-05 17:47:11 -08001015 const Vector< sp<Layer> >& currentLayers(hw->getVisibleLayersSortedByZ());
Mathias Agopianda27af92012-09-13 18:17:13 -07001016 hw->onSwapBuffersCompleted(hwc);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001017 const size_t count = currentLayers.size();
Mathias Agopiane60b0682012-08-21 23:34:09 -07001018 int32_t id = hw->getHwcDisplayId();
1019 if (id >=0 && hwc.initCheck() == NO_ERROR) {
Mathias Agopian1e260872012-08-08 18:35:12 -07001020 HWComposer::LayerListIterator cur = hwc.begin(id);
1021 const HWComposer::LayerListIterator end = hwc.end(id);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001022 for (size_t i = 0; cur != end && i < count; ++i, ++cur) {
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001023 currentLayers[i]->onLayerDisplayed(hw, &*cur);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001024 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001025 } else {
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001026 for (size_t i = 0; i < count; i++) {
Mathias Agopiand3ee2312012-08-02 14:01:42 -07001027 currentLayers[i]->onLayerDisplayed(hw, NULL);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001028 }
Jesse Hallef194142012-06-14 14:45:17 -07001029 }
Jamie Gennise8696a42012-01-15 18:54:57 -08001030 }
1031
Mathias Agopiana44b0412011-10-16 18:46:35 -07001032 mLastSwapBufferTime = systemTime() - now;
1033 mDebugInSwapBuffers = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001034}
1035
Mathias Agopian87baae12012-07-31 12:38:26 -07001036void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001037{
Mathias Agopian841cde52012-03-01 15:44:37 -08001038 ATRACE_CALL();
1039
Mathias Agopianca4d3602011-05-19 15:38:14 -07001040 Mutex::Autolock _l(mStateLock);
1041 const nsecs_t now = systemTime();
1042 mDebugInTransaction = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001043
Mathias Agopianca4d3602011-05-19 15:38:14 -07001044 // Here we're guaranteed that some transaction flags are set
1045 // so we can call handleTransactionLocked() unconditionally.
1046 // We call getTransactionFlags(), which will also clear the flags,
1047 // with mStateLock held to guarantee that mCurrentState won't change
1048 // until the transaction is committed.
Mathias Agopian4da75192010-08-10 17:19:56 -07001049
Mathias Agopiane57f2922012-08-09 16:29:12 -07001050 transactionFlags = getTransactionFlags(eTransactionMask);
Mathias Agopian87baae12012-07-31 12:38:26 -07001051 handleTransactionLocked(transactionFlags);
Mathias Agopiandea20b12011-05-03 17:04:02 -07001052
Mathias Agopianca4d3602011-05-19 15:38:14 -07001053 mLastTransactionTime = systemTime() - now;
1054 mDebugInTransaction = 0;
1055 invalidateHwcGeometry();
1056 // here the transaction has been committed
Mathias Agopian3d579642009-06-04 18:46:21 -07001057}
1058
Mathias Agopian87baae12012-07-31 12:38:26 -07001059void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian3d579642009-06-04 18:46:21 -07001060{
1061 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001062 const size_t count = currentLayers.size();
1063
1064 /*
1065 * Traversal of the children
1066 * (perform the transaction for each of them if needed)
1067 */
1068
Mathias Agopian3559b072012-08-15 13:46:03 -07001069 if (transactionFlags & eTraversalNeeded) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001070 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001071 const sp<Layer>& layer(currentLayers[i]);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001072 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
1073 if (!trFlags) continue;
1074
1075 const uint32_t flags = layer->doTransaction(0);
1076 if (flags & Layer::eVisibleRegion)
1077 mVisibleRegionsDirty = true;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001078 }
1079 }
1080
1081 /*
Mathias Agopian3559b072012-08-15 13:46:03 -07001082 * Perform display own transactions if needed
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001083 */
1084
Mathias Agopiane57f2922012-08-09 16:29:12 -07001085 if (transactionFlags & eDisplayTransactionNeeded) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001086 // here we take advantage of Vector's copy-on-write semantics to
1087 // improve performance by skipping the transaction entirely when
1088 // know that the lists are identical
Mathias Agopiane57f2922012-08-09 16:29:12 -07001089 const KeyedVector< wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays);
1090 const KeyedVector< wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001091 if (!curr.isIdenticalTo(draw)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001092 mVisibleRegionsDirty = true;
Mathias Agopian92a979a2012-08-02 18:32:23 -07001093 const size_t cc = curr.size();
Mathias Agopian93997a82012-08-29 17:30:36 -07001094 size_t dc = draw.size();
Mathias Agopian92a979a2012-08-02 18:32:23 -07001095
1096 // find the displays that were removed
1097 // (ie: in drawing state but not in current state)
1098 // also handle displays that changed
1099 // (ie: displays that are in both lists)
1100 for (size_t i=0 ; i<dc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001101 const ssize_t j = curr.indexOfKey(draw.keyAt(i));
1102 if (j < 0) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001103 // in drawing state but not in current state
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001104 if (!draw[i].isMainDisplay()) {
Andy McFadden27ec5732012-10-02 19:04:45 -07001105 // Call makeCurrent() on the primary display so we can
1106 // be sure that nothing associated with this display
1107 // is current.
Jesse Hall02d86562013-03-25 14:43:23 -07001108 const sp<const DisplayDevice> defaultDisplay(getDefaultDisplayDevice());
1109 DisplayDevice::makeCurrent(mEGLDisplay, defaultDisplay, mEGLContext);
1110 sp<DisplayDevice> hw(getDisplayDevice(draw.keyAt(i)));
1111 if (hw != NULL)
1112 hw->disconnect(getHwComposer());
Jesse Hall7adb0f82013-03-06 16:13:49 -08001113 if (draw[i].type < DisplayDevice::NUM_DISPLAY_TYPES)
1114 mEventThread->onHotplugReceived(draw[i].type, false);
Jesse Hall02d86562013-03-25 14:43:23 -07001115 mDisplays.removeItem(draw.keyAt(i));
Mathias Agopian92a979a2012-08-02 18:32:23 -07001116 } else {
1117 ALOGW("trying to remove the main display");
1118 }
1119 } else {
1120 // this display is in both lists. see if something changed.
Mathias Agopiane57f2922012-08-09 16:29:12 -07001121 const DisplayDeviceState& state(curr[j]);
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001122 const wp<IBinder>& display(curr.keyAt(j));
Mathias Agopian111b2d82012-08-16 20:52:17 -07001123 if (state.surface->asBinder() != draw[i].surface->asBinder()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001124 // changing the surface is like destroying and
Mathias Agopian93997a82012-08-29 17:30:36 -07001125 // recreating the DisplayDevice, so we just remove it
1126 // from the drawing state, so that it get re-added
1127 // below.
Jesse Hall02d86562013-03-25 14:43:23 -07001128 sp<DisplayDevice> hw(getDisplayDevice(display));
1129 if (hw != NULL)
1130 hw->disconnect(getHwComposer());
Mathias Agopian93997a82012-08-29 17:30:36 -07001131 mDisplays.removeItem(display);
1132 mDrawingState.displays.removeItemsAt(i);
1133 dc--; i--;
1134 // at this point we must loop to the next item
1135 continue;
1136 }
Mathias Agopiane57f2922012-08-09 16:29:12 -07001137
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07001138 const sp<DisplayDevice> disp(getDisplayDevice(display));
Mathias Agopian93997a82012-08-29 17:30:36 -07001139 if (disp != NULL) {
1140 if (state.layerStack != draw[i].layerStack) {
1141 disp->setLayerStack(state.layerStack);
1142 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07001143 if ((state.orientation != draw[i].orientation)
1144 || (state.viewport != draw[i].viewport)
1145 || (state.frame != draw[i].frame))
1146 {
1147 disp->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001148 state.viewport, state.frame);
Mathias Agopian93997a82012-08-29 17:30:36 -07001149 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001150 }
1151 }
1152 }
1153
1154 // find displays that were added
1155 // (ie: in current state but not in drawing state)
1156 for (size_t i=0 ; i<cc ; i++) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001157 if (draw.indexOfKey(curr.keyAt(i)) < 0) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001158 const DisplayDeviceState& state(curr[i]);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001159
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001160 sp<DisplaySurface> dispSurface;
Jesse Hall02d86562013-03-25 14:43:23 -07001161 int32_t hwcDisplayId = -1;
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001162 if (state.isVirtualDisplay()) {
Jesse Hall02d86562013-03-25 14:43:23 -07001163 // Virtual displays without a surface are dormant:
1164 // they have external state (layer stack, projection,
1165 // etc.) but no internal state (i.e. a DisplayDevice).
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001166 if (state.surface != NULL) {
Jesse Hall02d86562013-03-25 14:43:23 -07001167 hwcDisplayId = allocateHwcDisplayId(state.type);
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001168 dispSurface = new VirtualDisplaySurface(
Jesse Hallffe1f192013-03-22 15:13:48 -07001169 *mHwc, hwcDisplayId, state.surface,
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001170 state.displayName);
1171 }
1172 } else {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001173 ALOGE_IF(state.surface!=NULL,
1174 "adding a supported display, but rendering "
1175 "surface is provided (%p), ignoring it",
1176 state.surface.get());
Jesse Hall02d86562013-03-25 14:43:23 -07001177 hwcDisplayId = allocateHwcDisplayId(state.type);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001178 // for supported (by hwc) displays we provide our
1179 // own rendering surface
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001180 dispSurface = new FramebufferSurface(*mHwc, state.type);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001181 }
1182
1183 const wp<IBinder>& display(curr.keyAt(i));
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001184 if (dispSurface != NULL) {
Mathias Agopiancde87a32012-09-13 14:09:01 -07001185 sp<DisplayDevice> hw = new DisplayDevice(this,
Jesse Hallffe1f192013-03-22 15:13:48 -07001186 state.type, hwcDisplayId, state.isSecure,
1187 display, dispSurface, mEGLConfig);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001188 hw->setLayerStack(state.layerStack);
1189 hw->setProjection(state.orientation,
Jeff Brown4fb39992012-09-07 12:55:10 -07001190 state.viewport, state.frame);
Andy McFadden8dfa92f2012-09-17 18:27:17 -07001191 hw->setDisplayName(state.displayName);
Mathias Agopiancde87a32012-09-13 14:09:01 -07001192 mDisplays.add(display, hw);
Jesse Hall1c569c42013-04-05 13:44:52 -07001193 if (state.isVirtualDisplay()) {
1194 if (hwcDisplayId >= 0) {
1195 mHwc->setVirtualDisplayProperties(hwcDisplayId,
1196 hw->getWidth(), hw->getHeight(),
1197 hw->getFormat());
1198 }
1199 } else {
Jesse Hall7adb0f82013-03-06 16:13:49 -08001200 mEventThread->onHotplugReceived(state.type, true);
Jesse Hall1c569c42013-04-05 13:44:52 -07001201 }
Mathias Agopian93997a82012-08-29 17:30:36 -07001202 }
Mathias Agopian92a979a2012-08-02 18:32:23 -07001203 }
1204 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001205 }
Mathias Agopian3559b072012-08-15 13:46:03 -07001206 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001207
Mathias Agopian84300952012-11-21 16:02:13 -08001208 if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) {
1209 // The transform hint might have changed for some layers
1210 // (either because a display has changed, or because a layer
1211 // as changed).
1212 //
1213 // Walk through all the layers in currentLayers,
1214 // and update their transform hint.
1215 //
1216 // If a layer is visible only on a single display, then that
1217 // display is used to calculate the hint, otherwise we use the
1218 // default display.
1219 //
1220 // NOTE: we do this here, rather than in rebuildLayerStacks() so that
1221 // the hint is set before we acquire a buffer from the surface texture.
1222 //
1223 // NOTE: layer transactions have taken place already, so we use their
1224 // drawing state. However, SurfaceFlinger's own transaction has not
1225 // happened yet, so we must use the current state layer list
1226 // (soon to become the drawing state list).
1227 //
1228 sp<const DisplayDevice> disp;
1229 uint32_t currentlayerStack = 0;
1230 for (size_t i=0; i<count; i++) {
1231 // NOTE: we rely on the fact that layers are sorted by
1232 // layerStack first (so we don't have to traverse the list
1233 // of displays for every layer).
Mathias Agopian13127d82013-03-05 17:47:11 -08001234 const sp<Layer>& layer(currentLayers[i]);
1235 uint32_t layerStack = layer->drawingState().layerStack;
Mathias Agopian84300952012-11-21 16:02:13 -08001236 if (i==0 || currentlayerStack != layerStack) {
1237 currentlayerStack = layerStack;
1238 // figure out if this layerstack is mirrored
1239 // (more than one display) if so, pick the default display,
1240 // if not, pick the only display it's on.
1241 disp.clear();
1242 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
1243 sp<const DisplayDevice> hw(mDisplays[dpy]);
1244 if (hw->getLayerStack() == currentlayerStack) {
1245 if (disp == NULL) {
1246 disp = hw;
1247 } else {
Chet Haase91d25932013-04-11 15:24:55 -07001248 disp = NULL;
Mathias Agopian84300952012-11-21 16:02:13 -08001249 break;
1250 }
1251 }
1252 }
1253 }
Chet Haase91d25932013-04-11 15:24:55 -07001254 if (disp == NULL) {
1255 // NOTE: TEMPORARY FIX ONLY. Real fix should cause layers to
1256 // redraw after transform hint changes. See bug 8508397.
1257
1258 // could be null when this layer is using a layerStack
1259 // that is not visible on any display. Also can occur at
1260 // screen off/on times.
1261 disp = getDefaultDisplayDevice();
Mathias Agopian84300952012-11-21 16:02:13 -08001262 }
Chet Haase91d25932013-04-11 15:24:55 -07001263 layer->updateTransformHint(disp);
Mathias Agopian84300952012-11-21 16:02:13 -08001264 }
1265 }
1266
1267
Mathias Agopian3559b072012-08-15 13:46:03 -07001268 /*
1269 * Perform our own transaction if needed
1270 */
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001271
Mathias Agopiancd60f992012-08-16 16:28:27 -07001272 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
1273 if (currentLayers.size() > previousLayers.size()) {
Mathias Agopian3559b072012-08-15 13:46:03 -07001274 // layers have been added
1275 mVisibleRegionsDirty = true;
1276 }
1277
1278 // some layers might have been removed, so
1279 // we need to update the regions they're exposing.
1280 if (mLayersRemoved) {
1281 mLayersRemoved = false;
1282 mVisibleRegionsDirty = true;
Mathias Agopian3559b072012-08-15 13:46:03 -07001283 const size_t count = previousLayers.size();
1284 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001285 const sp<Layer>& layer(previousLayers[i]);
Mathias Agopian3559b072012-08-15 13:46:03 -07001286 if (currentLayers.indexOf(layer) < 0) {
1287 // this layer is not visible anymore
1288 // TODO: we could traverse the tree from front to back and
1289 // compute the actual visible region
1290 // TODO: we could cache the transformed region
Mathias Agopian1501d542012-09-04 21:04:09 -07001291 const Layer::State& s(layer->drawingState());
1292 Region visibleReg = s.transform.transform(
1293 Region(Rect(s.active.w, s.active.h)));
1294 invalidateLayerStack(s.layerStack, visibleReg);
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001295 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001296 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001297 }
1298
1299 commitTransaction();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001300}
1301
1302void SurfaceFlinger::commitTransaction()
1303{
1304 if (!mLayersPendingRemoval.isEmpty()) {
1305 // Notify removed layers now that they can't be drawn from
1306 for (size_t i = 0; i < mLayersPendingRemoval.size(); i++) {
1307 mLayersPendingRemoval[i]->onRemoved();
1308 }
1309 mLayersPendingRemoval.clear();
1310 }
1311
Jamie Gennis4b0eba92013-02-05 13:30:24 -08001312 // If this transaction is part of a window animation then the next frame
1313 // we composite should be considered an animation as well.
1314 mAnimCompositionPending = mAnimTransactionPending;
1315
Mathias Agopian4fec8732012-06-29 14:12:52 -07001316 mDrawingState = mCurrentState;
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001317 mTransactionPending = false;
1318 mAnimTransactionPending = false;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001319 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001320}
1321
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001322void SurfaceFlinger::computeVisibleRegions(
Mathias Agopian87baae12012-07-31 12:38:26 -07001323 const LayerVector& currentLayers, uint32_t layerStack,
1324 Region& outDirtyRegion, Region& outOpaqueRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001325{
Mathias Agopian841cde52012-03-01 15:44:37 -08001326 ATRACE_CALL();
1327
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001328 Region aboveOpaqueLayers;
1329 Region aboveCoveredLayers;
1330 Region dirty;
1331
Mathias Agopian87baae12012-07-31 12:38:26 -07001332 outDirtyRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001333
1334 size_t i = currentLayers.size();
1335 while (i--) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001336 const sp<Layer>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001337
1338 // start with the whole surface at its current location
Mathias Agopian97011222009-07-28 10:57:27 -07001339 const Layer::State& s(layer->drawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001340
Jesse Hall01e29052013-02-19 16:13:35 -08001341 // only consider the layers on the given layer stack
Mathias Agopian87baae12012-07-31 12:38:26 -07001342 if (s.layerStack != layerStack)
1343 continue;
1344
Mathias Agopianab028732010-03-16 16:41:46 -07001345 /*
1346 * opaqueRegion: area of a surface that is fully opaque.
1347 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001348 Region opaqueRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001349
1350 /*
1351 * visibleRegion: area of a surface that is visible on screen
1352 * and not fully transparent. This is essentially the layer's
1353 * footprint minus the opaque regions above it.
1354 * Areas covered by a translucent surface are considered visible.
1355 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001356 Region visibleRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001357
1358 /*
1359 * coveredRegion: area of a surface that is covered by all
1360 * visible regions above it (which includes the translucent areas).
1361 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001362 Region coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001363
Jesse Halla8026d22012-09-25 13:25:04 -07001364 /*
1365 * transparentRegion: area of a surface that is hinted to be completely
1366 * transparent. This is only used to tell when the layer has no visible
1367 * non-transparent regions and can be removed from the layer list. It
1368 * does not affect the visibleRegion of this layer or any layers
1369 * beneath it. The hint may not be correct if apps don't respect the
1370 * SurfaceView restrictions (which, sadly, some don't).
1371 */
1372 Region transparentRegion;
1373
Mathias Agopianab028732010-03-16 16:41:46 -07001374
1375 // handle hidden surfaces by setting the visible region to empty
Mathias Agopianda27af92012-09-13 18:17:13 -07001376 if (CC_LIKELY(layer->isVisible())) {
Mathias Agopiana67932f2011-04-20 14:20:59 -07001377 const bool translucent = !layer->isOpaque();
Mathias Agopian5219a062013-02-26 16:37:53 -08001378 Rect bounds(s.transform.transform(layer->computeBounds()));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001379 visibleRegion.set(bounds);
Mathias Agopianab028732010-03-16 16:41:46 -07001380 if (!visibleRegion.isEmpty()) {
1381 // Remove the transparent area from the visible region
1382 if (translucent) {
Mathias Agopian4fec8732012-06-29 14:12:52 -07001383 const Transform tr(s.transform);
1384 if (tr.transformed()) {
1385 if (tr.preserveRects()) {
1386 // transform the transparent region
Mathias Agopian2ca79392013-04-02 18:30:32 -07001387 transparentRegion = tr.transform(s.activeTransparentRegion);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001388 } else {
1389 // transformation too complex, can't do the
1390 // transparent region optimization.
Jesse Halla8026d22012-09-25 13:25:04 -07001391 transparentRegion.clear();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001392 }
1393 } else {
Mathias Agopian2ca79392013-04-02 18:30:32 -07001394 transparentRegion = s.activeTransparentRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001395 }
Mathias Agopianab028732010-03-16 16:41:46 -07001396 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001397
Mathias Agopianab028732010-03-16 16:41:46 -07001398 // compute the opaque region
Mathias Agopian4fec8732012-06-29 14:12:52 -07001399 const int32_t layerOrientation = s.transform.getOrientation();
Mathias Agopianab028732010-03-16 16:41:46 -07001400 if (s.alpha==255 && !translucent &&
1401 ((layerOrientation & Transform::ROT_INVALID) == false)) {
1402 // the opaque region is the layer's footprint
1403 opaqueRegion = visibleRegion;
1404 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001405 }
1406 }
1407
Mathias Agopianab028732010-03-16 16:41:46 -07001408 // Clip the covered region to the visible region
1409 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
1410
1411 // Update aboveCoveredLayers for next (lower) layer
1412 aboveCoveredLayers.orSelf(visibleRegion);
1413
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001414 // subtract the opaque region covered by the layers above us
1415 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001416
1417 // compute this layer's dirty region
1418 if (layer->contentDirty) {
1419 // we need to invalidate the whole region
1420 dirty = visibleRegion;
1421 // as well, as the old visible region
Mathias Agopian4fec8732012-06-29 14:12:52 -07001422 dirty.orSelf(layer->visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001423 layer->contentDirty = false;
1424 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001425 /* compute the exposed region:
Mathias Agopianab028732010-03-16 16:41:46 -07001426 * the exposed region consists of two components:
1427 * 1) what's VISIBLE now and was COVERED before
1428 * 2) what's EXPOSED now less what was EXPOSED before
1429 *
1430 * note that (1) is conservative, we start with the whole
1431 * visible region but only keep what used to be covered by
1432 * something -- which mean it may have been exposed.
1433 *
1434 * (2) handles areas that were not covered by anything but got
1435 * exposed because of a resize.
Mathias Agopiana8d44f72009-06-28 02:54:16 -07001436 */
Mathias Agopianab028732010-03-16 16:41:46 -07001437 const Region newExposed = visibleRegion - coveredRegion;
Mathias Agopian4fec8732012-06-29 14:12:52 -07001438 const Region oldVisibleRegion = layer->visibleRegion;
1439 const Region oldCoveredRegion = layer->coveredRegion;
Mathias Agopianab028732010-03-16 16:41:46 -07001440 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
1441 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001442 }
1443 dirty.subtractSelf(aboveOpaqueLayers);
1444
1445 // accumulate to the screen dirty region
Mathias Agopian87baae12012-07-31 12:38:26 -07001446 outDirtyRegion.orSelf(dirty);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001447
Mathias Agopianab028732010-03-16 16:41:46 -07001448 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001449 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Huber8b42e8a2010-08-16 08:49:37 -07001450
Jesse Halla8026d22012-09-25 13:25:04 -07001451 // Store the visible region in screen space
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001452 layer->setVisibleRegion(visibleRegion);
1453 layer->setCoveredRegion(coveredRegion);
Jesse Halla8026d22012-09-25 13:25:04 -07001454 layer->setVisibleNonTransparentRegion(
1455 visibleRegion.subtract(transparentRegion));
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001456 }
1457
Mathias Agopian87baae12012-07-31 12:38:26 -07001458 outOpaqueRegion = aboveOpaqueLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001459}
1460
Mathias Agopian87baae12012-07-31 12:38:26 -07001461void SurfaceFlinger::invalidateLayerStack(uint32_t layerStack,
1462 const Region& dirty) {
Mathias Agopian92a979a2012-08-02 18:32:23 -07001463 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
Mathias Agopian42977342012-08-05 00:40:46 -07001464 const sp<DisplayDevice>& hw(mDisplays[dpy]);
1465 if (hw->getLayerStack() == layerStack) {
1466 hw->dirtyRegion.orSelf(dirty);
Mathias Agopian92a979a2012-08-02 18:32:23 -07001467 }
1468 }
Mathias Agopian87baae12012-07-31 12:38:26 -07001469}
1470
1471void SurfaceFlinger::handlePageFlip()
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001472{
Mathias Agopian4fec8732012-06-29 14:12:52 -07001473 Region dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001474
Mathias Agopian4fec8732012-06-29 14:12:52 -07001475 bool visibleRegions = false;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001476 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001477 const size_t count = currentLayers.size();
Mathias Agopian4fec8732012-06-29 14:12:52 -07001478 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001479 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian87baae12012-07-31 12:38:26 -07001480 const Region dirty(layer->latchBuffer(visibleRegions));
Mathias Agopian1501d542012-09-04 21:04:09 -07001481 const Layer::State& s(layer->drawingState());
Mathias Agopian87baae12012-07-31 12:38:26 -07001482 invalidateLayerStack(s.layerStack, dirty);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001483 }
Mathias Agopian4da75192010-08-10 17:19:56 -07001484
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07001485 mVisibleRegionsDirty |= visibleRegions;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001486}
1487
Mathias Agopianad456f92011-01-13 17:53:01 -08001488void SurfaceFlinger::invalidateHwcGeometry()
1489{
1490 mHwWorkListDirty = true;
1491}
1492
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001493
Mathias Agopiancd60f992012-08-16 16:28:27 -07001494void SurfaceFlinger::doDisplayComposition(const sp<const DisplayDevice>& hw,
Mathias Agopian87baae12012-07-31 12:38:26 -07001495 const Region& inDirtyRegion)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001496{
Mathias Agopian87baae12012-07-31 12:38:26 -07001497 Region dirtyRegion(inDirtyRegion);
1498
Mathias Agopianb8a55602009-06-26 19:06:36 -07001499 // compute the invalid region
Mathias Agopian42977342012-08-05 00:40:46 -07001500 hw->swapRegion.orSelf(dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001501
Mathias Agopian42977342012-08-05 00:40:46 -07001502 uint32_t flags = hw->getFlags();
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001503 if (flags & DisplayDevice::SWAP_RECTANGLE) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001504 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
1505 // takes a rectangle, we must make sure to update that whole
1506 // rectangle in that case
Mathias Agopian42977342012-08-05 00:40:46 -07001507 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001508 } else {
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001509 if (flags & DisplayDevice::PARTIAL_UPDATES) {
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001510 // We need to redraw the rectangle that will be updated
1511 // (pushed to the framebuffer).
Mathias Agopian95a666b2009-09-24 14:57:26 -07001512 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopian0f2f5ff2012-07-31 23:09:07 -07001513 // rectangle instead of a region (see DisplayDevice::flip())
Mathias Agopian42977342012-08-05 00:40:46 -07001514 dirtyRegion.set(hw->swapRegion.bounds());
Mathias Agopian29d06ac2009-06-29 18:49:56 -07001515 } else {
1516 // we need to redraw everything (the whole screen)
Mathias Agopian42977342012-08-05 00:40:46 -07001517 dirtyRegion.set(hw->bounds());
1518 hw->swapRegion = dirtyRegion;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001519 }
1520 }
1521
Mathias Agopiancd60f992012-08-16 16:28:27 -07001522 doComposeSurfaces(hw, dirtyRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001523
Mathias Agopian9c6e2972011-09-20 17:21:56 -07001524 // update the swap region and clear the dirty region
Mathias Agopian42977342012-08-05 00:40:46 -07001525 hw->swapRegion.orSelf(dirtyRegion);
Mathias Agopianda27af92012-09-13 18:17:13 -07001526
1527 // swap buffers (presentation)
1528 hw->swapBuffers(getHwComposer());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001529}
1530
Mathias Agopiancd60f992012-08-16 16:28:27 -07001531void SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& hw, const Region& dirty)
Mathias Agopianf384cc32011-09-08 18:31:55 -07001532{
Mathias Agopian85d751c2012-08-29 16:59:24 -07001533 const int32_t id = hw->getHwcDisplayId();
Mathias Agopian86303202012-07-24 22:46:10 -07001534 HWComposer& hwc(getHwComposer());
Mathias Agopian1e260872012-08-08 18:35:12 -07001535 HWComposer::LayerListIterator cur = hwc.begin(id);
1536 const HWComposer::LayerListIterator end = hwc.end(id);
Mathias Agopiancd20eb02011-09-22 20:57:04 -07001537
Mathias Agopian85d751c2012-08-29 16:59:24 -07001538 const bool hasGlesComposition = hwc.hasGlesComposition(id) || (cur==end);
1539 if (hasGlesComposition) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -07001540 DisplayDevice::makeCurrent(mEGLDisplay, hw, mEGLContext);
Mathias Agopian52bbb1a2012-07-31 19:01:53 -07001541
1542 // set the frame buffer
1543 glMatrixMode(GL_MODELVIEW);
1544 glLoadIdentity();
1545
1546 // Never touch the framebuffer if we don't have any framebuffer layers
Mathias Agopian85d751c2012-08-29 16:59:24 -07001547 const bool hasHwcComposition = hwc.hasHwcComposition(id);
Mathias Agopiane60b0682012-08-21 23:34:09 -07001548 if (hasHwcComposition) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001549 // when using overlays, we assume a fully transparent framebuffer
1550 // NOTE: we could reduce how much we need to clear, for instance
1551 // remove where there are opaque FB layers. however, on some
1552 // GPUs doing a "clean slate" glClear might be more efficient.
1553 // We'll revisit later if needed.
1554 glClearColor(0, 0, 0, 0);
1555 glClear(GL_COLOR_BUFFER_BIT);
1556 } else {
Mathias Agopian766dc492012-10-30 18:08:06 -07001557 // we start with the whole screen area
1558 const Region bounds(hw->getBounds());
1559
1560 // we remove the scissor part
1561 // we're left with the letterbox region
1562 // (common case is that letterbox ends-up being empty)
1563 const Region letterbox(bounds.subtract(hw->getScissor()));
1564
1565 // compute the area to clear
1566 Region region(hw->undefinedRegion.merge(letterbox));
1567
1568 // but limit it to the dirty region
1569 region.andSelf(dirty);
1570
Mathias Agopianb9494d52012-04-18 02:28:45 -07001571 // screen is already cleared here
Mathias Agopian87baae12012-07-31 12:38:26 -07001572 if (!region.isEmpty()) {
Mathias Agopianb9494d52012-04-18 02:28:45 -07001573 // can happen with SurfaceView
Mathias Agopian55801e42012-08-27 18:54:24 -07001574 drawWormhole(hw, region);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001575 }
Mathias Agopiana2f4e562012-04-15 23:34:59 -07001576 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07001577
Mathias Agopian766dc492012-10-30 18:08:06 -07001578 if (hw->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) {
1579 // just to be on the safe side, we don't set the
Mathias Agopianf45c5102012-10-24 16:29:17 -07001580 // scissor on the main display. It should never be needed
1581 // anyways (though in theory it could since the API allows it).
1582 const Rect& bounds(hw->getBounds());
Mathias Agopian766dc492012-10-30 18:08:06 -07001583 const Rect& scissor(hw->getScissor());
Mathias Agopianf45c5102012-10-24 16:29:17 -07001584 if (scissor != bounds) {
1585 // scissor doesn't match the screen's dimensions, so we
1586 // need to clear everything outside of it and enable
1587 // the GL scissor so we don't draw anything where we shouldn't
1588 const GLint height = hw->getHeight();
1589 glScissor(scissor.left, height - scissor.bottom,
1590 scissor.getWidth(), scissor.getHeight());
Mathias Agopianf45c5102012-10-24 16:29:17 -07001591 // enable scissor for this frame
1592 glEnable(GL_SCISSOR_TEST);
1593 }
1594 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001595 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001596
Mathias Agopian85d751c2012-08-29 16:59:24 -07001597 /*
1598 * and then, render the layers targeted at the framebuffer
1599 */
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001600
Mathias Agopian13127d82013-03-05 17:47:11 -08001601 const Vector< sp<Layer> >& layers(hw->getVisibleLayersSortedByZ());
Mathias Agopian85d751c2012-08-29 16:59:24 -07001602 const size_t count = layers.size();
1603 const Transform& tr = hw->getTransform();
1604 if (cur != end) {
1605 // we're using h/w composer
1606 for (size_t i=0 ; i<count && cur!=end ; ++i, ++cur) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001607 const sp<Layer>& layer(layers[i]);
Mathias Agopian4fec8732012-06-29 14:12:52 -07001608 const Region clip(dirty.intersect(tr.transform(layer->visibleRegion)));
Mathias Agopian85d751c2012-08-29 16:59:24 -07001609 if (!clip.isEmpty()) {
1610 switch (cur->getCompositionType()) {
1611 case HWC_OVERLAY: {
1612 if ((cur->getHints() & HWC_HINT_CLEAR_FB)
1613 && i
1614 && layer->isOpaque()
1615 && hasGlesComposition) {
Mathias Agopiancd60f992012-08-16 16:28:27 -07001616 // never clear the very first layer since we're
1617 // guaranteed the FB is already cleared
1618 layer->clearWithOpenGL(hw, clip);
1619 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001620 break;
Mathias Agopiancd60f992012-08-16 16:28:27 -07001621 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001622 case HWC_FRAMEBUFFER: {
1623 layer->draw(hw, clip);
1624 break;
1625 }
Mathias Agopianda27af92012-09-13 18:17:13 -07001626 case HWC_FRAMEBUFFER_TARGET: {
1627 // this should not happen as the iterator shouldn't
1628 // let us get there.
1629 ALOGW("HWC_FRAMEBUFFER_TARGET found in hwc list (index=%d)", i);
1630 break;
1631 }
Mathias Agopiancd60f992012-08-16 16:28:27 -07001632 }
Mathias Agopian85d751c2012-08-29 16:59:24 -07001633 }
1634 layer->setAcquireFence(hw, *cur);
1635 }
1636 } else {
1637 // we're not using h/w composer
1638 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian13127d82013-03-05 17:47:11 -08001639 const sp<Layer>& layer(layers[i]);
Mathias Agopian85d751c2012-08-29 16:59:24 -07001640 const Region clip(dirty.intersect(
1641 tr.transform(layer->visibleRegion)));
1642 if (!clip.isEmpty()) {
1643 layer->draw(hw, clip);
Jesse Halla6b32db2012-07-19 16:44:38 -07001644 }
Mathias Agopian4b2ba532012-03-29 12:23:51 -07001645 }
1646 }
Mathias Agopianf45c5102012-10-24 16:29:17 -07001647
1648 // disable scissor at the end of the frame
1649 glDisable(GL_SCISSOR_TEST);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001650}
1651
Mathias Agopian55801e42012-08-27 18:54:24 -07001652void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& hw,
1653 const Region& region) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001654{
Mathias Agopianf74e8e02012-04-16 03:14:05 -07001655 glDisable(GL_TEXTURE_EXTERNAL_OES);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001656 glDisable(GL_TEXTURE_2D);
Mathias Agopianf74e8e02012-04-16 03:14:05 -07001657 glDisable(GL_BLEND);
Mathias Agopianb9494d52012-04-18 02:28:45 -07001658 glColor4f(0,0,0,0);
Mathias Agopianf74e8e02012-04-16 03:14:05 -07001659
Mathias Agopian55801e42012-08-27 18:54:24 -07001660 const int32_t height = hw->getHeight();
Mathias Agopianf74e8e02012-04-16 03:14:05 -07001661 Region::const_iterator it = region.begin();
1662 Region::const_iterator const end = region.end();
1663 while (it != end) {
1664 const Rect& r = *it++;
Mathias Agopian55801e42012-08-27 18:54:24 -07001665 GLfloat vertices[][2] = {
Andy McFadden8f06a8c2013-01-11 10:24:34 -08001666 { (GLfloat) r.left, (GLfloat) (height - r.top) },
1667 { (GLfloat) r.left, (GLfloat) (height - r.bottom) },
1668 { (GLfloat) r.right, (GLfloat) (height - r.bottom) },
1669 { (GLfloat) r.right, (GLfloat) (height - r.top) }
Mathias Agopian55801e42012-08-27 18:54:24 -07001670 };
1671 glVertexPointer(2, GL_FLOAT, 0, vertices);
Mathias Agopianf74e8e02012-04-16 03:14:05 -07001672 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1673 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001674}
1675
Mathias Agopianac9fa422013-02-11 16:40:36 -08001676void SurfaceFlinger::addClientLayer(const sp<Client>& client,
1677 const sp<IBinder>& handle,
Mathias Agopian67106042013-03-14 19:18:13 -07001678 const sp<IGraphicBufferProducer>& gbc,
Mathias Agopian13127d82013-03-05 17:47:11 -08001679 const sp<Layer>& lbc)
Mathias Agopian96f08192010-06-02 23:28:45 -07001680{
Mathias Agopian96f08192010-06-02 23:28:45 -07001681 // attach this layer to the client
Mathias Agopianac9fa422013-02-11 16:40:36 -08001682 client->attachLayer(handle, lbc);
Mathias Agopian4f113742011-05-03 16:21:41 -07001683
Mathias Agopian96f08192010-06-02 23:28:45 -07001684 // add this layer to the current state list
Mathias Agopian921e6ac2012-07-23 23:11:29 -07001685 Mutex::Autolock _l(mStateLock);
1686 mCurrentState.layersSortedByZ.add(lbc);
Mathias Agopian67106042013-03-14 19:18:13 -07001687 mGraphicBufferProducerList.add(gbc->asBinder());
Mathias Agopian96f08192010-06-02 23:28:45 -07001688}
1689
Mathias Agopian13127d82013-03-05 17:47:11 -08001690status_t SurfaceFlinger::removeLayer(const sp<Layer>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001691{
1692 Mutex::Autolock _l(mStateLock);
Mathias Agopian13127d82013-03-05 17:47:11 -08001693 ssize_t index = mCurrentState.layersSortedByZ.remove(layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001694 if (index >= 0) {
Mathias Agopian67106042013-03-14 19:18:13 -07001695 mLayersPendingRemoval.push(layer);
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001696 mLayersRemoved = true;
Mathias Agopian67106042013-03-14 19:18:13 -07001697 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001698 return NO_ERROR;
1699 }
Mathias Agopian3d579642009-06-04 18:46:21 -07001700 return status_t(index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001701}
1702
Mathias Agopiandea20b12011-05-03 17:04:02 -07001703uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t flags)
1704{
1705 return android_atomic_release_load(&mTransactionFlags);
1706}
1707
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001708uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1709{
1710 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1711}
1712
Mathias Agopianbb641242010-05-18 17:06:55 -07001713uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001714{
1715 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1716 if ((old & flags)==0) { // wake the server up
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08001717 signalTransaction();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001718 }
1719 return old;
1720}
1721
Mathias Agopian8b33f032012-07-24 20:43:54 -07001722void SurfaceFlinger::setTransactionState(
1723 const Vector<ComposerState>& state,
1724 const Vector<DisplayState>& displays,
1725 uint32_t flags)
1726{
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001727 ATRACE_CALL();
Mathias Agopian698c0872011-06-28 19:09:31 -07001728 Mutex::Autolock _l(mStateLock);
Jamie Gennis28378392011-10-12 17:39:00 -07001729 uint32_t transactionFlags = 0;
Mathias Agopiane57f2922012-08-09 16:29:12 -07001730
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001731 if (flags & eAnimation) {
1732 // For window updates that are part of an animation we must wait for
1733 // previous animation "frames" to be handled.
1734 while (mAnimTransactionPending) {
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001735 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001736 if (CC_UNLIKELY(err != NO_ERROR)) {
1737 // just in case something goes wrong in SF, return to the
Jamie Gennis7c41bf72012-10-17 09:29:47 -07001738 // caller after a few seconds.
1739 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out "
1740 "waiting for previous animation frame");
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001741 mAnimTransactionPending = false;
1742 break;
1743 }
1744 }
1745 }
1746
Mathias Agopiane57f2922012-08-09 16:29:12 -07001747 size_t count = displays.size();
1748 for (size_t i=0 ; i<count ; i++) {
1749 const DisplayState& s(displays[i]);
1750 transactionFlags |= setDisplayStateLocked(s);
Jamie Gennisb8d69a52011-10-10 15:48:06 -07001751 }
1752
Mathias Agopiane57f2922012-08-09 16:29:12 -07001753 count = state.size();
Mathias Agopian698c0872011-06-28 19:09:31 -07001754 for (size_t i=0 ; i<count ; i++) {
1755 const ComposerState& s(state[i]);
Mathias Agopiand17e3b52012-10-22 14:27:45 -07001756 // Here we need to check that the interface we're given is indeed
1757 // one of our own. A malicious client could give us a NULL
1758 // IInterface, or one of its own or even one of our own but a
1759 // different type. All these situations would cause us to crash.
1760 //
1761 // NOTE: it would be better to use RTTI as we could directly check
1762 // that we have a Client*. however, RTTI is disabled in Android.
1763 if (s.client != NULL) {
1764 sp<IBinder> binder = s.client->asBinder();
1765 if (binder != NULL) {
1766 String16 desc(binder->getInterfaceDescriptor());
1767 if (desc == ISurfaceComposerClient::descriptor) {
1768 sp<Client> client( static_cast<Client *>(s.client.get()) );
1769 transactionFlags |= setClientStateLocked(client, s.state);
1770 }
1771 }
1772 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001773 }
Mathias Agopian698c0872011-06-28 19:09:31 -07001774
Mathias Agopian386aa982011-11-07 21:58:03 -08001775 if (transactionFlags) {
1776 // this triggers the transaction
1777 setTransactionFlags(transactionFlags);
1778
1779 // if this is a synchronous transaction, wait for it to take effect
1780 // before returning.
1781 if (flags & eSynchronous) {
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001782 mTransactionPending = true;
Mathias Agopian386aa982011-11-07 21:58:03 -08001783 }
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001784 if (flags & eAnimation) {
1785 mAnimTransactionPending = true;
1786 }
1787 while (mTransactionPending) {
Mathias Agopian386aa982011-11-07 21:58:03 -08001788 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1789 if (CC_UNLIKELY(err != NO_ERROR)) {
1790 // just in case something goes wrong in SF, return to the
1791 // called after a few seconds.
Jamie Gennis2d5e2302012-10-15 18:24:43 -07001792 ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!");
1793 mTransactionPending = false;
Mathias Agopian386aa982011-11-07 21:58:03 -08001794 break;
1795 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001796 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001797 }
1798}
1799
Mathias Agopiane57f2922012-08-09 16:29:12 -07001800uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s)
1801{
Jesse Hall9a143922012-10-04 16:29:19 -07001802 ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token);
1803 if (dpyIdx < 0)
1804 return 0;
1805
Mathias Agopiane57f2922012-08-09 16:29:12 -07001806 uint32_t flags = 0;
Jesse Hall9a143922012-10-04 16:29:19 -07001807 DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx));
Mathias Agopian3ee454a2012-08-27 16:28:24 -07001808 if (disp.isValid()) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001809 const uint32_t what = s.what;
1810 if (what & DisplayState::eSurfaceChanged) {
1811 if (disp.surface->asBinder() != s.surface->asBinder()) {
1812 disp.surface = s.surface;
1813 flags |= eDisplayTransactionNeeded;
1814 }
1815 }
1816 if (what & DisplayState::eLayerStackChanged) {
1817 if (disp.layerStack != s.layerStack) {
1818 disp.layerStack = s.layerStack;
1819 flags |= eDisplayTransactionNeeded;
1820 }
1821 }
Mathias Agopian00e8c7a2012-09-04 19:30:46 -07001822 if (what & DisplayState::eDisplayProjectionChanged) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07001823 if (disp.orientation != s.orientation) {
1824 disp.orientation = s.orientation;
1825 flags |= eDisplayTransactionNeeded;
1826 }
1827 if (disp.frame != s.frame) {
1828 disp.frame = s.frame;
1829 flags |= eDisplayTransactionNeeded;
1830 }
1831 if (disp.viewport != s.viewport) {
1832 disp.viewport = s.viewport;
1833 flags |= eDisplayTransactionNeeded;
1834 }
1835 }
1836 }
1837 return flags;
1838}
1839
1840uint32_t SurfaceFlinger::setClientStateLocked(
1841 const sp<Client>& client,
1842 const layer_state_t& s)
1843{
1844 uint32_t flags = 0;
Mathias Agopian13127d82013-03-05 17:47:11 -08001845 sp<Layer> layer(client->getLayerUser(s.surface));
Mathias Agopiane57f2922012-08-09 16:29:12 -07001846 if (layer != 0) {
1847 const uint32_t what = s.what;
1848 if (what & layer_state_t::ePositionChanged) {
1849 if (layer->setPosition(s.x, s.y))
1850 flags |= eTraversalNeeded;
1851 }
1852 if (what & layer_state_t::eLayerChanged) {
1853 // NOTE: index needs to be calculated before we update the state
1854 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
1855 if (layer->setLayer(s.z)) {
1856 mCurrentState.layersSortedByZ.removeAt(idx);
1857 mCurrentState.layersSortedByZ.add(layer);
1858 // we need traversal (state changed)
1859 // AND transaction (list changed)
1860 flags |= eTransactionNeeded|eTraversalNeeded;
1861 }
1862 }
1863 if (what & layer_state_t::eSizeChanged) {
1864 if (layer->setSize(s.w, s.h)) {
1865 flags |= eTraversalNeeded;
1866 }
1867 }
1868 if (what & layer_state_t::eAlphaChanged) {
1869 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1870 flags |= eTraversalNeeded;
1871 }
1872 if (what & layer_state_t::eMatrixChanged) {
1873 if (layer->setMatrix(s.matrix))
1874 flags |= eTraversalNeeded;
1875 }
1876 if (what & layer_state_t::eTransparentRegionChanged) {
1877 if (layer->setTransparentRegionHint(s.transparentRegion))
1878 flags |= eTraversalNeeded;
1879 }
1880 if (what & layer_state_t::eVisibilityChanged) {
1881 if (layer->setFlags(s.flags, s.mask))
1882 flags |= eTraversalNeeded;
1883 }
1884 if (what & layer_state_t::eCropChanged) {
1885 if (layer->setCrop(s.crop))
1886 flags |= eTraversalNeeded;
1887 }
1888 if (what & layer_state_t::eLayerStackChanged) {
1889 // NOTE: index needs to be calculated before we update the state
1890 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
1891 if (layer->setLayerStack(s.layerStack)) {
1892 mCurrentState.layersSortedByZ.removeAt(idx);
1893 mCurrentState.layersSortedByZ.add(layer);
1894 // we need traversal (state changed)
1895 // AND transaction (list changed)
1896 flags |= eTransactionNeeded|eTraversalNeeded;
1897 }
1898 }
1899 }
1900 return flags;
1901}
1902
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001903status_t SurfaceFlinger::createLayer(
Mathias Agopian0ef4e152011-04-20 14:19:32 -07001904 const String8& name,
1905 const sp<Client>& client,
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001906 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
1907 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001908{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001909 //ALOGD("createLayer for (%d x %d), name=%s", w, h, name.string());
Mathias Agopian6e2d6482009-07-09 18:16:43 -07001910 if (int32_t(w|h) < 0) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07001911 ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)",
Mathias Agopian6e2d6482009-07-09 18:16:43 -07001912 int(w), int(h));
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001913 return BAD_VALUE;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07001914 }
Andreas Huber8b42e8a2010-08-16 08:49:37 -07001915
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001916 status_t result = NO_ERROR;
1917
1918 sp<Layer> layer;
1919
Mathias Agopian3165cc22012-08-08 19:42:09 -07001920 switch (flags & ISurfaceComposerClient::eFXSurfaceMask) {
1921 case ISurfaceComposerClient::eFXSurfaceNormal:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001922 result = createNormalLayer(client,
1923 name, w, h, flags, format,
1924 handle, gbp, &layer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001925 break;
Mathias Agopian3165cc22012-08-08 19:42:09 -07001926 case ISurfaceComposerClient::eFXSurfaceDim:
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001927 result = createDimLayer(client,
1928 name, w, h, flags,
1929 handle, gbp, &layer);
1930 break;
1931 default:
1932 result = BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001933 break;
1934 }
1935
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001936 if (result == NO_ERROR) {
Mathias Agopian67106042013-03-14 19:18:13 -07001937 addClientLayer(client, *handle, *gbp, layer);
Mathias Agopian96f08192010-06-02 23:28:45 -07001938 setTransactionFlags(eTransactionNeeded);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001939 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001940 return result;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001941}
1942
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001943status_t SurfaceFlinger::createNormalLayer(const sp<Client>& client,
1944 const String8& name, uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
1945 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001946{
1947 // initialize the surfaces
Mathias Agopian92a979a2012-08-02 18:32:23 -07001948 switch (format) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001949 case PIXEL_FORMAT_TRANSPARENT:
1950 case PIXEL_FORMAT_TRANSLUCENT:
1951 format = PIXEL_FORMAT_RGBA_8888;
1952 break;
1953 case PIXEL_FORMAT_OPAQUE:
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001954#ifdef NO_RGBX_8888
1955 format = PIXEL_FORMAT_RGB_565;
1956#else
Mathias Agopian8f105402010-04-05 18:01:24 -07001957 format = PIXEL_FORMAT_RGBX_8888;
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001958#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001959 break;
1960 }
1961
Mathias Agopiana8f3e4e2010-06-30 15:43:47 -07001962#ifdef NO_RGBX_8888
1963 if (format == PIXEL_FORMAT_RGBX_8888)
1964 format = PIXEL_FORMAT_RGBA_8888;
1965#endif
1966
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001967 *outLayer = new Layer(this, client, name, w, h, flags);
1968 status_t err = (*outLayer)->setBuffers(w, h, format, flags);
1969 if (err == NO_ERROR) {
1970 *handle = (*outLayer)->getHandle();
1971 *gbp = (*outLayer)->getBufferQueue();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001972 }
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001973
1974 ALOGE_IF(err, "createNormalLayer() failed (%s)", strerror(-err));
1975 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001976}
1977
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001978status_t SurfaceFlinger::createDimLayer(const sp<Client>& client,
1979 const String8& name, uint32_t w, uint32_t h, uint32_t flags,
1980 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp, sp<Layer>* outLayer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001981{
Mathias Agopian4d9b8222013-03-12 17:11:48 -07001982 *outLayer = new LayerDim(this, client, name, w, h, flags);
1983 *handle = (*outLayer)->getHandle();
1984 *gbp = (*outLayer)->getBufferQueue();
1985 return NO_ERROR;
Mathias Agopian118d0242011-10-13 16:02:48 -07001986}
1987
Mathias Agopianac9fa422013-02-11 16:40:36 -08001988status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001989{
Mathias Agopian67106042013-03-14 19:18:13 -07001990 // called by the window manager when it wants to remove a Layer
1991 status_t err = NO_ERROR;
1992 sp<Layer> l(client->getLayerUser(handle));
1993 if (l != NULL) {
1994 err = removeLayer(l);
1995 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
1996 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopian9a112062009-04-17 19:36:26 -07001997 }
1998 return err;
1999}
2000
Mathias Agopian13127d82013-03-05 17:47:11 -08002001status_t SurfaceFlinger::onLayerDestroyed(const wp<Layer>& layer)
Mathias Agopian9a112062009-04-17 19:36:26 -07002002{
Mathias Agopian67106042013-03-14 19:18:13 -07002003 // called by ~LayerCleaner() when all references to the IBinder (handle)
2004 // are gone
Mathias Agopianca4d3602011-05-19 15:38:14 -07002005 status_t err = NO_ERROR;
Mathias Agopian13127d82013-03-05 17:47:11 -08002006 sp<Layer> l(layer.promote());
Mathias Agopianca4d3602011-05-19 15:38:14 -07002007 if (l != NULL) {
Mathias Agopian67106042013-03-14 19:18:13 -07002008 err = removeLayer(l);
Steve Blocke6f43dd2012-01-06 19:20:56 +00002009 ALOGE_IF(err<0 && err != NAME_NOT_FOUND,
Mathias Agopianca4d3602011-05-19 15:38:14 -07002010 "error removing layer=%p (%s)", l.get(), strerror(-err));
2011 }
2012 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002013}
2014
Mathias Agopianb60314a2012-04-10 22:09:54 -07002015// ---------------------------------------------------------------------------
2016
Andy McFadden13a082e2012-08-24 10:16:42 -07002017void SurfaceFlinger::onInitializeDisplays() {
Jesse Hall01e29052013-02-19 16:13:35 -08002018 // reset screen orientation and use primary layer stack
Andy McFadden13a082e2012-08-24 10:16:42 -07002019 Vector<ComposerState> state;
2020 Vector<DisplayState> displays;
2021 DisplayState d;
Jesse Hall01e29052013-02-19 16:13:35 -08002022 d.what = DisplayState::eDisplayProjectionChanged |
2023 DisplayState::eLayerStackChanged;
Jesse Hall692c7232012-11-08 15:41:56 -08002024 d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY];
Jesse Hall01e29052013-02-19 16:13:35 -08002025 d.layerStack = 0;
Andy McFadden13a082e2012-08-24 10:16:42 -07002026 d.orientation = DisplayState::eOrientationDefault;
Jeff Brown4c05dd12012-09-09 00:07:17 -07002027 d.frame.makeInvalid();
2028 d.viewport.makeInvalid();
Andy McFadden13a082e2012-08-24 10:16:42 -07002029 displays.add(d);
2030 setTransactionState(state, displays, 0);
Mathias Agopiancde87a32012-09-13 14:09:01 -07002031 onScreenAcquired(getDefaultDisplayDevice());
Andy McFadden13a082e2012-08-24 10:16:42 -07002032}
2033
2034void SurfaceFlinger::initializeDisplays() {
2035 class MessageScreenInitialized : public MessageBase {
2036 SurfaceFlinger* flinger;
2037 public:
2038 MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { }
2039 virtual bool handler() {
2040 flinger->onInitializeDisplays();
2041 return true;
2042 }
2043 };
2044 sp<MessageBase> msg = new MessageScreenInitialized(this);
2045 postMessageAsync(msg); // we may be called from main thread, use async message
2046}
2047
2048
Mathias Agopiancde87a32012-09-13 14:09:01 -07002049void SurfaceFlinger::onScreenAcquired(const sp<const DisplayDevice>& hw) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002050 ALOGD("Screen acquired, type=%d flinger=%p", hw->getDisplayType(), this);
2051 if (hw->isScreenAcquired()) {
2052 // this is expected, e.g. when power manager wakes up during boot
2053 ALOGD(" screen was previously acquired");
2054 return;
2055 }
2056
Mathias Agopian42977342012-08-05 00:40:46 -07002057 hw->acquireScreen();
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002058 int32_t type = hw->getDisplayType();
2059 if (type < DisplayDevice::NUM_DISPLAY_TYPES) {
2060 // built-in display, tell the HWC
2061 getHwComposer().acquire(type);
2062
2063 if (type == DisplayDevice::DISPLAY_PRIMARY) {
2064 // FIXME: eventthread only knows about the main display right now
2065 mEventThread->onScreenAcquired();
2066 }
Mathias Agopiancde87a32012-09-13 14:09:01 -07002067 }
Mathias Agopian20128302012-08-13 18:32:13 -07002068 mVisibleRegionsDirty = true;
2069 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002070}
2071
Mathias Agopiancde87a32012-09-13 14:09:01 -07002072void SurfaceFlinger::onScreenReleased(const sp<const DisplayDevice>& hw) {
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002073 ALOGD("Screen released, type=%d flinger=%p", hw->getDisplayType(), this);
2074 if (!hw->isScreenAcquired()) {
2075 ALOGD(" screen was previously released");
2076 return;
2077 }
2078
2079 hw->releaseScreen();
2080 int32_t type = hw->getDisplayType();
2081 if (type < DisplayDevice::NUM_DISPLAY_TYPES) {
2082 if (type == DisplayDevice::DISPLAY_PRIMARY) {
Mathias Agopiancde87a32012-09-13 14:09:01 -07002083 // FIXME: eventthread only knows about the main display right now
2084 mEventThread->onScreenReleased();
2085 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002086
2087 // built-in display, tell the HWC
2088 getHwComposer().release(type);
2089 }
2090 mVisibleRegionsDirty = true;
2091 // from this point on, SF will stop drawing on this display
2092}
2093
2094void SurfaceFlinger::unblank(const sp<IBinder>& display) {
2095 class MessageScreenAcquired : public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002096 SurfaceFlinger& mFlinger;
2097 sp<IBinder> mDisplay;
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002098 public:
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002099 MessageScreenAcquired(SurfaceFlinger& flinger,
2100 const sp<IBinder>& disp) : mFlinger(flinger), mDisplay(disp) { }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002101 virtual bool handler() {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002102 const sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
2103 if (hw == NULL) {
2104 ALOGE("Attempt to unblank null display %p", mDisplay.get());
2105 } else if (hw->getDisplayType() >= DisplayDevice::NUM_DISPLAY_TYPES) {
2106 ALOGW("Attempt to unblank virtual display");
2107 } else {
2108 mFlinger.onScreenAcquired(hw);
2109 }
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002110 return true;
2111 }
2112 };
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002113 sp<MessageBase> msg = new MessageScreenAcquired(*this, display);
2114 postMessageSync(msg);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002115}
2116
Andy McFaddenc01a79d2012-09-27 16:02:06 -07002117void SurfaceFlinger::blank(const sp<IBinder>& display) {
Mathias Agopianb60314a2012-04-10 22:09:54 -07002118 class MessageScreenReleased : public MessageBase {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002119 SurfaceFlinger& mFlinger;
2120 sp<IBinder> mDisplay;
Mathias Agopianb60314a2012-04-10 22:09:54 -07002121 public:
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002122 MessageScreenReleased(SurfaceFlinger& flinger,
2123 const sp<IBinder>& disp) : mFlinger(flinger), mDisplay(disp) { }
Mathias Agopianb60314a2012-04-10 22:09:54 -07002124 virtual bool handler() {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002125 const sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay));
2126 if (hw == NULL) {
2127 ALOGE("Attempt to blank null display %p", mDisplay.get());
2128 } else if (hw->getDisplayType() >= DisplayDevice::NUM_DISPLAY_TYPES) {
2129 ALOGW("Attempt to blank virtual display");
2130 } else {
2131 mFlinger.onScreenReleased(hw);
2132 }
Mathias Agopianb60314a2012-04-10 22:09:54 -07002133 return true;
2134 }
2135 };
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002136 sp<MessageBase> msg = new MessageScreenReleased(*this, display);
2137 postMessageSync(msg);
Mathias Agopianb60314a2012-04-10 22:09:54 -07002138}
2139
2140// ---------------------------------------------------------------------------
2141
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002142status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
2143{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002144 String8 result;
Mathias Agopian99b49842011-06-27 16:05:52 -07002145
Mathias Agopianbd115332013-04-18 16:41:04 -07002146 IPCThreadState* ipc = IPCThreadState::self();
2147 const int pid = ipc->getCallingPid();
2148 const int uid = ipc->getCallingUid();
2149 if ((uid != AID_SHELL) &&
2150 !PermissionCache::checkPermission(sDump, pid, uid)) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002151 result.appendFormat("Permission Denial: "
Mathias Agopianbd115332013-04-18 16:41:04 -07002152 "can't dump SurfaceFlinger from pid=%d, uid=%d\n", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002153 } else {
Mathias Agopian9795c422009-08-26 16:36:26 -07002154 // Try to get the main lock, but don't insist if we can't
2155 // (this would indicate SF is stuck, but we want to be able to
2156 // print something in dumpsys).
2157 int retry = 3;
2158 while (mStateLock.tryLock()<0 && --retry>=0) {
2159 usleep(1000000);
2160 }
2161 const bool locked(retry >= 0);
2162 if (!locked) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002163 result.append(
Mathias Agopian9795c422009-08-26 16:36:26 -07002164 "SurfaceFlinger appears to be unresponsive, "
2165 "dumping anyways (no locks held)\n");
Mathias Agopian9795c422009-08-26 16:36:26 -07002166 }
2167
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002168 bool dumpAll = true;
2169 size_t index = 0;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002170 size_t numArgs = args.size();
2171 if (numArgs) {
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002172 if ((index < numArgs) &&
2173 (args[index] == String16("--list"))) {
2174 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002175 listLayersLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002176 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002177 }
2178
2179 if ((index < numArgs) &&
2180 (args[index] == String16("--latency"))) {
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002181 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002182 dumpStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002183 dumpAll = false;
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002184 }
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002185
2186 if ((index < numArgs) &&
2187 (args[index] == String16("--latency-clear"))) {
2188 index++;
Mathias Agopian74d211a2013-04-22 16:55:35 +02002189 clearStatsLocked(args, index, result);
Mathias Agopian35aadd62012-03-08 22:01:51 -08002190 dumpAll = false;
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002191 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002192 }
Mathias Agopian1b5e1022010-04-20 17:55:49 -07002193
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002194 if (dumpAll) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002195 dumpAllLocked(args, index, result);
Mathias Agopian48b888a2011-01-19 16:15:53 -08002196 }
2197
Mathias Agopian9795c422009-08-26 16:36:26 -07002198 if (locked) {
2199 mStateLock.unlock();
2200 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002201 }
2202 write(fd, result.string(), result.size());
2203 return NO_ERROR;
2204}
2205
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002206void SurfaceFlinger::listLayersLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02002207 String8& result) const
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002208{
2209 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2210 const size_t count = currentLayers.size();
2211 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002212 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002213 result.appendFormat("%s\n", layer->getName().string());
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002214 }
2215}
2216
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002217void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02002218 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002219{
2220 String8 name;
2221 if (index < args.size()) {
2222 name = String8(args[index]);
2223 index++;
2224 }
2225
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002226 const nsecs_t period =
2227 getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY);
2228 result.appendFormat("%lld\n", period);
2229
2230 if (name.isEmpty()) {
2231 mAnimFrameTracker.dump(result);
2232 } else {
2233 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2234 const size_t count = currentLayers.size();
2235 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002236 const sp<Layer>& layer(currentLayers[i]);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002237 if (name == layer->getName()) {
Mathias Agopian74d211a2013-04-22 16:55:35 +02002238 layer->dumpStats(result);
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002239 }
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002240 }
2241 }
2242}
2243
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002244void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index,
Mathias Agopian74d211a2013-04-22 16:55:35 +02002245 String8& result)
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002246{
2247 String8 name;
2248 if (index < args.size()) {
2249 name = String8(args[index]);
2250 index++;
2251 }
2252
2253 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2254 const size_t count = currentLayers.size();
2255 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002256 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002257 if (name.isEmpty() || (name == layer->getName())) {
2258 layer->clearStats();
2259 }
2260 }
Jamie Gennis4b0eba92013-02-05 13:30:24 -08002261
2262 mAnimFrameTracker.clear();
Mathias Agopian25e66fc2012-01-28 22:31:55 -08002263}
2264
Andy McFadden4803b742012-09-24 19:07:20 -07002265/*static*/ void SurfaceFlinger::appendSfConfigString(String8& result)
2266{
2267 static const char* config =
2268 " [sf"
2269#ifdef NO_RGBX_8888
2270 " NO_RGBX_8888"
2271#endif
2272#ifdef HAS_CONTEXT_PRIORITY
2273 " HAS_CONTEXT_PRIORITY"
2274#endif
2275#ifdef NEVER_DEFAULT_TO_ASYNC_MODE
2276 " NEVER_DEFAULT_TO_ASYNC_MODE"
2277#endif
2278#ifdef TARGET_DISABLE_TRIPLE_BUFFERING
2279 " TARGET_DISABLE_TRIPLE_BUFFERING"
2280#endif
2281 "]";
2282 result.append(config);
2283}
2284
Mathias Agopian74d211a2013-04-22 16:55:35 +02002285void SurfaceFlinger::dumpAllLocked(const Vector<String16>& args, size_t& index,
2286 String8& result) const
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002287{
2288 // figure out if we're stuck somewhere
2289 const nsecs_t now = systemTime();
2290 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
2291 const nsecs_t inTransaction(mDebugInTransaction);
2292 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
2293 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
2294
2295 /*
Andy McFadden4803b742012-09-24 19:07:20 -07002296 * Dump library configuration.
2297 */
2298 result.append("Build configuration:");
2299 appendSfConfigString(result);
2300 appendUiConfigString(result);
2301 appendGuiConfigString(result);
2302 result.append("\n");
2303
Mathias Agopianca088332013-03-28 17:44:13 -07002304 result.append("Sync configuration: ");
2305 result.append(SyncFeatures::getInstance().toString());
2306 result.append("\n");
2307
Andy McFadden4803b742012-09-24 19:07:20 -07002308 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002309 * Dump the visible layer list
2310 */
2311 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
2312 const size_t count = currentLayers.size();
Mathias Agopian74d211a2013-04-22 16:55:35 +02002313 result.appendFormat("Visible layers (count = %d)\n", count);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002314 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian13127d82013-03-05 17:47:11 -08002315 const sp<Layer>& layer(currentLayers[i]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002316 layer->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002317 }
2318
2319 /*
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002320 * Dump Display state
2321 */
2322
Mathias Agopian74d211a2013-04-22 16:55:35 +02002323 result.appendFormat("Displays (%d entries)\n", mDisplays.size());
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002324 for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) {
2325 const sp<const DisplayDevice>& hw(mDisplays[dpy]);
Mathias Agopian74d211a2013-04-22 16:55:35 +02002326 hw->dump(result);
Mathias Agopian5f20e2d2012-08-10 18:50:38 -07002327 }
2328
2329 /*
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002330 * Dump SurfaceFlinger global state
2331 */
2332
Mathias Agopian74d211a2013-04-22 16:55:35 +02002333 result.append("SurfaceFlinger global state:\n");
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002334
Mathias Agopian888c8222012-08-04 21:10:38 -07002335 HWComposer& hwc(getHwComposer());
Mathias Agopian42977342012-08-05 00:40:46 -07002336 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002337 const GLExtensions& extensions(GLExtensions::getInstance());
Mathias Agopianca088332013-03-28 17:44:13 -07002338
Mathias Agopian74d211a2013-04-22 16:55:35 +02002339 result.appendFormat("EGL implementation : %s\n%s\n",
2340 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_VERSION),
Mathias Agopianca088332013-03-28 17:44:13 -07002341 eglQueryStringImplementationANDROID(mEGLDisplay, EGL_EXTENSIONS));
Mathias Agopianca088332013-03-28 17:44:13 -07002342
Mathias Agopian74d211a2013-04-22 16:55:35 +02002343 result.appendFormat("GLES: %s, %s, %s\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002344 extensions.getVendor(),
2345 extensions.getRenderer(),
2346 extensions.getVersion());
Mathias Agopian74d211a2013-04-22 16:55:35 +02002347 result.appendFormat("%s\n", extensions.getExtension());
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002348
Mathias Agopian42977342012-08-05 00:40:46 -07002349 hw->undefinedRegion.dump(result, "undefinedRegion");
Mathias Agopian74d211a2013-04-22 16:55:35 +02002350 result.appendFormat(" orientation=%d, canDraw=%d\n",
Mathias Agopian42977342012-08-05 00:40:46 -07002351 hw->getOrientation(), hw->canDraw());
Mathias Agopian74d211a2013-04-22 16:55:35 +02002352 result.appendFormat(
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002353 " last eglSwapBuffers() time: %f us\n"
2354 " last transaction time : %f us\n"
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002355 " transaction-flags : %08x\n"
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002356 " refresh-rate : %f fps\n"
2357 " x-dpi : %f\n"
Mathias Agopianed985572013-03-22 00:24:39 -07002358 " y-dpi : %f\n"
2359 " EGL_NATIVE_VISUAL_ID : %d\n"
2360 " gpu_to_cpu_unsupported : %d\n"
2361 ,
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002362 mLastSwapBufferTime/1000.0,
2363 mLastTransactionTime/1000.0,
Mathias Agopianc95dbdc2012-02-05 00:19:27 -08002364 mTransactionFlags,
Andy McFaddenb0d1dd32012-09-10 14:08:09 -07002365 1e9 / hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY),
2366 hwc.getDpiX(HWC_DISPLAY_PRIMARY),
Mathias Agopianed985572013-03-22 00:24:39 -07002367 hwc.getDpiY(HWC_DISPLAY_PRIMARY),
2368 mEGLNativeVisualId,
2369 !mGpuToCpuSupported);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002370
Mathias Agopian74d211a2013-04-22 16:55:35 +02002371 result.appendFormat(" eglSwapBuffers time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002372 inSwapBuffersDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002373
Mathias Agopian74d211a2013-04-22 16:55:35 +02002374 result.appendFormat(" transaction time: %f us\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002375 inTransactionDuration/1000.0);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002376
2377 /*
2378 * VSYNC state
2379 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02002380 mEventThread->dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002381
2382 /*
2383 * Dump HWComposer state
2384 */
Mathias Agopian74d211a2013-04-22 16:55:35 +02002385 result.append("h/w composer state:\n");
2386 result.appendFormat(" h/w composer %s and %s\n",
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002387 hwc.initCheck()==NO_ERROR ? "present" : "not present",
2388 (mDebugDisableHWC || mDebugRegion) ? "disabled" : "enabled");
Mathias Agopian74d211a2013-04-22 16:55:35 +02002389 hwc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002390
2391 /*
2392 * Dump gralloc state
2393 */
2394 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
2395 alloc.dump(result);
Mathias Agopian82d7ab62012-01-19 18:34:40 -08002396}
2397
Mathias Agopian13127d82013-03-05 17:47:11 -08002398const Vector< sp<Layer> >&
Jesse Hall48bc05b2013-03-21 14:06:52 -07002399SurfaceFlinger::getLayerSortedByZForHwcDisplay(int id) {
Mathias Agopiandb9b41f2012-10-15 16:51:41 -07002400 // Note: mStateLock is held here
Jesse Hall48bc05b2013-03-21 14:06:52 -07002401 wp<IBinder> dpy;
2402 for (size_t i=0 ; i<mDisplays.size() ; i++) {
2403 if (mDisplays.valueAt(i)->getHwcDisplayId() == id) {
2404 dpy = mDisplays.keyAt(i);
2405 break;
2406 }
2407 }
2408 if (dpy == NULL) {
2409 ALOGE("getLayerSortedByZForHwcDisplay: invalid hwc display id %d", id);
2410 // Just use the primary display so we have something to return
2411 dpy = getBuiltInDisplay(DisplayDevice::DISPLAY_PRIMARY);
2412 }
2413 return getDisplayDevice(dpy)->getVisibleLayersSortedByZ();
Mathias Agopiancb558572012-10-04 15:58:54 -07002414}
2415
Keun young Park63f165f2012-08-31 10:53:36 -07002416bool SurfaceFlinger::startDdmConnection()
2417{
2418 void* libddmconnection_dso =
2419 dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW);
2420 if (!libddmconnection_dso) {
2421 return false;
2422 }
2423 void (*DdmConnection_start)(const char* name);
2424 DdmConnection_start =
2425 (typeof DdmConnection_start)dlsym(libddmconnection_dso, "DdmConnection_start");
2426 if (!DdmConnection_start) {
2427 dlclose(libddmconnection_dso);
2428 return false;
2429 }
2430 (*DdmConnection_start)(getServiceName());
2431 return true;
2432}
2433
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002434status_t SurfaceFlinger::onTransact(
2435 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2436{
2437 switch (code) {
2438 case CREATE_CONNECTION:
Mathias Agopian041a0752013-03-15 18:31:56 -07002439 case CREATE_DISPLAY:
Mathias Agopian698c0872011-06-28 19:09:31 -07002440 case SET_TRANSACTION_STATE:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002441 case BOOT_FINISHED:
Colin Cross8e533062012-06-07 13:17:52 -07002442 case BLANK:
2443 case UNBLANK:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002444 {
2445 // codes that require permission check
2446 IPCThreadState* ipc = IPCThreadState::self();
2447 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07002448 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07002449 if ((uid != AID_GRAPHICS) &&
2450 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00002451 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07002452 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
2453 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002454 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002455 break;
2456 }
2457 case CAPTURE_SCREEN:
2458 {
2459 // codes that require permission check
2460 IPCThreadState* ipc = IPCThreadState::self();
2461 const int pid = ipc->getCallingPid();
2462 const int uid = ipc->getCallingUid();
Mathias Agopian99b49842011-06-27 16:05:52 -07002463 if ((uid != AID_GRAPHICS) &&
2464 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Steve Blocke6f43dd2012-01-06 19:20:56 +00002465 ALOGE("Permission Denial: "
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002466 "can't read framebuffer pid=%d, uid=%d", pid, uid);
2467 return PERMISSION_DENIED;
2468 }
2469 break;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002470 }
2471 }
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002472
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002473 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
2474 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07002475 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Glenn Kasten99ed2242011-12-15 09:51:17 -08002476 if (CC_UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian375f5632009-06-15 18:24:59 -07002477 IPCThreadState* ipc = IPCThreadState::self();
2478 const int pid = ipc->getCallingPid();
2479 const int uid = ipc->getCallingUid();
Steve Blocke6f43dd2012-01-06 19:20:56 +00002480 ALOGE("Permission Denial: "
Mathias Agopian375f5632009-06-15 18:24:59 -07002481 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002482 return PERMISSION_DENIED;
2483 }
2484 int n;
2485 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07002486 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian35b48d12010-09-13 22:57:58 -07002487 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002488 return NO_ERROR;
2489 case 1002: // SHOW_UPDATES
2490 n = data.readInt32();
2491 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian53331da2011-08-22 21:44:41 -07002492 invalidateHwcGeometry();
2493 repaintEverything();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002494 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002495 case 1004:{ // repaint everything
Mathias Agopian53331da2011-08-22 21:44:41 -07002496 repaintEverything();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002497 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002498 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002499 case 1005:{ // force transaction
Mathias Agopiane57f2922012-08-09 16:29:12 -07002500 setTransactionFlags(
2501 eTransactionNeeded|
2502 eDisplayTransactionNeeded|
2503 eTraversalNeeded);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07002504 return NO_ERROR;
2505 }
Mathias Agopian4d143ee2012-02-23 20:05:39 -08002506 case 1006:{ // send empty update
2507 signalRefresh();
2508 return NO_ERROR;
2509 }
Mathias Agopian53331da2011-08-22 21:44:41 -07002510 case 1008: // toggle use of hw composer
2511 n = data.readInt32();
2512 mDebugDisableHWC = n ? 1 : 0;
2513 invalidateHwcGeometry();
2514 repaintEverything();
2515 return NO_ERROR;
Mathias Agopiana4583642011-08-23 18:03:18 -07002516 case 1009: // toggle use of transform hint
2517 n = data.readInt32();
2518 mDebugDisableTransformHint = n ? 1 : 0;
2519 invalidateHwcGeometry();
2520 repaintEverything();
2521 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002522 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07002523 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002524 reply->writeInt32(0);
2525 reply->writeInt32(mDebugRegion);
Mathias Agopianb9494d52012-04-18 02:28:45 -07002526 reply->writeInt32(0);
Dianne Hackborn12839be2012-02-06 21:21:05 -08002527 reply->writeInt32(mDebugDisableHWC);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002528 return NO_ERROR;
2529 case 1013: {
2530 Mutex::Autolock _l(mStateLock);
Mathias Agopian42977342012-08-05 00:40:46 -07002531 sp<const DisplayDevice> hw(getDefaultDisplayDevice());
2532 reply->writeInt32(hw->getPageFlipCount());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002533 }
2534 return NO_ERROR;
2535 }
2536 }
2537 return err;
2538}
2539
Mathias Agopian53331da2011-08-22 21:44:41 -07002540void SurfaceFlinger::repaintEverything() {
Mathias Agopian87baae12012-07-31 12:38:26 -07002541 android_atomic_or(1, &mRepaintEverything);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -08002542 signalTransaction();
Mathias Agopian53331da2011-08-22 21:44:41 -07002543}
2544
Mathias Agopian59119e62010-10-11 12:37:43 -07002545// ---------------------------------------------------------------------------
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002546// Capture screen into an IGraphiBufferProducer
Mathias Agopian9daa5c92010-10-12 16:05:48 -07002547// ---------------------------------------------------------------------------
2548
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002549status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display,
2550 const sp<IGraphicBufferProducer>& producer,
2551 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002552 uint32_t minLayerZ, uint32_t maxLayerZ,
2553 bool isCpuConsumer) {
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002554
2555 if (CC_UNLIKELY(display == 0))
2556 return BAD_VALUE;
2557
2558 if (CC_UNLIKELY(producer == 0))
2559 return BAD_VALUE;
2560
2561 class MessageCaptureScreen : public MessageBase {
2562 SurfaceFlinger* flinger;
2563 sp<IBinder> display;
2564 sp<IGraphicBufferProducer> producer;
2565 uint32_t reqWidth, reqHeight;
2566 uint32_t minLayerZ,maxLayerZ;
Mathias Agopianabe815d2013-03-19 22:22:21 -07002567 bool isCpuConsumer;
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002568 status_t result;
2569 public:
2570 MessageCaptureScreen(SurfaceFlinger* flinger,
2571 const sp<IBinder>& display,
2572 const sp<IGraphicBufferProducer>& producer,
2573 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002574 uint32_t minLayerZ, uint32_t maxLayerZ, bool isCpuConsumer)
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002575 : flinger(flinger), display(display), producer(producer),
2576 reqWidth(reqWidth), reqHeight(reqHeight),
2577 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
Mathias Agopianabe815d2013-03-19 22:22:21 -07002578 isCpuConsumer(isCpuConsumer),
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002579 result(PERMISSION_DENIED)
2580 {
2581 }
2582 status_t getResult() const {
2583 return result;
2584 }
2585 virtual bool handler() {
2586 Mutex::Autolock _l(flinger->mStateLock);
2587 sp<const DisplayDevice> hw(flinger->getDisplayDevice(display));
Mathias Agopianb4b17302013-03-20 18:36:41 -07002588
Mathias Agopianed985572013-03-22 00:24:39 -07002589 bool useReadPixels = false;
2590 if (isCpuConsumer) {
2591 bool formatSupportedBytBitmap =
2592 (flinger->mEGLNativeVisualId == HAL_PIXEL_FORMAT_RGBA_8888) ||
2593 (flinger->mEGLNativeVisualId == HAL_PIXEL_FORMAT_RGBX_8888);
2594 if (formatSupportedBytBitmap == false) {
2595 // the pixel format we have is not compatible with
2596 // Bitmap.java, which is the likely client of this API,
2597 // so we just revert to glReadPixels() in that case.
2598 useReadPixels = true;
2599 }
2600 if (flinger->mGpuToCpuSupported == false) {
2601 // When we know the GL->CPU path works, we can call
2602 // captureScreenImplLocked() directly, instead of using the
2603 // glReadPixels() workaround.
2604 useReadPixels = true;
2605 }
2606 }
2607
2608 if (!useReadPixels) {
Mathias Agopianb4b17302013-03-20 18:36:41 -07002609 result = flinger->captureScreenImplLocked(hw,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002610 producer, reqWidth, reqHeight, minLayerZ, maxLayerZ);
2611 } else {
Mathias Agopianb4b17302013-03-20 18:36:41 -07002612 result = flinger->captureScreenImplCpuConsumerLocked(hw,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002613 producer, reqWidth, reqHeight, minLayerZ, maxLayerZ);
2614 }
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002615 return true;
2616 }
2617 };
2618
Mathias Agopian9eb1f052013-04-10 16:27:17 -07002619 // make sure to process transactions before screenshots -- a transaction
2620 // might already be pending but scheduled for VSYNC; this guarantees we
2621 // will handle it before the screenshot. When VSYNC finally arrives
2622 // the scheduled transaction will be a no-op. If no transactions are
2623 // scheduled at this time, this will end-up being a no-op as well.
2624 mEventQueue.invalidateTransactionNow();
2625
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002626 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002627 display, producer, reqWidth, reqHeight, minLayerZ, maxLayerZ,
2628 isCpuConsumer);
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002629 status_t res = postMessageSync(msg);
2630 if (res == NO_ERROR) {
2631 res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult();
2632 }
2633 return res;
2634}
2635
Mathias Agopian180f10d2013-04-10 22:55:41 -07002636
2637void SurfaceFlinger::renderScreenImplLocked(
2638 const sp<const DisplayDevice>& hw,
2639 uint32_t reqWidth, uint32_t reqHeight,
2640 uint32_t minLayerZ, uint32_t maxLayerZ,
2641 bool yswap)
2642{
2643 ATRACE_CALL();
2644
2645 // get screen geometry
2646 const uint32_t hw_w = hw->getWidth();
2647 const uint32_t hw_h = hw->getHeight();
2648
2649 const bool filtering = reqWidth != hw_w || reqWidth != hw_h;
2650
2651 // make sure to clear all GL error flags
2652 while ( glGetError() != GL_NO_ERROR ) ;
2653
2654 // set-up our viewport
2655 glViewport(0, 0, reqWidth, reqHeight);
2656 glMatrixMode(GL_PROJECTION);
2657 glLoadIdentity();
2658 if (yswap) glOrthof(0, hw_w, hw_h, 0, 0, 1);
2659 else glOrthof(0, hw_w, 0, hw_h, 0, 1);
2660 glMatrixMode(GL_MODELVIEW);
2661 glLoadIdentity();
2662
2663 // redraw the screen entirely...
2664 glDisable(GL_SCISSOR_TEST);
2665 glClearColor(0,0,0,1);
2666 glClear(GL_COLOR_BUFFER_BIT);
2667 glDisable(GL_TEXTURE_EXTERNAL_OES);
2668 glDisable(GL_TEXTURE_2D);
2669
2670 const LayerVector& layers( mDrawingState.layersSortedByZ );
2671 const size_t count = layers.size();
2672 for (size_t i=0 ; i<count ; ++i) {
2673 const sp<Layer>& layer(layers[i]);
2674 const Layer::State& state(layer->drawingState());
2675 if (state.layerStack == hw->getLayerStack()) {
2676 if (state.z >= minLayerZ && state.z <= maxLayerZ) {
2677 if (layer->isVisible()) {
2678 if (filtering) layer->setFiltering(true);
2679 layer->draw(hw);
2680 if (filtering) layer->setFiltering(false);
2681 }
2682 }
2683 }
2684 }
2685
2686 // compositionComplete is needed for older driver
2687 hw->compositionComplete();
2688}
2689
2690
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002691status_t SurfaceFlinger::captureScreenImplLocked(
2692 const sp<const DisplayDevice>& hw,
2693 const sp<IGraphicBufferProducer>& producer,
2694 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopianbf2c6a62010-12-10 16:22:31 -08002695 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopian74c40c02010-09-29 13:02:36 -07002696{
Mathias Agopianfddc28d2012-03-12 15:18:42 -04002697 ATRACE_CALL();
2698
Mathias Agopian74c40c02010-09-29 13:02:36 -07002699 // get screen geometry
Mathias Agopian42977342012-08-05 00:40:46 -07002700 const uint32_t hw_w = hw->getWidth();
2701 const uint32_t hw_h = hw->getHeight();
Mathias Agopian74c40c02010-09-29 13:02:36 -07002702
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002703 // if we have secure windows on this display, never allow the screen capture
Mathias Agopian42977342012-08-05 00:40:46 -07002704 if (hw->getSecureLayerVisible()) {
Mathias Agopianef7b9c72012-08-10 15:22:19 -07002705 ALOGW("FB is protected: PERMISSION_DENIED");
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002706 return PERMISSION_DENIED;
2707 }
2708
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002709 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
2710 ALOGE("size mismatch (%d, %d) > (%d, %d)",
2711 reqWidth, reqHeight, hw_w, hw_h);
Mathias Agopian74c40c02010-09-29 13:02:36 -07002712 return BAD_VALUE;
Mathias Agopian3b1d2b62012-07-11 13:48:17 -07002713 }
Mathias Agopian74c40c02010-09-29 13:02:36 -07002714
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002715 reqWidth = (!reqWidth) ? hw_w : reqWidth;
2716 reqHeight = (!reqHeight) ? hw_h : reqHeight;
Mathias Agopian74c40c02010-09-29 13:02:36 -07002717
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002718 // Create a surface to render into
2719 sp<Surface> surface = new Surface(producer);
2720 ANativeWindow* const window = surface.get();
2721
2722 // set the buffer size to what the user requested
2723 native_window_set_buffers_user_dimensions(window, reqWidth, reqHeight);
2724
2725 // and create the corresponding EGLSurface
2726 EGLSurface eglSurface = eglCreateWindowSurface(
2727 mEGLDisplay, mEGLConfig, window, NULL);
2728 if (eglSurface == EGL_NO_SURFACE) {
2729 ALOGE("captureScreenImplLocked: eglCreateWindowSurface() failed 0x%4x",
2730 eglGetError());
2731 return BAD_VALUE;
2732 }
2733
2734 if (!eglMakeCurrent(mEGLDisplay, eglSurface, eglSurface, mEGLContext)) {
2735 ALOGE("captureScreenImplLocked: eglMakeCurrent() failed 0x%4x",
2736 eglGetError());
2737 eglDestroySurface(mEGLDisplay, eglSurface);
2738 return BAD_VALUE;
2739 }
Mathias Agopianc1d1b0d2011-01-16 14:05:02 -08002740
Mathias Agopian180f10d2013-04-10 22:55:41 -07002741 renderScreenImplLocked(hw, reqWidth, reqHeight, minLayerZ, maxLayerZ, false);
Mathias Agopiand5776412013-03-08 13:54:46 -08002742
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002743 // and finishing things up...
2744 if (eglSwapBuffers(mEGLDisplay, eglSurface) != EGL_TRUE) {
2745 ALOGE("captureScreenImplLocked: eglSwapBuffers() failed 0x%4x",
2746 eglGetError());
2747 eglDestroySurface(mEGLDisplay, eglSurface);
2748 return BAD_VALUE;
2749 }
2750
2751 eglDestroySurface(mEGLDisplay, eglSurface);
Mathias Agopianabe815d2013-03-19 22:22:21 -07002752
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002753 return NO_ERROR;
2754}
2755
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002756
Mathias Agopianabe815d2013-03-19 22:22:21 -07002757status_t SurfaceFlinger::captureScreenImplCpuConsumerLocked(
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002758 const sp<const DisplayDevice>& hw,
Mathias Agopianabe815d2013-03-19 22:22:21 -07002759 const sp<IGraphicBufferProducer>& producer,
2760 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002761 uint32_t minLayerZ, uint32_t maxLayerZ)
2762{
2763 ATRACE_CALL();
2764
2765 if (!GLExtensions::getInstance().haveFramebufferObject()) {
2766 return INVALID_OPERATION;
2767 }
2768
Mathias Agopian180f10d2013-04-10 22:55:41 -07002769 // get screen geometry
2770 const uint32_t hw_w = hw->getWidth();
2771 const uint32_t hw_h = hw->getHeight();
Mathias Agopian2a9fc492013-03-01 13:42:57 -08002772
Mathias Agopian180f10d2013-04-10 22:55:41 -07002773 // if we have secure windows on this display, never allow the screen capture
2774 if (hw->getSecureLayerVisible()) {
2775 ALOGW("FB is protected: PERMISSION_DENIED");
2776 return PERMISSION_DENIED;
Mathias Agopian74c40c02010-09-29 13:02:36 -07002777 }
2778
Mathias Agopian180f10d2013-04-10 22:55:41 -07002779 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
2780 ALOGE("size mismatch (%d, %d) > (%d, %d)",
2781 reqWidth, reqHeight, hw_w, hw_h);
2782 return BAD_VALUE;
2783 }
Mathias Agopianc1d1b0d2011-01-16 14:05:02 -08002784
Mathias Agopian180f10d2013-04-10 22:55:41 -07002785 reqWidth = (!reqWidth) ? hw_w : reqWidth;
2786 reqHeight = (!reqHeight) ? hw_h : reqHeight;
2787
2788 GLuint tname;
2789 glGenRenderbuffersOES(1, &tname);
2790 glBindRenderbufferOES(GL_RENDERBUFFER_OES, tname);
2791 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, reqWidth, reqHeight);
2792
2793 // create a FBO
2794 GLuint name;
2795 glGenFramebuffersOES(1, &name);
2796 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
2797 glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES,
2798 GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, tname);
2799
2800 GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
2801
2802 status_t result = NO_ERROR;
2803 if (status == GL_FRAMEBUFFER_COMPLETE_OES) {
2804
2805 renderScreenImplLocked(hw, reqWidth, reqHeight, minLayerZ, maxLayerZ, true);
2806
2807 // Below we render the screenshot into the
2808 // CpuConsumer using glReadPixels from our FBO.
2809 // Some older drivers don't support the GL->CPU path so we
2810 // have to wrap it with a CPU->CPU path, which is what
2811 // glReadPixels essentially is.
2812
2813 sp<Surface> sur = new Surface(producer);
2814 ANativeWindow* window = sur.get();
2815
2816 if (native_window_api_connect(window, NATIVE_WINDOW_API_CPU) == NO_ERROR) {
2817 int err = 0;
2818 err = native_window_set_buffers_dimensions(window, reqWidth, reqHeight);
2819 err |= native_window_set_buffers_format(window, HAL_PIXEL_FORMAT_RGBA_8888);
2820 err |= native_window_set_usage(window,
2821 GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_OFTEN);
2822
2823 if (err == NO_ERROR) {
2824 ANativeWindowBuffer* buffer;
2825 if (native_window_dequeue_buffer_and_wait(window, &buffer) == NO_ERROR) {
2826 sp<GraphicBuffer> buf = static_cast<GraphicBuffer*>(buffer);
2827 void* vaddr;
2828 if (buf->lock(GRALLOC_USAGE_SW_WRITE_OFTEN, &vaddr) == NO_ERROR) {
2829 glReadPixels(0, 0, buffer->stride, reqHeight,
2830 GL_RGBA, GL_UNSIGNED_BYTE, vaddr);
2831 buf->unlock();
2832 }
2833 window->queueBuffer(window, buffer, -1);
2834 }
2835 }
2836 native_window_api_disconnect(window, NATIVE_WINDOW_API_CPU);
2837 }
2838
2839 } else {
2840 ALOGE("got GL_FRAMEBUFFER_COMPLETE_OES while taking screenshot");
2841 result = INVALID_OPERATION;
2842 }
2843
2844 // back to main framebuffer
2845 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
2846 glDeleteRenderbuffersOES(1, &tname);
2847 glDeleteFramebuffersOES(1, &name);
2848
2849 DisplayDevice::setViewportAndProjection(hw);
Mathias Agopian2be4e8f2013-03-06 20:42:56 -08002850
Mathias Agopian74c40c02010-09-29 13:02:36 -07002851 return result;
2852}
2853
Mathias Agopian1b0b30d2010-09-24 11:26:58 -07002854// ---------------------------------------------------------------------------
2855
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002856SurfaceFlinger::LayerVector::LayerVector() {
2857}
2858
2859SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs)
Mathias Agopian13127d82013-03-05 17:47:11 -08002860 : SortedVector<sp<Layer> >(rhs) {
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002861}
2862
2863int SurfaceFlinger::LayerVector::do_compare(const void* lhs,
2864 const void* rhs) const
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002865{
Mathias Agopianbe246f82012-07-31 22:59:38 -07002866 // sort layers per layer-stack, then by z-order and finally by sequence
Mathias Agopian13127d82013-03-05 17:47:11 -08002867 const sp<Layer>& l(*reinterpret_cast<const sp<Layer>*>(lhs));
2868 const sp<Layer>& r(*reinterpret_cast<const sp<Layer>*>(rhs));
Mathias Agopianbe246f82012-07-31 22:59:38 -07002869
2870 uint32_t ls = l->currentState().layerStack;
2871 uint32_t rs = r->currentState().layerStack;
2872 if (ls != rs)
2873 return ls - rs;
2874
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002875 uint32_t lz = l->currentState().z;
2876 uint32_t rz = r->currentState().z;
Mathias Agopianbe246f82012-07-31 22:59:38 -07002877 if (lz != rz)
2878 return lz - rz;
2879
2880 return l->sequence - r->sequence;
Mathias Agopian921e6ac2012-07-23 23:11:29 -07002881}
2882
2883// ---------------------------------------------------------------------------
2884
Mathias Agopian3ee454a2012-08-27 16:28:24 -07002885SurfaceFlinger::DisplayDeviceState::DisplayDeviceState()
2886 : type(DisplayDevice::DISPLAY_ID_INVALID) {
Mathias Agopiane57f2922012-08-09 16:29:12 -07002887}
2888
Mathias Agopian3ee454a2012-08-27 16:28:24 -07002889SurfaceFlinger::DisplayDeviceState::DisplayDeviceState(DisplayDevice::DisplayType type)
Jesse Hall01e29052013-02-19 16:13:35 -08002890 : type(type), layerStack(DisplayDevice::NO_LAYER_STACK), orientation(0) {
Mathias Agopianda8d0a52012-09-04 15:05:38 -07002891 viewport.makeInvalid();
2892 frame.makeInvalid();
Mathias Agopianb7e930d2010-06-01 15:12:58 -07002893}
2894
2895// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002896
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08002897}; // namespace android