blob: 598220fd4c852519fbd3f14c964ed4bf6fcac14b [file] [log] [blame]
The Android Open Source Project9066cfe2009-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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017#include <stdlib.h>
18#include <stdio.h>
19#include <stdint.h>
20#include <unistd.h>
21#include <fcntl.h>
22#include <errno.h>
23#include <math.h>
Jean-Baptiste Queru20763732009-01-26 11:51:12 -080024#include <limits.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025#include <sys/types.h>
26#include <sys/stat.h>
27#include <sys/ioctl.h>
28
29#include <cutils/log.h>
30#include <cutils/properties.h>
31
Mathias Agopian07952722009-05-19 19:08:10 -070032#include <binder/IPCThreadState.h>
33#include <binder/IServiceManager.h>
Mathias Agopiand763b5d2009-07-02 18:11:53 -070034#include <binder/MemoryHeapBase.h>
Mathias Agopian0dd593f2011-06-27 16:05:52 -070035#include <binder/PermissionCache.h>
Mathias Agopiand763b5d2009-07-02 18:11:53 -070036
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037#include <utils/String8.h>
38#include <utils/String16.h>
39#include <utils/StopWatch.h>
40
Mathias Agopian6950e422009-10-05 17:07:12 -070041#include <ui/GraphicBufferAllocator.h>
Mathias Agopian04262e92010-09-13 22:57:58 -070042#include <ui/GraphicLog.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043#include <ui/PixelFormat.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45#include <pixelflinger/pixelflinger.h>
46#include <GLES/gl.h>
47
48#include "clz.h"
Mathias Agopian781953d2010-06-25 18:02:21 -070049#include "GLExtensions.h"
Mathias Agopian93d75ec2011-08-15 20:44:40 -070050#include "DdmConnection.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051#include "Layer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052#include "LayerDim.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053#include "SurfaceFlinger.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
55#include "DisplayHardware/DisplayHardware.h"
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070056#include "DisplayHardware/HWComposer.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057
Mathias Agopian7bb843c2011-04-20 14:20:59 -070058#include <private/surfaceflinger/SharedBufferStack.h>
59
Mathias Agopian627e7b52009-05-21 19:21:59 -070060/* ideally AID_GRAPHICS would be in a semi-public header
61 * or there would be a way to map a user/group name to its id
62 */
63#ifndef AID_GRAPHICS
64#define AID_GRAPHICS 1003
65#endif
66
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067#define DISPLAY_COUNT 1
68
69namespace android {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070// ---------------------------------------------------------------------------
71
Mathias Agopian0dd593f2011-06-27 16:05:52 -070072const String16 sHardwareTest("android.permission.HARDWARE_TEST");
73const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER");
74const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER");
75const String16 sDump("android.permission.DUMP");
76
77// ---------------------------------------------------------------------------
78
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079SurfaceFlinger::SurfaceFlinger()
80 : BnSurfaceComposer(), Thread(false),
81 mTransactionFlags(0),
Mathias Agopian9779b222009-09-07 16:32:45 -070082 mResizeTransationPending(false),
Mathias Agopian1473f462009-04-10 14:24:30 -070083 mLayersRemoved(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 mBootTime(systemTime()),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 mVisibleRegionsDirty(false),
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -070086 mHwWorkListDirty(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 mDeferReleaseConsole(false),
88 mFreezeDisplay(false),
Mathias Agopiand4e03f32010-10-14 14:54:06 -070089 mElectronBeamAnimationMode(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 mFreezeCount(0),
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070091 mFreezeDisplayTime(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 mDebugRegion(0),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 mDebugBackground(0),
Mathias Agopian93d75ec2011-08-15 20:44:40 -070094 mDebugDDMS(0),
Mathias Agopian6a969242010-09-22 18:58:01 -070095 mDebugDisableHWC(0),
Mathias Agopian2143fe02011-08-23 18:03:18 -070096 mDebugDisableTransformHint(0),
Mathias Agopiana8d49172009-08-26 16:36:26 -070097 mDebugInSwapBuffers(0),
98 mLastSwapBufferTime(0),
99 mDebugInTransaction(0),
100 mLastTransactionTime(0),
Mathias Agopian6950e422009-10-05 17:07:12 -0700101 mBootFinished(false),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 mConsoleSignals(0),
103 mSecureFrameBuffer(0)
104{
105 init();
106}
107
108void SurfaceFlinger::init()
109{
110 LOGI("SurfaceFlinger is starting");
111
112 // debugging stuff...
113 char value[PROPERTY_VALUE_MAX];
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700114
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 property_get("debug.sf.showupdates", value, "0");
116 mDebugRegion = atoi(value);
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700117
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 property_get("debug.sf.showbackground", value, "0");
119 mDebugBackground = atoi(value);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700121 property_get("debug.sf.ddms", value, "0");
122 mDebugDDMS = atoi(value);
123 if (mDebugDDMS) {
124 DdmConnection::start(getServiceName());
125 }
126
Mathias Agopiane5c0a7b2010-04-20 14:51:04 -0700127 LOGI_IF(mDebugRegion, "showupdates enabled");
128 LOGI_IF(mDebugBackground, "showbackground enabled");
Mathias Agopian93d75ec2011-08-15 20:44:40 -0700129 LOGI_IF(mDebugDDMS, "DDMS debugging enabled");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130}
131
132SurfaceFlinger::~SurfaceFlinger()
133{
134 glDeleteTextures(1, &mWormholeTexName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135}
136
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700137sp<IMemoryHeap> SurfaceFlinger::getCblk() const
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138{
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700139 return mServerHeap;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140}
141
Mathias Agopian770492c2010-05-28 14:22:23 -0700142sp<ISurfaceComposerClient> SurfaceFlinger::createConnection()
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143{
Mathias Agopian593c05c2010-06-02 23:28:45 -0700144 sp<ISurfaceComposerClient> bclient;
145 sp<Client> client(new Client(this));
146 status_t err = client->initCheck();
147 if (err == NO_ERROR) {
148 bclient = client;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 return bclient;
151}
152
Jamie Gennisf7acf162011-01-12 18:30:40 -0800153sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc()
154{
155 sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc());
156 return gba;
157}
Mathias Agopian7623da42010-06-01 15:12:58 -0700158
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159const GraphicPlane& SurfaceFlinger::graphicPlane(int dpy) const
160{
161 LOGE_IF(uint32_t(dpy) >= DISPLAY_COUNT, "Invalid DisplayID %d", dpy);
162 const GraphicPlane& plane(mGraphicPlanes[dpy]);
163 return plane;
164}
165
166GraphicPlane& SurfaceFlinger::graphicPlane(int dpy)
167{
168 return const_cast<GraphicPlane&>(
169 const_cast<SurfaceFlinger const *>(this)->graphicPlane(dpy));
170}
171
172void SurfaceFlinger::bootFinished()
173{
174 const nsecs_t now = systemTime();
175 const nsecs_t duration = now - mBootTime;
Andreas Hubere3c01832010-08-16 08:49:37 -0700176 LOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
Mathias Agopian6950e422009-10-05 17:07:12 -0700177 mBootFinished = true;
Mathias Agopian0c63ef52011-07-01 17:08:43 -0700178
179 // wait patiently for the window manager death
180 const String16 name("window");
181 sp<IBinder> window(defaultServiceManager()->getService(name));
182 if (window != 0) {
183 window->linkToDeath(this);
184 }
185
186 // stop boot animation
Mathias Agopian627e7b52009-05-21 19:21:59 -0700187 property_set("ctl.stop", "bootanim");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800188}
189
Mathias Agopian0c63ef52011-07-01 17:08:43 -0700190void SurfaceFlinger::binderDied(const wp<IBinder>& who)
191{
192 // the window manager died on us. prepare its eulogy.
193
194 // unfreeze the screen in case it was... frozen
195 mFreezeDisplayTime = 0;
196 mFreezeCount = 0;
197 mFreezeDisplay = false;
198
199 // reset screen orientation
200 setOrientation(0, eOrientationDefault, 0);
201
202 // restart the boot-animation
203 property_set("ctl.start", "bootanim");
204}
205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206void SurfaceFlinger::onFirstRef()
207{
208 run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY);
209
210 // Wait for the main thread to be done with its initialization
211 mReadyToRunBarrier.wait();
212}
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214static inline uint16_t pack565(int r, int g, int b) {
215 return (r<<11)|(g<<5)|b;
216}
217
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218status_t SurfaceFlinger::readyToRun()
219{
220 LOGI( "SurfaceFlinger's main thread ready to run. "
221 "Initializing graphics H/W...");
222
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 // we only support one display currently
224 int dpy = 0;
225
226 {
227 // initialize the main display
228 GraphicPlane& plane(graphicPlane(dpy));
229 DisplayHardware* const hw = new DisplayHardware(this, dpy);
230 plane.setDisplayHardware(hw);
231 }
232
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700233 // create the shared control-block
234 mServerHeap = new MemoryHeapBase(4096,
235 MemoryHeapBase::READ_ONLY, "SurfaceFlinger read-only heap");
236 LOGE_IF(mServerHeap==0, "can't create shared memory dealer");
Andreas Hubere3c01832010-08-16 08:49:37 -0700237
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700238 mServerCblk = static_cast<surface_flinger_cblk_t*>(mServerHeap->getBase());
239 LOGE_IF(mServerCblk==0, "can't get to shared control block's address");
Andreas Hubere3c01832010-08-16 08:49:37 -0700240
Mathias Agopiand763b5d2009-07-02 18:11:53 -0700241 new(mServerCblk) surface_flinger_cblk_t;
242
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 // initialize primary screen
244 // (other display should be initialized in the same manner, but
245 // asynchronously, as they could come and go. None of this is supported
246 // yet).
247 const GraphicPlane& plane(graphicPlane(dpy));
248 const DisplayHardware& hw = plane.displayHardware();
249 const uint32_t w = hw.getWidth();
250 const uint32_t h = hw.getHeight();
251 const uint32_t f = hw.getFormat();
252 hw.makeCurrent();
253
254 // initialize the shared control block
255 mServerCblk->connected |= 1<<dpy;
256 display_cblk_t* dcblk = mServerCblk->displays + dpy;
257 memset(dcblk, 0, sizeof(display_cblk_t));
Mathias Agopian66c77a52010-02-08 15:49:35 -0800258 dcblk->w = plane.getWidth();
259 dcblk->h = plane.getHeight();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 dcblk->format = f;
261 dcblk->orientation = ISurfaceComposer::eOrientationDefault;
262 dcblk->xdpi = hw.getDpiX();
263 dcblk->ydpi = hw.getDpiY();
264 dcblk->fps = hw.getRefreshRate();
265 dcblk->density = hw.getDensity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266
267 // Initialize OpenGL|ES
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800268 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
Andreas Hubere3c01832010-08-16 08:49:37 -0700269 glPixelStorei(GL_PACK_ALIGNMENT, 4);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800270 glEnableClientState(GL_VERTEX_ARRAY);
271 glEnable(GL_SCISSOR_TEST);
272 glShadeModel(GL_FLAT);
273 glDisable(GL_DITHER);
274 glDisable(GL_CULL_FACE);
275
276 const uint16_t g0 = pack565(0x0F,0x1F,0x0F);
277 const uint16_t g1 = pack565(0x17,0x2f,0x17);
278 const uint16_t textureData[4] = { g0, g1, g1, g0 };
279 glGenTextures(1, &mWormholeTexName);
280 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
281 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
282 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
283 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
284 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
285 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0,
286 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, textureData);
287
288 glViewport(0, 0, w, h);
289 glMatrixMode(GL_PROJECTION);
290 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -0700291 // put the origin in the left-bottom corner
292 glOrthof(0, w, 0, h, 0, 1); // l=0, r=w ; b=0, t=h
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800293
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 mReadyToRunBarrier.open();
295
296 /*
297 * We're now ready to accept clients...
298 */
299
Mathias Agopian627e7b52009-05-21 19:21:59 -0700300 // start boot animation
301 property_set("ctl.start", "bootanim");
Andreas Hubere3c01832010-08-16 08:49:37 -0700302
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 return NO_ERROR;
304}
305
306// ----------------------------------------------------------------------------
307#if 0
308#pragma mark -
309#pragma mark Events Handler
310#endif
311
312void SurfaceFlinger::waitForEvent()
313{
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700314 while (true) {
315 nsecs_t timeout = -1;
Mathias Agopian0e449762009-12-01 17:23:28 -0800316 const nsecs_t freezeDisplayTimeout = ms2ns(5000);
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700317 if (UNLIKELY(isFrozen())) {
318 // wait 5 seconds
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700319 const nsecs_t now = systemTime();
320 if (mFreezeDisplayTime == 0) {
321 mFreezeDisplayTime = now;
322 }
323 nsecs_t waitTime = freezeDisplayTimeout - (now - mFreezeDisplayTime);
324 timeout = waitTime>0 ? waitTime : 0;
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700325 }
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700326
Mathias Agopian898c4c92010-05-18 17:06:55 -0700327 sp<MessageBase> msg = mEventQueue.waitMessage(timeout);
Mathias Agopian0e449762009-12-01 17:23:28 -0800328
329 // see if we timed out
330 if (isFrozen()) {
331 const nsecs_t now = systemTime();
332 nsecs_t frozenTime = (now - mFreezeDisplayTime);
333 if (frozenTime >= freezeDisplayTimeout) {
334 // we timed out and are still frozen
335 LOGW("timeout expired mFreezeDisplay=%d, mFreezeCount=%d",
336 mFreezeDisplay, mFreezeCount);
337 mFreezeDisplayTime = 0;
338 mFreezeCount = 0;
339 mFreezeDisplay = false;
340 }
341 }
342
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700343 if (msg != 0) {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700344 switch (msg->what) {
345 case MessageQueue::INVALIDATE:
346 // invalidate message, just return to the main loop
347 return;
348 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800349 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 }
351}
352
353void SurfaceFlinger::signalEvent() {
Mathias Agopian6ead5d92009-04-20 19:39:12 -0700354 mEventQueue.invalidate();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800355}
356
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700357bool SurfaceFlinger::authenticateSurfaceTexture(
358 const sp<ISurfaceTexture>& surfaceTexture) const {
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800359 Mutex::Autolock _l(mStateLock);
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700360 sp<IBinder> surfaceTextureBinder(surfaceTexture->asBinder());
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800361
362 // Check the visible layer list for the ISurface
363 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
364 size_t count = currentLayers.size();
365 for (size_t i=0 ; i<count ; i++) {
366 const sp<LayerBase>& layer(currentLayers[i]);
367 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700368 if (lbc != NULL) {
369 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
370 if (lbcBinder == surfaceTextureBinder) {
371 return true;
372 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800373 }
374 }
375
376 // Check the layers in the purgatory. This check is here so that if a
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700377 // SurfaceTexture gets destroyed before all the clients are done using it,
378 // the error will not be reported as "surface XYZ is not authenticated", but
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800379 // will instead fail later on when the client tries to use the surface,
380 // which should be reported as "surface XYZ returned an -ENODEV". The
381 // purgatorized layers are no less authentic than the visible ones, so this
382 // should not cause any harm.
383 size_t purgatorySize = mLayerPurgatory.size();
384 for (size_t i=0 ; i<purgatorySize ; i++) {
385 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
386 sp<LayerBaseClient> lbc(layer->getLayerBaseClient());
Jamie Gennis9b8fc652011-08-17 18:19:00 -0700387 if (lbc != NULL) {
388 wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder();
389 if (lbcBinder == surfaceTextureBinder) {
390 return true;
391 }
Jamie Gennisd2acedf2011-03-08 12:18:54 -0800392 }
393 }
394
395 return false;
396}
397
Mathias Agopian898c4c92010-05-18 17:06:55 -0700398status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg,
399 nsecs_t reltime, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400{
Mathias Agopian898c4c92010-05-18 17:06:55 -0700401 return mEventQueue.postMessage(msg, reltime, flags);
402}
403
404status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg,
405 nsecs_t reltime, uint32_t flags)
406{
407 status_t res = mEventQueue.postMessage(msg, reltime, flags);
408 if (res == NO_ERROR) {
409 msg->wait();
410 }
411 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412}
413
414// ----------------------------------------------------------------------------
415#if 0
416#pragma mark -
417#pragma mark Main loop
418#endif
419
420bool SurfaceFlinger::threadLoop()
421{
422 waitForEvent();
423
424 // check for transactions
425 if (UNLIKELY(mConsoleSignals)) {
426 handleConsoleEvents();
427 }
428
Mathias Agopian439863f2011-06-28 19:09:31 -0700429 // if we're in a global transaction, don't do anything.
430 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
431 uint32_t transactionFlags = peekTransactionFlags(mask);
432 if (UNLIKELY(transactionFlags)) {
433 handleTransaction(transactionFlags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434 }
435
436 // post surfaces (if needed)
437 handlePageFlip();
438
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700439 if (UNLIKELY(mHwWorkListDirty)) {
440 // build the h/w work list
441 handleWorkList();
442 }
443
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian81384bf2009-09-27 22:47:27 -0700445 if (LIKELY(hw.canDraw() && !isFrozen())) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 // repaint the framebuffer (if needed)
Mathias Agopian04262e92010-09-13 22:57:58 -0700447
448 const int index = hw.getCurrentBufferIndex();
449 GraphicLog& logger(GraphicLog::getInstance());
450
451 logger.log(GraphicLog::SF_REPAINT, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800452 handleRepaint();
453
Mathias Agopianb1a18742009-09-17 16:18:16 -0700454 // inform the h/w that we're done compositing
Mathias Agopian04262e92010-09-13 22:57:58 -0700455 logger.log(GraphicLog::SF_COMPOSITION_COMPLETE, index);
Mathias Agopianb1a18742009-09-17 16:18:16 -0700456 hw.compositionComplete();
457
Mathias Agopian04262e92010-09-13 22:57:58 -0700458 logger.log(GraphicLog::SF_SWAP_BUFFERS, index);
Antti Hatala4c0a4a22010-09-08 06:37:14 -0700459 postFramebuffer();
460
Mathias Agopian04262e92010-09-13 22:57:58 -0700461 logger.log(GraphicLog::SF_REPAINT_DONE, index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 } else {
463 // pretend we did the post
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -0800464 hw.compositionComplete();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 usleep(16667); // 60 fps period
466 }
467 return true;
468}
469
470void SurfaceFlinger::postFramebuffer()
471{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 if (!mInvalidRegion.isEmpty()) {
473 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopiana8d49172009-08-26 16:36:26 -0700474 const nsecs_t now = systemTime();
475 mDebugInSwapBuffers = now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 hw.flip(mInvalidRegion);
Mathias Agopiana8d49172009-08-26 16:36:26 -0700477 mLastSwapBufferTime = systemTime() - now;
478 mDebugInSwapBuffers = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 mInvalidRegion.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 }
481}
482
483void SurfaceFlinger::handleConsoleEvents()
484{
485 // something to do with the console
486 const DisplayHardware& hw = graphicPlane(0).displayHardware();
487
488 int what = android_atomic_and(0, &mConsoleSignals);
489 if (what & eConsoleAcquired) {
490 hw.acquireScreen();
Mathias Agopian2d2b8032010-10-12 16:05:48 -0700491 // this is a temporary work-around, eventually this should be called
492 // by the power-manager
Mathias Agopiand4e03f32010-10-14 14:54:06 -0700493 SurfaceFlinger::turnElectronBeamOn(mElectronBeamAnimationMode);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
495
Mathias Agopianaab758e2010-10-11 12:37:43 -0700496 if (mDeferReleaseConsole && hw.isScreenAcquired()) {
Mathias Agopianed81f222009-04-14 23:02:51 -0700497 // We got the release signal before the acquire signal
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 mDeferReleaseConsole = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 hw.releaseScreen();
500 }
501
502 if (what & eConsoleReleased) {
Mathias Agopianaab758e2010-10-11 12:37:43 -0700503 if (hw.isScreenAcquired()) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504 hw.releaseScreen();
505 } else {
506 mDeferReleaseConsole = true;
507 }
508 }
509
510 mDirtyRegion.set(hw.bounds());
511}
512
513void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
514{
Mathias Agopian69608112011-05-19 15:38:14 -0700515 Mutex::Autolock _l(mStateLock);
516 const nsecs_t now = systemTime();
517 mDebugInTransaction = now;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800518
Mathias Agopian69608112011-05-19 15:38:14 -0700519 // Here we're guaranteed that some transaction flags are set
520 // so we can call handleTransactionLocked() unconditionally.
521 // We call getTransactionFlags(), which will also clear the flags,
522 // with mStateLock held to guarantee that mCurrentState won't change
523 // until the transaction is committed.
Mathias Agopianff1d4102010-08-10 17:19:56 -0700524
Mathias Agopian69608112011-05-19 15:38:14 -0700525 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
526 transactionFlags = getTransactionFlags(mask);
527 handleTransactionLocked(transactionFlags);
Mathias Agopian6dcb1552011-05-03 17:04:02 -0700528
Mathias Agopian69608112011-05-19 15:38:14 -0700529 mLastTransactionTime = systemTime() - now;
530 mDebugInTransaction = 0;
531 invalidateHwcGeometry();
532 // here the transaction has been committed
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700533}
534
Mathias Agopian69608112011-05-19 15:38:14 -0700535void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags)
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700536{
537 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800538 const size_t count = currentLayers.size();
539
540 /*
541 * Traversal of the children
542 * (perform the transaction for each of them if needed)
543 */
544
545 const bool layersNeedTransaction = transactionFlags & eTraversalNeeded;
546 if (layersNeedTransaction) {
547 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700548 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
550 if (!trFlags) continue;
551
552 const uint32_t flags = layer->doTransaction(0);
553 if (flags & Layer::eVisibleRegion)
554 mVisibleRegionsDirty = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 }
556 }
557
558 /*
559 * Perform our own transaction if needed
560 */
561
562 if (transactionFlags & eTransactionNeeded) {
563 if (mCurrentState.orientation != mDrawingState.orientation) {
564 // the orientation has changed, recompute all visible regions
565 // and invalidate everything.
566
567 const int dpy = 0;
568 const int orientation = mCurrentState.orientation;
Mathias Agopianeb0c86e2009-03-27 18:11:38 -0700569 const uint32_t type = mCurrentState.orientationType;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 GraphicPlane& plane(graphicPlane(dpy));
571 plane.setOrientation(orientation);
572
573 // update the shared control block
574 const DisplayHardware& hw(plane.displayHardware());
575 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
576 dcblk->orientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -0800577 dcblk->w = plane.getWidth();
578 dcblk->h = plane.getHeight();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579
580 mVisibleRegionsDirty = true;
581 mDirtyRegion.set(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 }
583
584 if (mCurrentState.freezeDisplay != mDrawingState.freezeDisplay) {
585 // freezing or unfreezing the display -> trigger animation if needed
586 mFreezeDisplay = mCurrentState.freezeDisplay;
Mathias Agopian31901cc2010-03-01 17:51:17 -0800587 if (mFreezeDisplay)
588 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 }
590
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700591 if (currentLayers.size() > mDrawingState.layersSortedByZ.size()) {
592 // layers have been added
593 mVisibleRegionsDirty = true;
594 }
595
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800596 // some layers might have been removed, so
597 // we need to update the regions they're exposing.
Mathias Agopian1473f462009-04-10 14:24:30 -0700598 if (mLayersRemoved) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -0700599 mLayersRemoved = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800600 mVisibleRegionsDirty = true;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700601 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
Mathias Agopian2d5ee252009-06-04 18:46:21 -0700602 const size_t count = previousLayers.size();
603 for (size_t i=0 ; i<count ; i++) {
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700604 const sp<LayerBase>& layer(previousLayers[i]);
605 if (currentLayers.indexOf( layer ) < 0) {
606 // this layer is not visible anymore
Mathias Agopian33863dd2009-07-28 14:20:21 -0700607 mDirtyRegionRemovedLayer.orSelf(layer->visibleRegionScreen);
Mathias Agopiana3aa6c92009-04-22 15:23:34 -0700608 }
609 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800610 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800611 }
612
613 commitTransaction();
614}
615
616sp<FreezeLock> SurfaceFlinger::getFreezeLock() const
617{
618 return new FreezeLock(const_cast<SurfaceFlinger *>(this));
619}
620
621void SurfaceFlinger::computeVisibleRegions(
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800622 const LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800623{
624 const GraphicPlane& plane(graphicPlane(0));
625 const Transform& planeTransform(plane.transform());
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700626 const DisplayHardware& hw(plane.displayHardware());
627 const Region screenRegion(hw.bounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800628
629 Region aboveOpaqueLayers;
630 Region aboveCoveredLayers;
631 Region dirty;
632
633 bool secureFrameBuffer = false;
634
635 size_t i = currentLayers.size();
636 while (i--) {
Mathias Agopian1473f462009-04-10 14:24:30 -0700637 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638 layer->validateVisibility(planeTransform);
639
640 // start with the whole surface at its current location
Mathias Agopian12cedff2009-07-28 10:57:27 -0700641 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700643 /*
644 * opaqueRegion: area of a surface that is fully opaque.
645 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 Region opaqueRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700647
648 /*
649 * visibleRegion: area of a surface that is visible on screen
650 * and not fully transparent. This is essentially the layer's
651 * footprint minus the opaque regions above it.
652 * Areas covered by a translucent surface are considered visible.
653 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800654 Region visibleRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700655
656 /*
657 * coveredRegion: area of a surface that is covered by all
658 * visible regions above it (which includes the translucent areas).
659 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800660 Region coveredRegion;
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700661
662
663 // handle hidden surfaces by setting the visible region to empty
Mathias Agopian12cedff2009-07-28 10:57:27 -0700664 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700665 const bool translucent = !layer->isOpaque();
Mathias Agopian12cedff2009-07-28 10:57:27 -0700666 const Rect bounds(layer->visibleBounds());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800667 visibleRegion.set(bounds);
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700668 visibleRegion.andSelf(screenRegion);
669 if (!visibleRegion.isEmpty()) {
670 // Remove the transparent area from the visible region
671 if (translucent) {
672 visibleRegion.subtractSelf(layer->transparentRegionScreen);
673 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700675 // compute the opaque region
676 const int32_t layerOrientation = layer->getOrientation();
677 if (s.alpha==255 && !translucent &&
678 ((layerOrientation & Transform::ROT_INVALID) == false)) {
679 // the opaque region is the layer's footprint
680 opaqueRegion = visibleRegion;
681 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800682 }
683 }
684
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700685 // Clip the covered region to the visible region
686 coveredRegion = aboveCoveredLayers.intersect(visibleRegion);
687
688 // Update aboveCoveredLayers for next (lower) layer
689 aboveCoveredLayers.orSelf(visibleRegion);
690
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691 // subtract the opaque region covered by the layers above us
692 visibleRegion.subtractSelf(aboveOpaqueLayers);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800693
694 // compute this layer's dirty region
695 if (layer->contentDirty) {
696 // we need to invalidate the whole region
697 dirty = visibleRegion;
698 // as well, as the old visible region
699 dirty.orSelf(layer->visibleRegionScreen);
700 layer->contentDirty = false;
701 } else {
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700702 /* compute the exposed region:
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700703 * the exposed region consists of two components:
704 * 1) what's VISIBLE now and was COVERED before
705 * 2) what's EXPOSED now less what was EXPOSED before
706 *
707 * note that (1) is conservative, we start with the whole
708 * visible region but only keep what used to be covered by
709 * something -- which mean it may have been exposed.
710 *
711 * (2) handles areas that were not covered by anything but got
712 * exposed because of a resize.
Mathias Agopian0aed7e92009-06-28 02:54:16 -0700713 */
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700714 const Region newExposed = visibleRegion - coveredRegion;
715 const Region oldVisibleRegion = layer->visibleRegionScreen;
716 const Region oldCoveredRegion = layer->coveredRegionScreen;
717 const Region oldExposed = oldVisibleRegion - oldCoveredRegion;
718 dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 }
720 dirty.subtractSelf(aboveOpaqueLayers);
721
722 // accumulate to the screen dirty region
723 dirtyRegion.orSelf(dirty);
724
Mathias Agopian9c041bb2010-03-16 16:41:46 -0700725 // Update aboveOpaqueLayers for next (lower) layer
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 aboveOpaqueLayers.orSelf(opaqueRegion);
Andreas Hubere3c01832010-08-16 08:49:37 -0700727
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800728 // Store the visible region is screen space
729 layer->setVisibleRegion(visibleRegion);
730 layer->setCoveredRegion(coveredRegion);
731
Mathias Agopian12cedff2009-07-28 10:57:27 -0700732 // If a secure layer is partially visible, lock-down the screen!
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800733 if (layer->isSecure() && !visibleRegion.isEmpty()) {
734 secureFrameBuffer = true;
735 }
736 }
737
Mathias Agopian12cedff2009-07-28 10:57:27 -0700738 // invalidate the areas where a layer was removed
739 dirtyRegion.orSelf(mDirtyRegionRemovedLayer);
740 mDirtyRegionRemovedLayer.clear();
741
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 mSecureFrameBuffer = secureFrameBuffer;
743 opaqueRegion = aboveOpaqueLayers;
744}
745
746
747void SurfaceFlinger::commitTransaction()
748{
749 mDrawingState = mCurrentState;
Mathias Agopian9779b222009-09-07 16:32:45 -0700750 mResizeTransationPending = false;
751 mTransactionCV.broadcast();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800752}
753
754void SurfaceFlinger::handlePageFlip()
755{
756 bool visibleRegions = mVisibleRegionsDirty;
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800757 const LayerVector& currentLayers(mDrawingState.layersSortedByZ);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800758 visibleRegions |= lockPageFlip(currentLayers);
759
760 const DisplayHardware& hw = graphicPlane(0).displayHardware();
761 const Region screenRegion(hw.bounds());
762 if (visibleRegions) {
763 Region opaqueRegion;
764 computeVisibleRegions(currentLayers, mDirtyRegion, opaqueRegion);
Mathias Agopianff1d4102010-08-10 17:19:56 -0700765
766 /*
767 * rebuild the visible layer list
768 */
Mathias Agopianf0ff9062011-03-11 16:54:47 -0800769 const size_t count = currentLayers.size();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700770 mVisibleLayersSortedByZ.clear();
Mathias Agopianff1d4102010-08-10 17:19:56 -0700771 mVisibleLayersSortedByZ.setCapacity(count);
772 for (size_t i=0 ; i<count ; i++) {
773 if (!currentLayers[i]->visibleRegionScreen.isEmpty())
774 mVisibleLayersSortedByZ.add(currentLayers[i]);
775 }
776
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 mWormholeRegion = screenRegion.subtract(opaqueRegion);
778 mVisibleRegionsDirty = false;
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800779 invalidateHwcGeometry();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 }
781
782 unlockPageFlip(currentLayers);
783 mDirtyRegion.andSelf(screenRegion);
784}
785
Mathias Agopianfb4dcb12011-01-13 17:53:01 -0800786void SurfaceFlinger::invalidateHwcGeometry()
787{
788 mHwWorkListDirty = true;
789}
790
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800791bool SurfaceFlinger::lockPageFlip(const LayerVector& currentLayers)
792{
793 bool recomputeVisibleRegions = false;
794 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700795 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800796 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700797 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800798 layer->lockPageFlip(recomputeVisibleRegions);
799 }
800 return recomputeVisibleRegions;
801}
802
803void SurfaceFlinger::unlockPageFlip(const LayerVector& currentLayers)
804{
805 const GraphicPlane& plane(graphicPlane(0));
806 const Transform& planeTransform(plane.transform());
807 size_t count = currentLayers.size();
Mathias Agopian1473f462009-04-10 14:24:30 -0700808 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800809 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700810 const sp<LayerBase>& layer(layers[i]);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800811 layer->unlockPageFlip(planeTransform, mDirtyRegion);
812 }
813}
814
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700815void SurfaceFlinger::handleWorkList()
816{
817 mHwWorkListDirty = false;
818 HWComposer& hwc(graphicPlane(0).displayHardware().getHwComposer());
819 if (hwc.initCheck() == NO_ERROR) {
820 const Vector< sp<LayerBase> >& currentLayers(mVisibleLayersSortedByZ);
821 const size_t count = currentLayers.size();
822 hwc.createWorkList(count);
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700823 hwc_layer_t* const cur(hwc.getLayers());
824 for (size_t i=0 ; cur && i<count ; i++) {
825 currentLayers[i]->setGeometry(&cur[i]);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -0700826 if (mDebugDisableHWC || mDebugRegion) {
Mathias Agopian6a969242010-09-22 18:58:01 -0700827 cur[i].compositionType = HWC_FRAMEBUFFER;
828 cur[i].flags |= HWC_SKIP_LAYER;
829 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700830 }
831 }
832}
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700833
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800834void SurfaceFlinger::handleRepaint()
835{
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700836 // compute the invalid region
837 mInvalidRegion.orSelf(mDirtyRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800838
839 if (UNLIKELY(mDebugRegion)) {
840 debugFlashRegions();
841 }
842
Mathias Agopian8c9687a2009-06-26 19:06:36 -0700843 // set the frame buffer
844 const DisplayHardware& hw(graphicPlane(0).displayHardware());
845 glMatrixMode(GL_MODELVIEW);
846 glLoadIdentity();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800847
848 uint32_t flags = hw.getFlags();
Andreas Hubere3c01832010-08-16 08:49:37 -0700849 if ((flags & DisplayHardware::SWAP_RECTANGLE) ||
850 (flags & DisplayHardware::BUFFER_PRESERVED))
Mathias Agopian2e20bff2009-05-04 19:29:25 -0700851 {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700852 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
853 // takes a rectangle, we must make sure to update that whole
854 // rectangle in that case
855 if (flags & DisplayHardware::SWAP_RECTANGLE) {
Mathias Agopian7623da42010-06-01 15:12:58 -0700856 // TODO: we really should be able to pass a region to
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700857 // SWAP_RECTANGLE so that we don't have to redraw all this.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800858 mDirtyRegion.set(mInvalidRegion.bounds());
859 } else {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700860 // in the BUFFER_PRESERVED case, obviously, we can update only
861 // what's needed and nothing more.
862 // NOTE: this is NOT a common case, as preserving the backbuffer
863 // is costly and usually involves copying the whole update back.
864 }
865 } else {
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700866 if (flags & DisplayHardware::PARTIAL_UPDATES) {
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700867 // We need to redraw the rectangle that will be updated
868 // (pushed to the framebuffer).
Mathias Agopianf2d28b72009-09-24 14:57:26 -0700869 // This is needed because PARTIAL_UPDATES only takes one
Mathias Agopianecfa7cc2009-06-29 18:49:56 -0700870 // rectangle instead of a region (see DisplayHardware::flip())
871 mDirtyRegion.set(mInvalidRegion.bounds());
872 } else {
873 // we need to redraw everything (the whole screen)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800874 mDirtyRegion.set(hw.bounds());
875 mInvalidRegion = mDirtyRegion;
876 }
877 }
878
879 // compose all surfaces
880 composeSurfaces(mDirtyRegion);
881
882 // clear the dirty regions
883 mDirtyRegion.clear();
884}
885
886void SurfaceFlinger::composeSurfaces(const Region& dirty)
887{
888 if (UNLIKELY(!mWormholeRegion.isEmpty())) {
889 // should never happen unless the window manager has a bug
890 // draw something...
891 drawWormhole();
892 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700893
894 status_t err = NO_ERROR;
Mathias Agopianff1d4102010-08-10 17:19:56 -0700895 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700896 size_t count = layers.size();
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700897
898 const DisplayHardware& hw(graphicPlane(0).displayHardware());
899 HWComposer& hwc(hw.getHwComposer());
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700900 hwc_layer_t* const cur(hwc.getLayers());
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700901
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700902 LOGE_IF(cur && hwc.getNumLayers() != count,
903 "HAL number of layers (%d) doesn't match surfaceflinger (%d)",
904 hwc.getNumLayers(), count);
905
906 // just to be extra-safe, use the smallest count
Erik Gilling0cf2f432010-08-12 23:21:40 -0700907 if (hwc.initCheck() == NO_ERROR) {
908 count = count < hwc.getNumLayers() ? count : hwc.getNumLayers();
909 }
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700910
911 /*
912 * update the per-frame h/w composer data for each layer
913 * and build the transparent region of the FB
914 */
915 Region transparent;
916 if (cur) {
917 for (size_t i=0 ; i<count ; i++) {
918 const sp<LayerBase>& layer(layers[i]);
919 layer->setPerFrameData(&cur[i]);
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700920 }
921 err = hwc.prepare();
922 LOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err));
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700923
Mathias Agopian45491692011-01-19 15:24:23 -0800924 if (err == NO_ERROR) {
925 for (size_t i=0 ; i<count ; i++) {
926 if (cur[i].hints & HWC_HINT_CLEAR_FB) {
927 const sp<LayerBase>& layer(layers[i]);
Mathias Agopian7bb843c2011-04-20 14:20:59 -0700928 if (layer->isOpaque()) {
Mathias Agopian45491692011-01-19 15:24:23 -0800929 transparent.orSelf(layer->visibleRegionScreen);
930 }
931 }
932 }
933
934 /*
935 * clear the area of the FB that need to be transparent
936 */
937 transparent.andSelf(dirty);
938 if (!transparent.isEmpty()) {
939 glClearColor(0,0,0,0);
940 Region::const_iterator it = transparent.begin();
941 Region::const_iterator const end = transparent.end();
942 const int32_t height = hw.getHeight();
943 while (it != end) {
944 const Rect& r(*it++);
945 const GLint sy = height - (r.top + r.height());
946 glScissor(r.left, sy, r.width(), r.height());
947 glClear(GL_COLOR_BUFFER_BIT);
948 }
949 }
Mathias Agopiane0d5f5b2010-08-10 17:14:02 -0700950 }
951 }
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700952
953
954 /*
955 * and then, render the layers targeted at the framebuffer
956 */
957 for (size_t i=0 ; i<count ; i++) {
958 if (cur) {
Antti Hatala982f58b2010-09-09 02:32:30 -0700959 if ((cur[i].compositionType != HWC_FRAMEBUFFER) &&
960 !(cur[i].flags & HWC_SKIP_LAYER)) {
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700961 // skip layers handled by the HAL
962 continue;
963 }
964 }
Mathias Agopian6a969242010-09-22 18:58:01 -0700965
Mathias Agopianf8e705d2010-08-12 15:03:26 -0700966 const sp<LayerBase>& layer(layers[i]);
967 const Region clip(dirty.intersect(layer->visibleRegionScreen));
968 if (!clip.isEmpty()) {
969 layer->draw(clip);
970 }
971 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800972}
973
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800974void SurfaceFlinger::debugFlashRegions()
975{
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700976 const DisplayHardware& hw(graphicPlane(0).displayHardware());
977 const uint32_t flags = hw.getFlags();
Mathias Agopian7f76a3c2011-08-22 21:44:41 -0700978 const int32_t height = hw.getHeight();
979 if (mInvalidRegion.isEmpty()) {
980 return;
981 }
Mathias Agopian2e20bff2009-05-04 19:29:25 -0700982
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700983 if (!((flags & DisplayHardware::SWAP_RECTANGLE) ||
984 (flags & DisplayHardware::BUFFER_PRESERVED))) {
985 const Region repaint((flags & DisplayHardware::PARTIAL_UPDATES) ?
986 mDirtyRegion.bounds() : hw.bounds());
987 composeSurfaces(repaint);
988 }
989
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800990 glDisable(GL_BLEND);
991 glDisable(GL_DITHER);
992 glDisable(GL_SCISSOR_TEST);
993
Mathias Agopiandff8e582009-05-04 14:17:04 -0700994 static int toggle = 0;
995 toggle = 1 - toggle;
996 if (toggle) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700997 glColor4f(1, 0, 1, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -0700998 } else {
Mathias Agopianf8b4b442010-06-14 21:20:00 -0700999 glColor4f(1, 1, 0, 1);
Mathias Agopiandff8e582009-05-04 14:17:04 -07001000 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001001
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001002 Region::const_iterator it = mDirtyRegion.begin();
1003 Region::const_iterator const end = mDirtyRegion.end();
1004 while (it != end) {
1005 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001006 GLfloat vertices[][2] = {
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001007 { r.left, height - r.top },
1008 { r.left, height - r.bottom },
1009 { r.right, height - r.bottom },
1010 { r.right, height - r.top }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001011 };
1012 glVertexPointer(2, GL_FLOAT, 0, vertices);
1013 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1014 }
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001015
Mathias Agopian8c9687a2009-06-26 19:06:36 -07001016 hw.flip(mInvalidRegion);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017
1018 if (mDebugRegion > 1)
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001019 usleep(mDebugRegion * 1000);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001020
1021 glEnable(GL_SCISSOR_TEST);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001022}
1023
1024void SurfaceFlinger::drawWormhole() const
1025{
1026 const Region region(mWormholeRegion.intersect(mDirtyRegion));
1027 if (region.isEmpty())
1028 return;
1029
1030 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1031 const int32_t width = hw.getWidth();
1032 const int32_t height = hw.getHeight();
1033
1034 glDisable(GL_BLEND);
1035 glDisable(GL_DITHER);
1036
1037 if (LIKELY(!mDebugBackground)) {
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001038 glClearColor(0,0,0,0);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001039 Region::const_iterator it = region.begin();
1040 Region::const_iterator const end = region.end();
1041 while (it != end) {
1042 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 const GLint sy = height - (r.top + r.height());
1044 glScissor(r.left, sy, r.width(), r.height());
1045 glClear(GL_COLOR_BUFFER_BIT);
1046 }
1047 } else {
1048 const GLshort vertices[][2] = { { 0, 0 }, { width, 0 },
1049 { width, height }, { 0, height } };
1050 const GLshort tcoords[][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } };
1051 glVertexPointer(2, GL_SHORT, 0, vertices);
1052 glTexCoordPointer(2, GL_SHORT, 0, tcoords);
1053 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
Michael I. Golde20a56d2010-09-15 15:46:24 -07001054#if defined(GL_OES_EGL_image_external)
Mathias Agopian781953d2010-06-25 18:02:21 -07001055 if (GLExtensions::getInstance().haveTextureExternal()) {
1056 glDisable(GL_TEXTURE_EXTERNAL_OES);
1057 }
Mathias Agopianf8b4b442010-06-14 21:20:00 -07001058#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001059 glEnable(GL_TEXTURE_2D);
1060 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
1061 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1062 glMatrixMode(GL_TEXTURE);
1063 glLoadIdentity();
1064 glScalef(width*(1.0f/32.0f), height*(1.0f/32.0f), 1);
Mathias Agopian6158b1b2009-05-11 00:03:41 -07001065 Region::const_iterator it = region.begin();
1066 Region::const_iterator const end = region.end();
1067 while (it != end) {
1068 const Rect& r = *it++;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001069 const GLint sy = height - (r.top + r.height());
1070 glScissor(r.left, sy, r.width(), r.height());
1071 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1072 }
1073 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001074 glDisable(GL_TEXTURE_2D);
Mathias Agopian04a709e42010-12-14 18:38:36 -08001075 glLoadIdentity();
1076 glMatrixMode(GL_MODELVIEW);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001077 }
1078}
1079
1080void SurfaceFlinger::debugShowFPS() const
1081{
1082 static int mFrameCount;
1083 static int mLastFrameCount = 0;
1084 static nsecs_t mLastFpsTime = 0;
1085 static float mFps = 0;
1086 mFrameCount++;
1087 nsecs_t now = systemTime();
1088 nsecs_t diff = now - mLastFpsTime;
1089 if (diff > ms2ns(250)) {
1090 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
1091 mLastFpsTime = now;
1092 mLastFrameCount = mFrameCount;
1093 }
1094 // XXX: mFPS has the value we want
1095 }
1096
Mathias Agopian1473f462009-04-10 14:24:30 -07001097status_t SurfaceFlinger::addLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001098{
1099 Mutex::Autolock _l(mStateLock);
1100 addLayer_l(layer);
1101 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1102 return NO_ERROR;
1103}
1104
Mathias Agopian593c05c2010-06-02 23:28:45 -07001105status_t SurfaceFlinger::addLayer_l(const sp<LayerBase>& layer)
1106{
Mathias Agopian1efba9a2010-08-10 18:09:09 -07001107 ssize_t i = mCurrentState.layersSortedByZ.add(layer);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001108 return (i < 0) ? status_t(i) : status_t(NO_ERROR);
1109}
1110
1111ssize_t SurfaceFlinger::addClientLayer(const sp<Client>& client,
1112 const sp<LayerBaseClient>& lbc)
1113{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001114 // attach this layer to the client
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001115 size_t name = client->attachLayer(lbc);
1116
1117 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001118
1119 // add this layer to the current state list
1120 addLayer_l(lbc);
1121
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07001122 return ssize_t(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001123}
1124
Mathias Agopian1473f462009-04-10 14:24:30 -07001125status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001126{
1127 Mutex::Autolock _l(mStateLock);
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001128 status_t err = purgatorizeLayer_l(layer);
1129 if (err == NO_ERROR)
1130 setTransactionFlags(eTransactionNeeded);
1131 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001132}
1133
Mathias Agopian1473f462009-04-10 14:24:30 -07001134status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001135{
Mathias Agopian7623da42010-06-01 15:12:58 -07001136 sp<LayerBaseClient> lbc(layerBase->getLayerBaseClient());
1137 if (lbc != 0) {
Mathias Agopiand35c6662011-01-25 20:17:45 -08001138 mLayerMap.removeItem( lbc->getSurfaceBinder() );
Mathias Agopian7623da42010-06-01 15:12:58 -07001139 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001140 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase);
1141 if (index >= 0) {
Mathias Agopian1473f462009-04-10 14:24:30 -07001142 mLayersRemoved = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001143 return NO_ERROR;
1144 }
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001145 return status_t(index);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146}
1147
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001148status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase)
1149{
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001150 // First add the layer to the purgatory list, which makes sure it won't
1151 // go away, then remove it from the main list (through a transaction).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001152 ssize_t err = removeLayer_l(layerBase);
Mathias Agopianf4dfe1b2011-01-14 17:37:42 -08001153 if (err >= 0) {
1154 mLayerPurgatory.add(layerBase);
1155 }
Mathias Agopian2e4b68d2009-09-23 16:44:00 -07001156
Mathias Agopian0c4cec72009-10-02 18:12:30 -07001157 layerBase->onRemoved();
1158
Mathias Agopian2d5ee252009-06-04 18:46:21 -07001159 // it's possible that we don't find a layer, because it might
1160 // have been destroyed already -- this is not technically an error
Mathias Agopian593c05c2010-06-02 23:28:45 -07001161 // from the user because there is a race between Client::destroySurface(),
1162 // ~Client() and ~ISurface().
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001163 return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err;
1164}
1165
Mathias Agopian593c05c2010-06-02 23:28:45 -07001166status_t SurfaceFlinger::invalidateLayerVisibility(const sp<LayerBase>& layer)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001167{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001168 layer->forceVisibilityTransaction();
1169 setTransactionFlags(eTraversalNeeded);
1170 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001171}
1172
Mathias Agopian6dcb1552011-05-03 17:04:02 -07001173uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t flags)
1174{
1175 return android_atomic_release_load(&mTransactionFlags);
1176}
1177
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001178uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1179{
1180 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1181}
1182
Mathias Agopian898c4c92010-05-18 17:06:55 -07001183uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001184{
1185 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1186 if ((old & flags)==0) { // wake the server up
Mathias Agopian898c4c92010-05-18 17:06:55 -07001187 signalEvent();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001188 }
1189 return old;
1190}
1191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001192
Mathias Agopian439863f2011-06-28 19:09:31 -07001193void SurfaceFlinger::setTransactionState(const Vector<ComposerState>& state) {
1194 Mutex::Autolock _l(mStateLock);
Mathias Agopian9779b222009-09-07 16:32:45 -07001195
Mathias Agopian439863f2011-06-28 19:09:31 -07001196 uint32_t flags = 0;
1197 const size_t count = state.size();
1198 for (size_t i=0 ; i<count ; i++) {
1199 const ComposerState& s(state[i]);
1200 sp<Client> client( static_cast<Client *>(s.client.get()) );
1201 flags |= setClientStateLocked(client, s.state);
1202 }
1203 if (flags) {
1204 setTransactionFlags(flags);
1205 }
1206
1207 signalEvent();
1208
1209 // if there is a transaction with a resize, wait for it to
1210 // take effect before returning.
1211 while (mResizeTransationPending) {
1212 status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5));
1213 if (CC_UNLIKELY(err != NO_ERROR)) {
1214 // just in case something goes wrong in SF, return to the
1215 // called after a few seconds.
1216 LOGW_IF(err == TIMED_OUT, "closeGlobalTransaction timed out!");
1217 mResizeTransationPending = false;
1218 break;
Mathias Agopian9779b222009-09-07 16:32:45 -07001219 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001220 }
1221}
1222
1223status_t SurfaceFlinger::freezeDisplay(DisplayID dpy, uint32_t flags)
1224{
1225 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1226 return BAD_VALUE;
1227
1228 Mutex::Autolock _l(mStateLock);
1229 mCurrentState.freezeDisplay = 1;
1230 setTransactionFlags(eTransactionNeeded);
1231
1232 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001233 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001234 return NO_ERROR;
1235}
1236
1237status_t SurfaceFlinger::unfreezeDisplay(DisplayID dpy, uint32_t flags)
1238{
1239 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1240 return BAD_VALUE;
1241
1242 Mutex::Autolock _l(mStateLock);
1243 mCurrentState.freezeDisplay = 0;
1244 setTransactionFlags(eTransactionNeeded);
1245
1246 // flags is intended to communicate some sort of animation behavior
Mathias Agopianed81f222009-04-14 23:02:51 -07001247 // (for instance fading)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001248 return NO_ERROR;
1249}
1250
Andreas Hubere3c01832010-08-16 08:49:37 -07001251int SurfaceFlinger::setOrientation(DisplayID dpy,
Mathias Agopianeb0c86e2009-03-27 18:11:38 -07001252 int orientation, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001253{
1254 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1255 return BAD_VALUE;
1256
1257 Mutex::Autolock _l(mStateLock);
1258 if (mCurrentState.orientation != orientation) {
1259 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
Mathias Agopianeb0c86e2009-03-27 18:11:38 -07001260 mCurrentState.orientationType = flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001261 mCurrentState.orientation = orientation;
1262 setTransactionFlags(eTransactionNeeded);
1263 mTransactionCV.wait(mStateLock);
1264 } else {
1265 orientation = BAD_VALUE;
1266 }
1267 }
1268 return orientation;
1269}
1270
Mathias Agopian9638e5c2011-04-20 14:19:32 -07001271sp<ISurface> SurfaceFlinger::createSurface(
1272 ISurfaceComposerClient::surface_data_t* params,
1273 const String8& name,
1274 const sp<Client>& client,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001275 DisplayID d, uint32_t w, uint32_t h, PixelFormat format,
1276 uint32_t flags)
1277{
Mathias Agopian1473f462009-04-10 14:24:30 -07001278 sp<LayerBaseClient> layer;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001279 sp<ISurface> surfaceHandle;
Mathias Agopian4d2dbeb2009-07-09 18:16:43 -07001280
1281 if (int32_t(w|h) < 0) {
1282 LOGE("createSurface() failed, w or h is negative (w=%d, h=%d)",
1283 int(w), int(h));
1284 return surfaceHandle;
1285 }
Andreas Hubere3c01832010-08-16 08:49:37 -07001286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001287 //LOGD("createSurface for pid %d (%d x %d)", pid, w, h);
Mathias Agopian7623da42010-06-01 15:12:58 -07001288 sp<Layer> normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001289 switch (flags & eFXSurfaceMask) {
1290 case eFXSurfaceNormal:
Mathias Agopiand2112302010-12-07 19:38:17 -08001291 normalLayer = createNormalSurface(client, d, w, h, flags, format);
1292 layer = normalLayer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001293 break;
1294 case eFXSurfaceBlur:
Mathias Agopianc3802d22010-12-08 17:13:19 -08001295 // for now we treat Blur as Dim, until we can implement it
1296 // efficiently.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001297 case eFXSurfaceDim:
Mathias Agopian593c05c2010-06-02 23:28:45 -07001298 layer = createDimSurface(client, d, w, h, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001299 break;
1300 }
1301
Mathias Agopian1473f462009-04-10 14:24:30 -07001302 if (layer != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001303 layer->initStates(w, h, flags);
Mathias Agopian5d26c1e2010-03-01 16:09:43 -08001304 layer->setName(name);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001305 ssize_t token = addClientLayer(client, layer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001306
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001307 surfaceHandle = layer->getSurface();
Andreas Hubere3c01832010-08-16 08:49:37 -07001308 if (surfaceHandle != 0) {
Mathias Agopian593c05c2010-06-02 23:28:45 -07001309 params->token = token;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001310 params->identity = layer->getIdentity();
Mathias Agopian7623da42010-06-01 15:12:58 -07001311 if (normalLayer != 0) {
1312 Mutex::Autolock _l(mStateLock);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001313 mLayerMap.add(layer->getSurfaceBinder(), normalLayer);
Mathias Agopian7623da42010-06-01 15:12:58 -07001314 }
Mathias Agopian18b6b492009-08-19 17:46:26 -07001315 }
Mathias Agopian7623da42010-06-01 15:12:58 -07001316
Mathias Agopian593c05c2010-06-02 23:28:45 -07001317 setTransactionFlags(eTransactionNeeded);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 }
1319
1320 return surfaceHandle;
1321}
1322
Mathias Agopian7623da42010-06-01 15:12:58 -07001323sp<Layer> SurfaceFlinger::createNormalSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001324 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001325 uint32_t w, uint32_t h, uint32_t flags,
Mathias Agopian18b6b492009-08-19 17:46:26 -07001326 PixelFormat& format)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001327{
1328 // initialize the surfaces
1329 switch (format) { // TODO: take h/w into account
1330 case PIXEL_FORMAT_TRANSPARENT:
1331 case PIXEL_FORMAT_TRANSLUCENT:
1332 format = PIXEL_FORMAT_RGBA_8888;
1333 break;
1334 case PIXEL_FORMAT_OPAQUE:
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001335#ifdef NO_RGBX_8888
1336 format = PIXEL_FORMAT_RGB_565;
1337#else
Mathias Agopian59962ce2010-04-05 18:01:24 -07001338 format = PIXEL_FORMAT_RGBX_8888;
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001339#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001340 break;
1341 }
1342
Mathias Agopian4cfb3a62010-06-30 15:43:47 -07001343#ifdef NO_RGBX_8888
1344 if (format == PIXEL_FORMAT_RGBX_8888)
1345 format = PIXEL_FORMAT_RGBA_8888;
1346#endif
1347
Mathias Agopian593c05c2010-06-02 23:28:45 -07001348 sp<Layer> layer = new Layer(this, display, client);
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001349 status_t err = layer->setBuffers(w, h, format, flags);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001350 if (LIKELY(err != NO_ERROR)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001351 LOGE("createNormalSurfaceLocked() failed (%s)", strerror(-err));
Mathias Agopian1473f462009-04-10 14:24:30 -07001352 layer.clear();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001353 }
1354 return layer;
1355}
1356
Mathias Agopian7623da42010-06-01 15:12:58 -07001357sp<LayerDim> SurfaceFlinger::createDimSurface(
Mathias Agopian6edf5af2009-06-19 17:00:27 -07001358 const sp<Client>& client, DisplayID display,
Mathias Agopian593c05c2010-06-02 23:28:45 -07001359 uint32_t w, uint32_t h, uint32_t flags)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001360{
Mathias Agopian593c05c2010-06-02 23:28:45 -07001361 sp<LayerDim> layer = new LayerDim(this, display, client);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001362 layer->initStates(w, h, flags);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001363 return layer;
1364}
1365
Mathias Agopian593c05c2010-06-02 23:28:45 -07001366status_t SurfaceFlinger::removeSurface(const sp<Client>& client, SurfaceID sid)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001367{
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001368 /*
1369 * called by the window manager, when a surface should be marked for
1370 * destruction.
Andreas Hubere3c01832010-08-16 08:49:37 -07001371 *
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001372 * The surface is removed from the current and drawing lists, but placed
1373 * in the purgatory queue, so it's not destroyed right-away (we need
1374 * to wait for all client's references to go away first).
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001375 */
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001376
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001377 status_t err = NAME_NOT_FOUND;
Mathias Agopiana3aa6c92009-04-22 15:23:34 -07001378 Mutex::Autolock _l(mStateLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07001379 sp<LayerBaseClient> layer = client->getLayerUser(sid);
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001380 if (layer != 0) {
1381 err = purgatorizeLayer_l(layer);
1382 if (err == NO_ERROR) {
Mathias Agopian248b5bd2009-09-10 19:41:18 -07001383 setTransactionFlags(eTransactionNeeded);
1384 }
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001385 }
1386 return err;
1387}
1388
Mathias Agopian69608112011-05-19 15:38:14 -07001389status_t SurfaceFlinger::destroySurface(const wp<LayerBaseClient>& layer)
Mathias Agopian6cf0db22009-04-17 19:36:26 -07001390{
Mathias Agopian359140c2009-07-02 17:33:40 -07001391 // called by ~ISurface() when all references are gone
Mathias Agopian69608112011-05-19 15:38:14 -07001392 status_t err = NO_ERROR;
1393 sp<LayerBaseClient> l(layer.promote());
1394 if (l != NULL) {
1395 Mutex::Autolock _l(mStateLock);
1396 err = removeLayer_l(l);
1397 if (err == NAME_NOT_FOUND) {
1398 // The surface wasn't in the current list, which means it was
1399 // removed already, which means it is in the purgatory,
1400 // and need to be removed from there.
1401 ssize_t idx = mLayerPurgatory.remove(l);
1402 LOGE_IF(idx < 0,
1403 "layer=%p is not in the purgatory list", l.get());
Mathias Agopian6ead5d92009-04-20 19:39:12 -07001404 }
Mathias Agopian69608112011-05-19 15:38:14 -07001405 LOGE_IF(err<0 && err != NAME_NOT_FOUND,
1406 "error removing layer=%p (%s)", l.get(), strerror(-err));
1407 }
1408 return err;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001409}
1410
Mathias Agopian439863f2011-06-28 19:09:31 -07001411uint32_t SurfaceFlinger::setClientStateLocked(
Mathias Agopian593c05c2010-06-02 23:28:45 -07001412 const sp<Client>& client,
Mathias Agopian439863f2011-06-28 19:09:31 -07001413 const layer_state_t& s)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001414{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001415 uint32_t flags = 0;
Mathias Agopian439863f2011-06-28 19:09:31 -07001416 sp<LayerBaseClient> layer(client->getLayerUser(s.surface));
1417 if (layer != 0) {
1418 const uint32_t what = s.what;
1419 if (what & ePositionChanged) {
1420 if (layer->setPosition(s.x, s.y))
1421 flags |= eTraversalNeeded;
1422 }
1423 if (what & eLayerChanged) {
1424 ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer);
1425 if (layer->setLayer(s.z)) {
1426 mCurrentState.layersSortedByZ.removeAt(idx);
1427 mCurrentState.layersSortedByZ.add(layer);
1428 // we need traversal (state changed)
1429 // AND transaction (list changed)
1430 flags |= eTransactionNeeded|eTraversalNeeded;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001431 }
1432 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001433 if (what & eSizeChanged) {
1434 if (layer->setSize(s.w, s.h)) {
1435 flags |= eTraversalNeeded;
1436 mResizeTransationPending = true;
1437 }
1438 }
1439 if (what & eAlphaChanged) {
1440 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1441 flags |= eTraversalNeeded;
1442 }
1443 if (what & eMatrixChanged) {
1444 if (layer->setMatrix(s.matrix))
1445 flags |= eTraversalNeeded;
1446 }
1447 if (what & eTransparentRegionChanged) {
1448 if (layer->setTransparentRegionHint(s.transparentRegion))
1449 flags |= eTraversalNeeded;
1450 }
1451 if (what & eVisibilityChanged) {
1452 if (layer->setFlags(s.flags, s.mask))
1453 flags |= eTraversalNeeded;
1454 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001455 }
Mathias Agopian439863f2011-06-28 19:09:31 -07001456 return flags;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001457}
1458
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001459void SurfaceFlinger::screenReleased(int dpy)
1460{
1461 // this may be called by a signal handler, we can't do too much in here
1462 android_atomic_or(eConsoleReleased, &mConsoleSignals);
1463 signalEvent();
1464}
1465
1466void SurfaceFlinger::screenAcquired(int dpy)
1467{
1468 // this may be called by a signal handler, we can't do too much in here
1469 android_atomic_or(eConsoleAcquired, &mConsoleSignals);
1470 signalEvent();
1471}
1472
1473status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
1474{
Erik Gilling94720d72010-12-01 16:38:01 -08001475 const size_t SIZE = 4096;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001476 char buffer[SIZE];
1477 String8 result;
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001478
1479 if (!PermissionCache::checkCallingPermission(sDump)) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001480 snprintf(buffer, SIZE, "Permission Denial: "
1481 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
1482 IPCThreadState::self()->getCallingPid(),
1483 IPCThreadState::self()->getCallingUid());
1484 result.append(buffer);
1485 } else {
Mathias Agopiana8d49172009-08-26 16:36:26 -07001486
1487 // figure out if we're stuck somewhere
1488 const nsecs_t now = systemTime();
1489 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
1490 const nsecs_t inTransaction(mDebugInTransaction);
1491 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
1492 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
1493
1494 // Try to get the main lock, but don't insist if we can't
1495 // (this would indicate SF is stuck, but we want to be able to
1496 // print something in dumpsys).
1497 int retry = 3;
1498 while (mStateLock.tryLock()<0 && --retry>=0) {
1499 usleep(1000000);
1500 }
1501 const bool locked(retry >= 0);
1502 if (!locked) {
Andreas Hubere3c01832010-08-16 08:49:37 -07001503 snprintf(buffer, SIZE,
Mathias Agopiana8d49172009-08-26 16:36:26 -07001504 "SurfaceFlinger appears to be unresponsive, "
1505 "dumping anyways (no locks held)\n");
1506 result.append(buffer);
1507 }
1508
Mathias Agopian06a61e22011-01-19 16:15:53 -08001509 /*
1510 * Dump the visible layer list
1511 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001512 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
1513 const size_t count = currentLayers.size();
Mathias Agopian06a61e22011-01-19 16:15:53 -08001514 snprintf(buffer, SIZE, "Visible layers (count = %d)\n", count);
1515 result.append(buffer);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001516 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian9bce8732010-04-20 17:55:49 -07001517 const sp<LayerBase>& layer(currentLayers[i]);
1518 layer->dump(result, buffer, SIZE);
1519 const Layer::State& s(layer->drawingState());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001520 s.transparentRegion.dump(result, "transparentRegion");
1521 layer->transparentRegionScreen.dump(result, "transparentRegionScreen");
1522 layer->visibleRegionScreen.dump(result, "visibleRegionScreen");
1523 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001524
Mathias Agopian06a61e22011-01-19 16:15:53 -08001525 /*
1526 * Dump the layers in the purgatory
1527 */
1528
1529 const size_t purgatorySize = mLayerPurgatory.size();
1530 snprintf(buffer, SIZE, "Purgatory state (%d entries)\n", purgatorySize);
1531 result.append(buffer);
1532 for (size_t i=0 ; i<purgatorySize ; i++) {
1533 const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i));
1534 layer->shortDump(result, buffer, SIZE);
1535 }
1536
1537 /*
1538 * Dump SurfaceFlinger global state
1539 */
1540
Mathias Agopianab951172011-07-14 18:01:49 -07001541 snprintf(buffer, SIZE, "SurfaceFlinger global state:\n");
Mathias Agopian06a61e22011-01-19 16:15:53 -08001542 result.append(buffer);
Mathias Agopianab951172011-07-14 18:01:49 -07001543
1544 const GLExtensions& extensions(GLExtensions::getInstance());
1545 snprintf(buffer, SIZE, "GLES: %s, %s, %s\n",
1546 extensions.getVendor(),
1547 extensions.getRenderer(),
1548 extensions.getVersion());
1549 result.append(buffer);
1550 snprintf(buffer, SIZE, "EXTS: %s\n", extensions.getExtension());
1551 result.append(buffer);
1552
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001553 mWormholeRegion.dump(result, "WormholeRegion");
1554 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1555 snprintf(buffer, SIZE,
1556 " display frozen: %s, freezeCount=%d, orientation=%d, canDraw=%d\n",
1557 mFreezeDisplay?"yes":"no", mFreezeCount,
1558 mCurrentState.orientation, hw.canDraw());
1559 result.append(buffer);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001560 snprintf(buffer, SIZE,
1561 " last eglSwapBuffers() time: %f us\n"
1562 " last transaction time : %f us\n",
1563 mLastSwapBufferTime/1000.0, mLastTransactionTime/1000.0);
1564 result.append(buffer);
Mathias Agopian9bce8732010-04-20 17:55:49 -07001565
Mathias Agopiana8d49172009-08-26 16:36:26 -07001566 if (inSwapBuffersDuration || !locked) {
1567 snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n",
1568 inSwapBuffersDuration/1000.0);
1569 result.append(buffer);
1570 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001571
Mathias Agopiana8d49172009-08-26 16:36:26 -07001572 if (inTransactionDuration || !locked) {
1573 snprintf(buffer, SIZE, " transaction time: %f us\n",
1574 inTransactionDuration/1000.0);
1575 result.append(buffer);
1576 }
Mathias Agopian9bce8732010-04-20 17:55:49 -07001577
Mathias Agopian06a61e22011-01-19 16:15:53 -08001578 /*
1579 * Dump HWComposer state
1580 */
Mathias Agopian6a969242010-09-22 18:58:01 -07001581 HWComposer& hwc(hw.getHwComposer());
1582 snprintf(buffer, SIZE, " h/w composer %s and %s\n",
1583 hwc.initCheck()==NO_ERROR ? "present" : "not present",
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001584 (mDebugDisableHWC || mDebugRegion) ? "disabled" : "enabled");
Mathias Agopian6a969242010-09-22 18:58:01 -07001585 result.append(buffer);
Mathias Agopian90da4dd2010-09-23 18:13:21 -07001586 hwc.dump(result, buffer, SIZE);
Mathias Agopian6a969242010-09-22 18:58:01 -07001587
Mathias Agopian06a61e22011-01-19 16:15:53 -08001588 /*
1589 * Dump gralloc state
1590 */
Mathias Agopian6950e422009-10-05 17:07:12 -07001591 const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get());
Mathias Agopian1473f462009-04-10 14:24:30 -07001592 alloc.dump(result);
Erik Gilling94720d72010-12-01 16:38:01 -08001593 hw.dump(result);
Mathias Agopiana8d49172009-08-26 16:36:26 -07001594
1595 if (locked) {
1596 mStateLock.unlock();
1597 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001598 }
1599 write(fd, result.string(), result.size());
1600 return NO_ERROR;
1601}
1602
1603status_t SurfaceFlinger::onTransact(
1604 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1605{
1606 switch (code) {
1607 case CREATE_CONNECTION:
Mathias Agopian439863f2011-06-28 19:09:31 -07001608 case SET_TRANSACTION_STATE:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001609 case SET_ORIENTATION:
1610 case FREEZE_DISPLAY:
1611 case UNFREEZE_DISPLAY:
1612 case BOOT_FINISHED:
Mathias Agopianaab758e2010-10-11 12:37:43 -07001613 case TURN_ELECTRON_BEAM_OFF:
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001614 case TURN_ELECTRON_BEAM_ON:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001615 {
1616 // codes that require permission check
1617 IPCThreadState* ipc = IPCThreadState::self();
1618 const int pid = ipc->getCallingPid();
Mathias Agopian627e7b52009-05-21 19:21:59 -07001619 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001620 if ((uid != AID_GRAPHICS) &&
1621 !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001622 LOGE("Permission Denial: "
1623 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
1624 return PERMISSION_DENIED;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001625 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001626 break;
1627 }
1628 case CAPTURE_SCREEN:
1629 {
1630 // codes that require permission check
1631 IPCThreadState* ipc = IPCThreadState::self();
1632 const int pid = ipc->getCallingPid();
1633 const int uid = ipc->getCallingUid();
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001634 if ((uid != AID_GRAPHICS) &&
1635 !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) {
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001636 LOGE("Permission Denial: "
1637 "can't read framebuffer pid=%d, uid=%d", pid, uid);
1638 return PERMISSION_DENIED;
1639 }
1640 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001641 }
1642 }
Mathias Agopianca5edbe2010-09-24 11:26:58 -07001643
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001644 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
1645 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopian8c9687a2009-06-26 19:06:36 -07001646 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Mathias Agopian0dd593f2011-06-27 16:05:52 -07001647 if (UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) {
Mathias Agopian151e8592009-06-15 18:24:59 -07001648 IPCThreadState* ipc = IPCThreadState::self();
1649 const int pid = ipc->getCallingPid();
1650 const int uid = ipc->getCallingUid();
1651 LOGE("Permission Denial: "
1652 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001653 return PERMISSION_DENIED;
1654 }
1655 int n;
1656 switch (code) {
Mathias Agopian17f638b2009-04-16 20:04:08 -07001657 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
Mathias Agopian04262e92010-09-13 22:57:58 -07001658 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001659 return NO_ERROR;
1660 case 1002: // SHOW_UPDATES
1661 n = data.readInt32();
1662 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001663 invalidateHwcGeometry();
1664 repaintEverything();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001665 return NO_ERROR;
1666 case 1003: // SHOW_BACKGROUND
1667 n = data.readInt32();
1668 mDebugBackground = n ? 1 : 0;
1669 return NO_ERROR;
1670 case 1004:{ // repaint everything
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001671 repaintEverything();
Mathias Agopian9779b222009-09-07 16:32:45 -07001672 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001673 }
Mathias Agopian9779b222009-09-07 16:32:45 -07001674 case 1005:{ // force transaction
1675 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1676 return NO_ERROR;
1677 }
Mathias Agopian04262e92010-09-13 22:57:58 -07001678 case 1006:{ // enable/disable GraphicLog
1679 int enabled = data.readInt32();
1680 GraphicLog::getInstance().setEnabled(enabled);
1681 return NO_ERROR;
1682 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001683 case 1007: // set mFreezeCount
1684 mFreezeCount = data.readInt32();
Mathias Agopian0e449762009-12-01 17:23:28 -08001685 mFreezeDisplayTime = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001686 return NO_ERROR;
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001687 case 1008: // toggle use of hw composer
1688 n = data.readInt32();
1689 mDebugDisableHWC = n ? 1 : 0;
1690 invalidateHwcGeometry();
1691 repaintEverything();
1692 return NO_ERROR;
Mathias Agopian2143fe02011-08-23 18:03:18 -07001693 case 1009: // toggle use of transform hint
1694 n = data.readInt32();
1695 mDebugDisableTransformHint = n ? 1 : 0;
1696 invalidateHwcGeometry();
1697 repaintEverything();
1698 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001699 case 1010: // interrogate.
Mathias Agopian17f638b2009-04-16 20:04:08 -07001700 reply->writeInt32(0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001701 reply->writeInt32(0);
1702 reply->writeInt32(mDebugRegion);
1703 reply->writeInt32(mDebugBackground);
1704 return NO_ERROR;
1705 case 1013: {
1706 Mutex::Autolock _l(mStateLock);
1707 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1708 reply->writeInt32(hw.getPageFlipCount());
1709 }
1710 return NO_ERROR;
1711 }
1712 }
1713 return err;
1714}
1715
Mathias Agopian7f76a3c2011-08-22 21:44:41 -07001716void SurfaceFlinger::repaintEverything() {
1717 Mutex::Autolock _l(mStateLock);
1718 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1719 mDirtyRegion.set(hw.bounds()); // careful that's not thread-safe
1720 signalEvent();
1721}
1722
Mathias Agopianaab758e2010-10-11 12:37:43 -07001723// ---------------------------------------------------------------------------
1724
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001725status_t SurfaceFlinger::renderScreenToTextureLocked(DisplayID dpy,
1726 GLuint* textureName, GLfloat* uOut, GLfloat* vOut)
Mathias Agopianaab758e2010-10-11 12:37:43 -07001727{
Mathias Agopianaab758e2010-10-11 12:37:43 -07001728 if (!GLExtensions::getInstance().haveFramebufferObject())
1729 return INVALID_OPERATION;
1730
1731 // get screen geometry
Mathias Agopianaab758e2010-10-11 12:37:43 -07001732 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
Mathias Agopianaab758e2010-10-11 12:37:43 -07001733 const uint32_t hw_w = hw.getWidth();
1734 const uint32_t hw_h = hw.getHeight();
Mathias Agopianaab758e2010-10-11 12:37:43 -07001735 GLfloat u = 1;
1736 GLfloat v = 1;
1737
1738 // make sure to clear all GL error flags
1739 while ( glGetError() != GL_NO_ERROR ) ;
1740
1741 // create a FBO
1742 GLuint name, tname;
1743 glGenTextures(1, &tname);
1744 glBindTexture(GL_TEXTURE_2D, tname);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001745 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1746 hw_w, hw_h, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001747 if (glGetError() != GL_NO_ERROR) {
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07001748 while ( glGetError() != GL_NO_ERROR ) ;
Mathias Agopianaab758e2010-10-11 12:37:43 -07001749 GLint tw = (2 << (31 - clz(hw_w)));
1750 GLint th = (2 << (31 - clz(hw_h)));
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001751 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB,
1752 tw, th, 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001753 u = GLfloat(hw_w) / tw;
1754 v = GLfloat(hw_h) / th;
1755 }
1756 glGenFramebuffersOES(1, &name);
1757 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001758 glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES,
1759 GL_COLOR_ATTACHMENT0_OES, GL_TEXTURE_2D, tname, 0);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001760
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001761 // redraw the screen entirely...
1762 glClearColor(0,0,0,1);
1763 glClear(GL_COLOR_BUFFER_BIT);
1764 const Vector< sp<LayerBase> >& layers(mVisibleLayersSortedByZ);
1765 const size_t count = layers.size();
1766 for (size_t i=0 ; i<count ; ++i) {
1767 const sp<LayerBase>& layer(layers[i]);
1768 layer->drawForSreenShot();
1769 }
1770
1771 // back to main framebuffer
1772 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1773 glDisable(GL_SCISSOR_TEST);
1774 glDeleteFramebuffersOES(1, &name);
1775
1776 *textureName = tname;
1777 *uOut = u;
1778 *vOut = v;
1779 return NO_ERROR;
1780}
1781
1782// ---------------------------------------------------------------------------
1783
1784status_t SurfaceFlinger::electronBeamOffAnimationImplLocked()
1785{
1786 status_t result = PERMISSION_DENIED;
1787
1788 if (!GLExtensions::getInstance().haveFramebufferObject())
1789 return INVALID_OPERATION;
1790
1791 // get screen geometry
1792 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1793 const uint32_t hw_w = hw.getWidth();
1794 const uint32_t hw_h = hw.getHeight();
1795 const Region screenBounds(hw.bounds());
1796
1797 GLfloat u, v;
1798 GLuint tname;
1799 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1800 if (result != NO_ERROR) {
1801 return result;
1802 }
1803
1804 GLfloat vtx[8];
Mathias Agopian3a831d22011-07-07 17:30:31 -07001805 const GLfloat texCoords[4][2] = { {0,1}, {0,1-v}, {u,1-v}, {u,1} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001806 glBindTexture(GL_TEXTURE_2D, tname);
1807 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1808 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1809 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1810 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1811 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1812 glVertexPointer(2, GL_FLOAT, 0, vtx);
1813
Mathias Agopian3a831d22011-07-07 17:30:31 -07001814 /*
1815 * Texture coordinate mapping
1816 *
1817 * u
1818 * 1 +----------+---+
1819 * | | | | image is inverted
1820 * | V | | w.r.t. the texture
1821 * 1-v +----------+ | coordinates
1822 * | |
1823 * | |
1824 * | |
1825 * 0 +--------------+
1826 * 0 1
1827 *
1828 */
1829
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001830 class s_curve_interpolator {
1831 const float nbFrames, s, v;
1832 public:
1833 s_curve_interpolator(int nbFrames, float s)
1834 : nbFrames(1.0f / (nbFrames-1)), s(s),
1835 v(1.0f + expf(-s + 0.5f*s)) {
1836 }
1837 float operator()(int f) {
1838 const float x = f * nbFrames;
1839 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1840 }
1841 };
1842
1843 class v_stretch {
1844 const GLfloat hw_w, hw_h;
1845 public:
1846 v_stretch(uint32_t hw_w, uint32_t hw_h)
1847 : hw_w(hw_w), hw_h(hw_h) {
1848 }
1849 void operator()(GLfloat* vtx, float v) {
1850 const GLfloat w = hw_w + (hw_w * v);
1851 const GLfloat h = hw_h - (hw_h * v);
1852 const GLfloat x = (hw_w - w) * 0.5f;
1853 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001854 vtx[0] = x; vtx[1] = y;
1855 vtx[2] = x; vtx[3] = y + h;
1856 vtx[4] = x + w; vtx[5] = y + h;
1857 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001858 }
1859 };
1860
1861 class h_stretch {
1862 const GLfloat hw_w, hw_h;
1863 public:
1864 h_stretch(uint32_t hw_w, uint32_t hw_h)
1865 : hw_w(hw_w), hw_h(hw_h) {
1866 }
1867 void operator()(GLfloat* vtx, float v) {
1868 const GLfloat w = hw_w - (hw_w * v);
1869 const GLfloat h = 1.0f;
1870 const GLfloat x = (hw_w - w) * 0.5f;
1871 const GLfloat y = (hw_h - h) * 0.5f;
Mathias Agopian3a831d22011-07-07 17:30:31 -07001872 vtx[0] = x; vtx[1] = y;
1873 vtx[2] = x; vtx[3] = y + h;
1874 vtx[4] = x + w; vtx[5] = y + h;
1875 vtx[6] = x + w; vtx[7] = y;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001876 }
1877 };
1878
1879 // the full animation is 24 frames
Mathias Agopian3a831d22011-07-07 17:30:31 -07001880 char value[PROPERTY_VALUE_MAX];
1881 property_get("debug.sf.electron_frames", value, "24");
1882 int nbFrames = (atoi(value) + 1) >> 1;
1883 if (nbFrames <= 0) // just in case
1884 nbFrames = 24;
1885
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001886 s_curve_interpolator itr(nbFrames, 7.5f);
1887 s_curve_interpolator itg(nbFrames, 8.0f);
1888 s_curve_interpolator itb(nbFrames, 8.5f);
1889
1890 v_stretch vverts(hw_w, hw_h);
1891 glEnable(GL_BLEND);
1892 glBlendFunc(GL_ONE, GL_ONE);
1893 for (int i=0 ; i<nbFrames ; i++) {
1894 float x, y, w, h;
1895 const float vr = itr(i);
1896 const float vg = itg(i);
1897 const float vb = itb(i);
1898
1899 // clear screen
1900 glColorMask(1,1,1,1);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001901 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001902 glEnable(GL_TEXTURE_2D);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001903
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001904 // draw the red plane
1905 vverts(vtx, vr);
1906 glColorMask(1,0,0,1);
1907 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001908
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001909 // draw the green plane
1910 vverts(vtx, vg);
1911 glColorMask(0,1,0,1);
1912 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001913
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001914 // draw the blue plane
1915 vverts(vtx, vb);
1916 glColorMask(0,0,1,1);
1917 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001918
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001919 // draw the white highlight (we use the last vertices)
Mathias Agopianaab758e2010-10-11 12:37:43 -07001920 glDisable(GL_TEXTURE_2D);
1921 glColorMask(1,1,1,1);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001922 glColor4f(vg, vg, vg, 1);
1923 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1924 hw.flip(screenBounds);
Mathias Agopianaab758e2010-10-11 12:37:43 -07001925 }
1926
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001927 h_stretch hverts(hw_w, hw_h);
1928 glDisable(GL_BLEND);
1929 glDisable(GL_TEXTURE_2D);
1930 glColorMask(1,1,1,1);
1931 for (int i=0 ; i<nbFrames ; i++) {
1932 const float v = itg(i);
1933 hverts(vtx, v);
1934 glClear(GL_COLOR_BUFFER_BIT);
1935 glColor4f(1-v, 1-v, 1-v, 1);
1936 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1937 hw.flip(screenBounds);
1938 }
1939
1940 glColorMask(1,1,1,1);
1941 glEnable(GL_SCISSOR_TEST);
1942 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
1943 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07001944 glDisable(GL_TEXTURE_2D);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001945 return NO_ERROR;
1946}
1947
1948status_t SurfaceFlinger::electronBeamOnAnimationImplLocked()
1949{
1950 status_t result = PERMISSION_DENIED;
1951
1952 if (!GLExtensions::getInstance().haveFramebufferObject())
1953 return INVALID_OPERATION;
1954
1955
1956 // get screen geometry
1957 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1958 const uint32_t hw_w = hw.getWidth();
1959 const uint32_t hw_h = hw.getHeight();
1960 const Region screenBounds(hw.bounds());
1961
1962 GLfloat u, v;
1963 GLuint tname;
1964 result = renderScreenToTextureLocked(0, &tname, &u, &v);
1965 if (result != NO_ERROR) {
1966 return result;
1967 }
1968
1969 // back to main framebuffer
1970 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
1971 glDisable(GL_SCISSOR_TEST);
1972
1973 GLfloat vtx[8];
1974 const GLfloat texCoords[4][2] = { {0,v}, {0,0}, {u,0}, {u,v} };
Mathias Agopian2d2b8032010-10-12 16:05:48 -07001975 glBindTexture(GL_TEXTURE_2D, tname);
1976 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
1977 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
1978 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
1979 glTexCoordPointer(2, GL_FLOAT, 0, texCoords);
1980 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
1981 glVertexPointer(2, GL_FLOAT, 0, vtx);
1982
1983 class s_curve_interpolator {
1984 const float nbFrames, s, v;
1985 public:
1986 s_curve_interpolator(int nbFrames, float s)
1987 : nbFrames(1.0f / (nbFrames-1)), s(s),
1988 v(1.0f + expf(-s + 0.5f*s)) {
1989 }
1990 float operator()(int f) {
1991 const float x = f * nbFrames;
1992 return ((1.0f/(1.0f + expf(-x*s + 0.5f*s))) - 0.5f) * v + 0.5f;
1993 }
1994 };
1995
1996 class v_stretch {
1997 const GLfloat hw_w, hw_h;
1998 public:
1999 v_stretch(uint32_t hw_w, uint32_t hw_h)
2000 : hw_w(hw_w), hw_h(hw_h) {
2001 }
2002 void operator()(GLfloat* vtx, float v) {
2003 const GLfloat w = hw_w + (hw_w * v);
2004 const GLfloat h = hw_h - (hw_h * v);
2005 const GLfloat x = (hw_w - w) * 0.5f;
2006 const GLfloat y = (hw_h - h) * 0.5f;
2007 vtx[0] = x; vtx[1] = y;
2008 vtx[2] = x; vtx[3] = y + h;
2009 vtx[4] = x + w; vtx[5] = y + h;
2010 vtx[6] = x + w; vtx[7] = y;
2011 }
2012 };
2013
2014 class h_stretch {
2015 const GLfloat hw_w, hw_h;
2016 public:
2017 h_stretch(uint32_t hw_w, uint32_t hw_h)
2018 : hw_w(hw_w), hw_h(hw_h) {
2019 }
2020 void operator()(GLfloat* vtx, float v) {
2021 const GLfloat w = hw_w - (hw_w * v);
2022 const GLfloat h = 1.0f;
2023 const GLfloat x = (hw_w - w) * 0.5f;
2024 const GLfloat y = (hw_h - h) * 0.5f;
2025 vtx[0] = x; vtx[1] = y;
2026 vtx[2] = x; vtx[3] = y + h;
2027 vtx[4] = x + w; vtx[5] = y + h;
2028 vtx[6] = x + w; vtx[7] = y;
2029 }
2030 };
2031
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002032 // the full animation is 12 frames
2033 int nbFrames = 8;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002034 s_curve_interpolator itr(nbFrames, 7.5f);
2035 s_curve_interpolator itg(nbFrames, 8.0f);
2036 s_curve_interpolator itb(nbFrames, 8.5f);
2037
2038 h_stretch hverts(hw_w, hw_h);
2039 glDisable(GL_BLEND);
2040 glDisable(GL_TEXTURE_2D);
2041 glColorMask(1,1,1,1);
2042 for (int i=nbFrames-1 ; i>=0 ; i--) {
2043 const float v = itg(i);
2044 hverts(vtx, v);
2045 glClear(GL_COLOR_BUFFER_BIT);
2046 glColor4f(1-v, 1-v, 1-v, 1);
2047 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2048 hw.flip(screenBounds);
2049 }
2050
Mathias Agopiandfa08fb2010-10-14 12:33:07 -07002051 nbFrames = 4;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002052 v_stretch vverts(hw_w, hw_h);
2053 glEnable(GL_BLEND);
2054 glBlendFunc(GL_ONE, GL_ONE);
2055 for (int i=nbFrames-1 ; i>=0 ; i--) {
2056 float x, y, w, h;
2057 const float vr = itr(i);
2058 const float vg = itg(i);
2059 const float vb = itb(i);
2060
2061 // clear screen
2062 glColorMask(1,1,1,1);
2063 glClear(GL_COLOR_BUFFER_BIT);
2064 glEnable(GL_TEXTURE_2D);
2065
2066 // draw the red plane
2067 vverts(vtx, vr);
2068 glColorMask(1,0,0,1);
2069 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2070
2071 // draw the green plane
2072 vverts(vtx, vg);
2073 glColorMask(0,1,0,1);
2074 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2075
2076 // draw the blue plane
2077 vverts(vtx, vb);
2078 glColorMask(0,0,1,1);
2079 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
2080
2081 hw.flip(screenBounds);
2082 }
2083
2084 glColorMask(1,1,1,1);
2085 glEnable(GL_SCISSOR_TEST);
2086 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002087 glDeleteTextures(1, &tname);
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002088 glDisable(GL_TEXTURE_2D);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002089
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002090 return NO_ERROR;
2091}
2092
2093// ---------------------------------------------------------------------------
2094
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002095status_t SurfaceFlinger::turnElectronBeamOffImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002096{
2097 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2098 if (!hw.canDraw()) {
2099 // we're already off
2100 return NO_ERROR;
2101 }
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002102 if (mode & ISurfaceComposer::eElectronBeamAnimationOff) {
2103 electronBeamOffAnimationImplLocked();
2104 }
2105
2106 // always clear the whole screen at the end of the animation
2107 glClearColor(0,0,0,1);
2108 glDisable(GL_SCISSOR_TEST);
2109 glClear(GL_COLOR_BUFFER_BIT);
2110 glEnable(GL_SCISSOR_TEST);
2111 hw.flip( Region(hw.bounds()) );
2112
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002113 hw.setCanDraw(false);
2114 return NO_ERROR;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002115}
2116
2117status_t SurfaceFlinger::turnElectronBeamOff(int32_t mode)
2118{
Mathias Agopianaab758e2010-10-11 12:37:43 -07002119 class MessageTurnElectronBeamOff : public MessageBase {
2120 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002121 int32_t mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002122 status_t result;
2123 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002124 MessageTurnElectronBeamOff(SurfaceFlinger* flinger, int32_t mode)
2125 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopianaab758e2010-10-11 12:37:43 -07002126 }
2127 status_t getResult() const {
2128 return result;
2129 }
2130 virtual bool handler() {
2131 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002132 result = flinger->turnElectronBeamOffImplLocked(mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002133 return true;
2134 }
2135 };
2136
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002137 sp<MessageBase> msg = new MessageTurnElectronBeamOff(this, mode);
Mathias Agopianaab758e2010-10-11 12:37:43 -07002138 status_t res = postMessageSync(msg);
2139 if (res == NO_ERROR) {
2140 res = static_cast<MessageTurnElectronBeamOff*>( msg.get() )->getResult();
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002141
2142 // work-around: when the power-manager calls us we activate the
2143 // animation. eventually, the "on" animation will be called
2144 // by the power-manager itself
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002145 mElectronBeamAnimationMode = mode;
Mathias Agopianaab758e2010-10-11 12:37:43 -07002146 }
2147 return res;
2148}
2149
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002150// ---------------------------------------------------------------------------
Mathias Agopian7623da42010-06-01 15:12:58 -07002151
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002152status_t SurfaceFlinger::turnElectronBeamOnImplLocked(int32_t mode)
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002153{
2154 DisplayHardware& hw(graphicPlane(0).editDisplayHardware());
2155 if (hw.canDraw()) {
2156 // we're already on
2157 return NO_ERROR;
2158 }
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002159 if (mode & ISurfaceComposer::eElectronBeamAnimationOn) {
2160 electronBeamOnAnimationImplLocked();
2161 }
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002162 hw.setCanDraw(true);
Mathias Agopian8b6a0542010-10-14 12:46:24 -07002163
2164 // make sure to redraw the whole screen when the animation is done
2165 mDirtyRegion.set(hw.bounds());
2166 signalEvent();
2167
Mathias Agopiana6cd6d32010-10-14 12:19:37 -07002168 return NO_ERROR;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002169}
2170
2171status_t SurfaceFlinger::turnElectronBeamOn(int32_t mode)
2172{
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002173 class MessageTurnElectronBeamOn : public MessageBase {
2174 SurfaceFlinger* flinger;
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002175 int32_t mode;
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002176 status_t result;
2177 public:
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002178 MessageTurnElectronBeamOn(SurfaceFlinger* flinger, int32_t mode)
2179 : flinger(flinger), mode(mode), result(PERMISSION_DENIED) {
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002180 }
2181 status_t getResult() const {
2182 return result;
2183 }
2184 virtual bool handler() {
2185 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002186 result = flinger->turnElectronBeamOnImplLocked(mode);
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002187 return true;
2188 }
2189 };
2190
Mathias Agopiand4e03f32010-10-14 14:54:06 -07002191 postMessageAsync( new MessageTurnElectronBeamOn(this, mode) );
Mathias Agopian2d2b8032010-10-12 16:05:48 -07002192 return NO_ERROR;
2193}
2194
2195// ---------------------------------------------------------------------------
2196
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002197status_t SurfaceFlinger::captureScreenImplLocked(DisplayID dpy,
2198 sp<IMemoryHeap>* heap,
2199 uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002200 uint32_t sw, uint32_t sh,
2201 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002202{
2203 status_t result = PERMISSION_DENIED;
2204
2205 // only one display supported for now
2206 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2207 return BAD_VALUE;
2208
Jamie Gennisf72606c2011-03-09 17:05:02 -08002209 // make sure none of the layers are protected
Mathias Agopiane3281342011-08-24 17:44:41 -07002210 const LayerVector& layers(mDrawingState.layersSortedByZ);
Jamie Gennisf72606c2011-03-09 17:05:02 -08002211 const size_t count = layers.size();
2212 for (size_t i=0 ; i<count ; ++i) {
2213 const sp<LayerBase>& layer(layers[i]);
Mathias Agopianec49d892011-08-25 14:36:43 -07002214 const uint32_t flags = layer->drawingState().flags;
2215 if (!(flags & ISurfaceComposer::eLayerHidden)) {
2216 const uint32_t z = layer->drawingState().z;
2217 if (z >= minLayerZ && z <= maxLayerZ) {
2218 if (layer->isProtected()) {
2219 return INVALID_OPERATION;
2220 }
Jamie Gennisf72606c2011-03-09 17:05:02 -08002221 }
2222 }
2223 }
2224
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002225 if (!GLExtensions::getInstance().haveFramebufferObject())
2226 return INVALID_OPERATION;
2227
2228 // get screen geometry
2229 const DisplayHardware& hw(graphicPlane(dpy).displayHardware());
2230 const uint32_t hw_w = hw.getWidth();
2231 const uint32_t hw_h = hw.getHeight();
2232
2233 if ((sw > hw_w) || (sh > hw_h))
2234 return BAD_VALUE;
2235
2236 sw = (!sw) ? hw_w : sw;
2237 sh = (!sh) ? hw_h : sh;
2238 const size_t size = sw * sh * 4;
2239
Mathias Agopian32ae0942011-03-02 18:45:50 -08002240 //LOGD("screenshot: sw=%d, sh=%d, minZ=%d, maxZ=%d",
2241 // sw, sh, minLayerZ, maxLayerZ);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002242
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002243 // make sure to clear all GL error flags
2244 while ( glGetError() != GL_NO_ERROR ) ;
2245
2246 // create a FBO
2247 GLuint name, tname;
2248 glGenRenderbuffersOES(1, &tname);
2249 glBindRenderbufferOES(GL_RENDERBUFFER_OES, tname);
2250 glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGBA8_OES, sw, sh);
2251 glGenFramebuffersOES(1, &name);
2252 glBindFramebufferOES(GL_FRAMEBUFFER_OES, name);
2253 glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES,
2254 GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, tname);
2255
2256 GLenum status = glCheckFramebufferStatusOES(GL_FRAMEBUFFER_OES);
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002257
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002258 if (status == GL_FRAMEBUFFER_COMPLETE_OES) {
2259
2260 // invert everything, b/c glReadPixel() below will invert the FB
2261 glViewport(0, 0, sw, sh);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002262 glScissor(0, 0, sw, sh);
Mathias Agopian3a831d22011-07-07 17:30:31 -07002263 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002264 glMatrixMode(GL_PROJECTION);
2265 glPushMatrix();
2266 glLoadIdentity();
Mathias Agopian3a831d22011-07-07 17:30:31 -07002267 glOrthof(0, hw_w, hw_h, 0, 0, 1);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002268 glMatrixMode(GL_MODELVIEW);
2269
2270 // redraw the screen entirely...
2271 glClearColor(0,0,0,1);
2272 glClear(GL_COLOR_BUFFER_BIT);
Mathias Agopian1c4e4fc02010-12-16 18:46:17 -08002273
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002274 for (size_t i=0 ; i<count ; ++i) {
2275 const sp<LayerBase>& layer(layers[i]);
Mathias Agopianec49d892011-08-25 14:36:43 -07002276 const uint32_t flags = layer->drawingState().flags;
2277 if (!(flags & ISurfaceComposer::eLayerHidden)) {
2278 const uint32_t z = layer->drawingState().z;
2279 if (z >= minLayerZ && z <= maxLayerZ) {
2280 layer->drawForSreenShot();
2281 }
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002282 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002283 }
2284
2285 // XXX: this is needed on tegra
Mathias Agopian3a831d22011-07-07 17:30:31 -07002286 glEnable(GL_SCISSOR_TEST);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002287 glScissor(0, 0, sw, sh);
2288
2289 // check for errors and return screen capture
2290 if (glGetError() != GL_NO_ERROR) {
2291 // error while rendering
2292 result = INVALID_OPERATION;
2293 } else {
2294 // allocate shared memory large enough to hold the
2295 // screen capture
2296 sp<MemoryHeapBase> base(
2297 new MemoryHeapBase(size, 0, "screen-capture") );
2298 void* const ptr = base->getBase();
2299 if (ptr) {
2300 // capture the screen with glReadPixels()
2301 glReadPixels(0, 0, sw, sh, GL_RGBA, GL_UNSIGNED_BYTE, ptr);
2302 if (glGetError() == GL_NO_ERROR) {
2303 *heap = base;
2304 *w = sw;
2305 *h = sh;
2306 *f = PIXEL_FORMAT_RGBA_8888;
2307 result = NO_ERROR;
2308 }
2309 } else {
2310 result = NO_MEMORY;
2311 }
2312 }
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002313 glEnable(GL_SCISSOR_TEST);
2314 glViewport(0, 0, hw_w, hw_h);
2315 glMatrixMode(GL_PROJECTION);
2316 glPopMatrix();
2317 glMatrixMode(GL_MODELVIEW);
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002318 } else {
2319 result = BAD_VALUE;
2320 }
2321
2322 // release FBO resources
2323 glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0);
2324 glDeleteRenderbuffersOES(1, &tname);
2325 glDeleteFramebuffersOES(1, &name);
Mathias Agopiana6b8c1c2010-12-15 14:41:59 -08002326
2327 hw.compositionComplete();
2328
Mathias Agopian32ae0942011-03-02 18:45:50 -08002329 // LOGD("screenshot: result = %s", result<0 ? strerror(result) : "OK");
Mathias Agopiancd2cfb62011-01-16 14:05:02 -08002330
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002331 return result;
2332}
2333
2334
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002335status_t SurfaceFlinger::captureScreen(DisplayID dpy,
2336 sp<IMemoryHeap>* heap,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002337 uint32_t* width, uint32_t* height, PixelFormat* format,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002338 uint32_t sw, uint32_t sh,
2339 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002340{
2341 // only one display supported for now
2342 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
2343 return BAD_VALUE;
2344
2345 if (!GLExtensions::getInstance().haveFramebufferObject())
2346 return INVALID_OPERATION;
2347
2348 class MessageCaptureScreen : public MessageBase {
2349 SurfaceFlinger* flinger;
2350 DisplayID dpy;
2351 sp<IMemoryHeap>* heap;
2352 uint32_t* w;
2353 uint32_t* h;
2354 PixelFormat* f;
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002355 uint32_t sw;
2356 uint32_t sh;
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002357 uint32_t minLayerZ;
2358 uint32_t maxLayerZ;
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002359 status_t result;
2360 public:
2361 MessageCaptureScreen(SurfaceFlinger* flinger, DisplayID dpy,
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002362 sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002363 uint32_t sw, uint32_t sh,
2364 uint32_t minLayerZ, uint32_t maxLayerZ)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002365 : flinger(flinger), dpy(dpy),
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002366 heap(heap), w(w), h(h), f(f), sw(sw), sh(sh),
2367 minLayerZ(minLayerZ), maxLayerZ(maxLayerZ),
2368 result(PERMISSION_DENIED)
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002369 {
2370 }
2371 status_t getResult() const {
2372 return result;
2373 }
2374 virtual bool handler() {
2375 Mutex::Autolock _l(flinger->mStateLock);
2376
2377 // if we have secure windows, never allow the screen capture
2378 if (flinger->mSecureFrameBuffer)
2379 return true;
2380
Mathias Agopian38ed2e32010-09-29 13:02:36 -07002381 result = flinger->captureScreenImplLocked(dpy,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002382 heap, w, h, f, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002383
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002384 return true;
2385 }
2386 };
2387
2388 sp<MessageBase> msg = new MessageCaptureScreen(this,
Mathias Agopian3dd25a62010-12-10 16:22:31 -08002389 dpy, heap, width, height, format, sw, sh, minLayerZ, maxLayerZ);
Mathias Agopianca5edbe2010-09-24 11:26:58 -07002390 status_t res = postMessageSync(msg);
2391 if (res == NO_ERROR) {
2392 res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult();
2393 }
2394 return res;
2395}
2396
2397// ---------------------------------------------------------------------------
2398
Mathias Agopian7623da42010-06-01 15:12:58 -07002399sp<Layer> SurfaceFlinger::getLayer(const sp<ISurface>& sur) const
2400{
2401 sp<Layer> result;
2402 Mutex::Autolock _l(mStateLock);
2403 result = mLayerMap.valueFor( sur->asBinder() ).promote();
2404 return result;
2405}
2406
2407// ---------------------------------------------------------------------------
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002408
Mathias Agopian593c05c2010-06-02 23:28:45 -07002409Client::Client(const sp<SurfaceFlinger>& flinger)
Mathias Agopian7623da42010-06-01 15:12:58 -07002410 : mFlinger(flinger), mNameGenerator(1)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002411{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002412}
2413
Mathias Agopian593c05c2010-06-02 23:28:45 -07002414Client::~Client()
2415{
Mathias Agopian593c05c2010-06-02 23:28:45 -07002416 const size_t count = mLayers.size();
2417 for (size_t i=0 ; i<count ; i++) {
2418 sp<LayerBaseClient> layer(mLayers.valueAt(i).promote());
2419 if (layer != 0) {
2420 mFlinger->removeLayer(layer);
2421 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002422 }
2423}
2424
Mathias Agopian593c05c2010-06-02 23:28:45 -07002425status_t Client::initCheck() const {
Mathias Agopian7623da42010-06-01 15:12:58 -07002426 return NO_ERROR;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002427}
Mathias Agopian1473f462009-04-10 14:24:30 -07002428
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002429size_t Client::attachLayer(const sp<LayerBaseClient>& layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002430{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002431 Mutex::Autolock _l(mLock);
2432 size_t name = mNameGenerator++;
Mathias Agopian593c05c2010-06-02 23:28:45 -07002433 mLayers.add(name, layer);
2434 return name;
2435}
2436
Mathias Agopian7623da42010-06-01 15:12:58 -07002437void Client::detachLayer(const LayerBaseClient* layer)
Mathias Agopian593c05c2010-06-02 23:28:45 -07002438{
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002439 Mutex::Autolock _l(mLock);
Mathias Agopian593c05c2010-06-02 23:28:45 -07002440 // we do a linear search here, because this doesn't happen often
2441 const size_t count = mLayers.size();
2442 for (size_t i=0 ; i<count ; i++) {
2443 if (mLayers.valueAt(i) == layer) {
2444 mLayers.removeItemsAt(i, 1);
2445 break;
2446 }
2447 }
2448}
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002449sp<LayerBaseClient> Client::getLayerUser(int32_t i) const
2450{
2451 Mutex::Autolock _l(mLock);
Mathias Agopian1473f462009-04-10 14:24:30 -07002452 sp<LayerBaseClient> lbc;
Mathias Agopian5fa7ad62011-05-03 16:21:41 -07002453 wp<LayerBaseClient> layer(mLayers.valueFor(i));
Mathias Agopian593c05c2010-06-02 23:28:45 -07002454 if (layer != 0) {
2455 lbc = layer.promote();
2456 LOGE_IF(lbc==0, "getLayerUser(name=%d) is dead", int(i));
Mathias Agopian1473f462009-04-10 14:24:30 -07002457 }
2458 return lbc;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002459}
2460
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002461
2462status_t Client::onTransact(
2463 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
2464{
2465 // these must be checked
2466 IPCThreadState* ipc = IPCThreadState::self();
2467 const int pid = ipc->getCallingPid();
2468 const int uid = ipc->getCallingUid();
2469 const int self_pid = getpid();
2470 if (UNLIKELY(pid != self_pid && uid != AID_GRAPHICS && uid != 0)) {
2471 // we're called from a different process, do the real check
Mathias Agopian0dd593f2011-06-27 16:05:52 -07002472 if (!PermissionCache::checkCallingPermission(sAccessSurfaceFlinger))
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002473 {
2474 LOGE("Permission Denial: "
2475 "can't openGlobalTransaction pid=%d, uid=%d", pid, uid);
2476 return PERMISSION_DENIED;
2477 }
2478 }
2479 return BnSurfaceComposerClient::onTransact(code, data, reply, flags);
Mathias Agopian7623da42010-06-01 15:12:58 -07002480}
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002481
2482
Mathias Agopian593c05c2010-06-02 23:28:45 -07002483sp<ISurface> Client::createSurface(
Mathias Agopian9638e5c2011-04-20 14:19:32 -07002484 ISurfaceComposerClient::surface_data_t* params,
Mathias Agopian7623da42010-06-01 15:12:58 -07002485 const String8& name,
2486 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002487 uint32_t flags)
2488{
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002489 /*
2490 * createSurface must be called from the GL thread so that it can
2491 * have access to the GL context.
2492 */
2493
2494 class MessageCreateSurface : public MessageBase {
2495 sp<ISurface> result;
2496 SurfaceFlinger* flinger;
2497 ISurfaceComposerClient::surface_data_t* params;
2498 Client* client;
2499 const String8& name;
2500 DisplayID display;
2501 uint32_t w, h;
2502 PixelFormat format;
2503 uint32_t flags;
2504 public:
2505 MessageCreateSurface(SurfaceFlinger* flinger,
2506 ISurfaceComposerClient::surface_data_t* params,
2507 const String8& name, Client* client,
2508 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
2509 uint32_t flags)
2510 : flinger(flinger), params(params), client(client), name(name),
2511 display(display), w(w), h(h), format(format), flags(flags)
2512 {
2513 }
2514 sp<ISurface> getResult() const { return result; }
2515 virtual bool handler() {
2516 result = flinger->createSurface(params, name, client,
2517 display, w, h, format, flags);
2518 return true;
2519 }
2520 };
2521
2522 sp<MessageBase> msg = new MessageCreateSurface(mFlinger.get(),
2523 params, name, this, display, w, h, format, flags);
2524 mFlinger->postMessageSync(msg);
2525 return static_cast<MessageCreateSurface*>( msg.get() )->getResult();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002526}
Mathias Agopian593c05c2010-06-02 23:28:45 -07002527status_t Client::destroySurface(SurfaceID sid) {
2528 return mFlinger->removeSurface(this, sid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002529}
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002530
2531// ---------------------------------------------------------------------------
2532
Jamie Gennisf7acf162011-01-12 18:30:40 -08002533GraphicBufferAlloc::GraphicBufferAlloc() {}
2534
2535GraphicBufferAlloc::~GraphicBufferAlloc() {}
2536
2537sp<GraphicBuffer> GraphicBufferAlloc::createGraphicBuffer(uint32_t w, uint32_t h,
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002538 PixelFormat format, uint32_t usage, status_t* error) {
Jamie Gennisf7acf162011-01-12 18:30:40 -08002539 sp<GraphicBuffer> graphicBuffer(new GraphicBuffer(w, h, format, usage));
2540 status_t err = graphicBuffer->initCheck();
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002541 *error = err;
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002542 if (err != 0 || graphicBuffer->handle == 0) {
Mathias Agopianeec0f7e2011-07-01 14:53:49 -07002543 if (err == NO_MEMORY) {
2544 GraphicBuffer::dumpAllocationsToSystemLog();
2545 }
Mathias Agopian7bb843c2011-04-20 14:20:59 -07002546 LOGE("GraphicBufferAlloc::createGraphicBuffer(w=%d, h=%d) "
2547 "failed (%s), handle=%p",
2548 w, h, strerror(-err), graphicBuffer->handle);
Jamie Gennisf7acf162011-01-12 18:30:40 -08002549 return 0;
2550 }
Jamie Gennisf7acf162011-01-12 18:30:40 -08002551 return graphicBuffer;
2552}
2553
Jamie Gennisf7acf162011-01-12 18:30:40 -08002554// ---------------------------------------------------------------------------
2555
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002556GraphicPlane::GraphicPlane()
2557 : mHw(0)
2558{
2559}
2560
2561GraphicPlane::~GraphicPlane() {
2562 delete mHw;
2563}
2564
2565bool GraphicPlane::initialized() const {
2566 return mHw ? true : false;
2567}
2568
Mathias Agopian66c77a52010-02-08 15:49:35 -08002569int GraphicPlane::getWidth() const {
2570 return mWidth;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002571}
2572
Mathias Agopian66c77a52010-02-08 15:49:35 -08002573int GraphicPlane::getHeight() const {
2574 return mHeight;
2575}
2576
2577void GraphicPlane::setDisplayHardware(DisplayHardware *hw)
2578{
2579 mHw = hw;
2580
2581 // initialize the display orientation transform.
2582 // it's a constant that should come from the display driver.
2583 int displayOrientation = ISurfaceComposer::eOrientationDefault;
2584 char property[PROPERTY_VALUE_MAX];
2585 if (property_get("ro.sf.hwrotation", property, NULL) > 0) {
2586 //displayOrientation
2587 switch (atoi(property)) {
2588 case 90:
2589 displayOrientation = ISurfaceComposer::eOrientation90;
2590 break;
2591 case 270:
2592 displayOrientation = ISurfaceComposer::eOrientation270;
2593 break;
2594 }
2595 }
2596
2597 const float w = hw->getWidth();
2598 const float h = hw->getHeight();
2599 GraphicPlane::orientationToTransfrom(displayOrientation, w, h,
2600 &mDisplayTransform);
2601 if (displayOrientation & ISurfaceComposer::eOrientationSwapMask) {
2602 mDisplayWidth = h;
2603 mDisplayHeight = w;
2604 } else {
2605 mDisplayWidth = w;
2606 mDisplayHeight = h;
2607 }
2608
2609 setOrientation(ISurfaceComposer::eOrientationDefault);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002610}
2611
2612status_t GraphicPlane::orientationToTransfrom(
2613 int orientation, int w, int h, Transform* tr)
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002614{
2615 uint32_t flags = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002616 switch (orientation) {
2617 case ISurfaceComposer::eOrientationDefault:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002618 flags = Transform::ROT_0;
2619 break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002620 case ISurfaceComposer::eOrientation90:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002621 flags = Transform::ROT_90;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002622 break;
2623 case ISurfaceComposer::eOrientation180:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002624 flags = Transform::ROT_180;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002625 break;
2626 case ISurfaceComposer::eOrientation270:
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002627 flags = Transform::ROT_270;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002628 break;
2629 default:
2630 return BAD_VALUE;
2631 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002632 tr->set(flags, w, h);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002633 return NO_ERROR;
2634}
2635
2636status_t GraphicPlane::setOrientation(int orientation)
2637{
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002638 // If the rotation can be handled in hardware, this is where
2639 // the magic should happen.
Mathias Agopian66c77a52010-02-08 15:49:35 -08002640
2641 const DisplayHardware& hw(displayHardware());
2642 const float w = mDisplayWidth;
2643 const float h = mDisplayHeight;
2644 mWidth = int(w);
2645 mHeight = int(h);
2646
2647 Transform orientationTransform;
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002648 GraphicPlane::orientationToTransfrom(orientation, w, h,
2649 &orientationTransform);
2650 if (orientation & ISurfaceComposer::eOrientationSwapMask) {
2651 mWidth = int(h);
2652 mHeight = int(w);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002653 }
Mathias Agopian8c20ca32010-02-22 03:15:57 -08002654
Mathias Agopian3552f532009-03-27 17:58:20 -07002655 mOrientation = orientation;
Mathias Agopian66c77a52010-02-08 15:49:35 -08002656 mGlobalTransform = mDisplayTransform * orientationTransform;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002657 return NO_ERROR;
2658}
2659
2660const DisplayHardware& GraphicPlane::displayHardware() const {
2661 return *mHw;
2662}
2663
Mathias Agopianaab758e2010-10-11 12:37:43 -07002664DisplayHardware& GraphicPlane::editDisplayHardware() {
2665 return *mHw;
2666}
2667
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002668const Transform& GraphicPlane::transform() const {
2669 return mGlobalTransform;
2670}
2671
Mathias Agopian1473f462009-04-10 14:24:30 -07002672EGLDisplay GraphicPlane::getEGLDisplay() const {
2673 return mHw->getEGLDisplay();
2674}
2675
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002676// ---------------------------------------------------------------------------
2677
2678}; // namespace android