blob: e87b5634898e642922a55d15e09a13acec0db0f0 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
The Android Open Source Projectedbf3b62009-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 Querua837ba72009-01-26 11:51:12 -080024#include <limits.h>
The Android Open Source Projectedbf3b62009-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 Agopianc5b2c0b2009-05-19 19:08:10 -070032#include <binder/IPCThreadState.h>
33#include <binder/IServiceManager.h>
Mathias Agopian7303c6b2009-07-02 18:11:53 -070034#include <binder/MemoryHeapBase.h>
35
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080036#include <utils/String8.h>
37#include <utils/String16.h>
38#include <utils/StopWatch.h>
39
40#include <ui/PixelFormat.h>
41#include <ui/DisplayInfo.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042
43#include <pixelflinger/pixelflinger.h>
44#include <GLES/gl.h>
45
46#include "clz.h"
Mathias Agopiancbb288b2009-09-07 16:32:45 -070047#include "Buffer.h"
Mathias Agopian076b1cc2009-04-10 14:24:30 -070048#include "BufferAllocator.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080049#include "Layer.h"
50#include "LayerBlur.h"
51#include "LayerBuffer.h"
52#include "LayerDim.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080053#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054
55#include "DisplayHardware/DisplayHardware.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056
Mathias Agopiana1ecca92009-05-21 19:21:59 -070057/* ideally AID_GRAPHICS would be in a semi-public header
58 * or there would be a way to map a user/group name to its id
59 */
60#ifndef AID_GRAPHICS
61#define AID_GRAPHICS 1003
62#endif
63
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080064#define DISPLAY_COUNT 1
65
66namespace android {
67
68// ---------------------------------------------------------------------------
69
70void SurfaceFlinger::instantiate() {
71 defaultServiceManager()->addService(
72 String16("SurfaceFlinger"), new SurfaceFlinger());
73}
74
75void SurfaceFlinger::shutdown() {
76 // we should unregister here, but not really because
77 // when (if) the service manager goes away, all the services
78 // it has a reference to will leave too.
79}
80
81// ---------------------------------------------------------------------------
82
83SurfaceFlinger::LayerVector::LayerVector(const SurfaceFlinger::LayerVector& rhs)
84 : lookup(rhs.lookup), layers(rhs.layers)
85{
86}
87
88ssize_t SurfaceFlinger::LayerVector::indexOf(
Mathias Agopian076b1cc2009-04-10 14:24:30 -070089 const sp<LayerBase>& key, size_t guess) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080090{
91 if (guess<size() && lookup.keyAt(guess) == key)
92 return guess;
93 const ssize_t i = lookup.indexOfKey(key);
94 if (i>=0) {
95 const size_t idx = lookup.valueAt(i);
Mathias Agopian076b1cc2009-04-10 14:24:30 -070096 LOGE_IF(layers[idx]!=key,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080097 "LayerVector[%p]: layers[%d]=%p, key=%p",
Mathias Agopian076b1cc2009-04-10 14:24:30 -070098 this, int(idx), layers[idx].get(), key.get());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080099 return idx;
100 }
101 return i;
102}
103
104ssize_t SurfaceFlinger::LayerVector::add(
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700105 const sp<LayerBase>& layer,
106 Vector< sp<LayerBase> >::compar_t cmp)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800107{
108 size_t count = layers.size();
109 ssize_t l = 0;
110 ssize_t h = count-1;
111 ssize_t mid;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700112 sp<LayerBase> const* a = layers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800113 while (l <= h) {
114 mid = l + (h - l)/2;
115 const int c = cmp(a+mid, &layer);
116 if (c == 0) { l = mid; break; }
117 else if (c<0) { l = mid+1; }
118 else { h = mid-1; }
119 }
120 size_t order = l;
121 while (order<count && !cmp(&layer, a+order)) {
122 order++;
123 }
124 count = lookup.size();
125 for (size_t i=0 ; i<count ; i++) {
126 if (lookup.valueAt(i) >= order) {
127 lookup.editValueAt(i)++;
128 }
129 }
130 layers.insertAt(layer, order);
131 lookup.add(layer, order);
132 return order;
133}
134
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700135ssize_t SurfaceFlinger::LayerVector::remove(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800136{
137 const ssize_t keyIndex = lookup.indexOfKey(layer);
138 if (keyIndex >= 0) {
139 const size_t index = lookup.valueAt(keyIndex);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700140 LOGE_IF(layers[index]!=layer,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800141 "LayerVector[%p]: layers[%u]=%p, layer=%p",
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700142 this, int(index), layers[index].get(), layer.get());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800143 layers.removeItemsAt(index);
144 lookup.removeItemsAt(keyIndex);
145 const size_t count = lookup.size();
146 for (size_t i=0 ; i<count ; i++) {
147 if (lookup.valueAt(i) >= size_t(index)) {
148 lookup.editValueAt(i)--;
149 }
150 }
151 return index;
152 }
153 return NAME_NOT_FOUND;
154}
155
156ssize_t SurfaceFlinger::LayerVector::reorder(
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700157 const sp<LayerBase>& layer,
158 Vector< sp<LayerBase> >::compar_t cmp)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800159{
160 // XXX: it's a little lame. but oh well...
161 ssize_t err = remove(layer);
162 if (err >=0)
163 err = add(layer, cmp);
164 return err;
165}
166
167// ---------------------------------------------------------------------------
168#if 0
169#pragma mark -
170#endif
171
172SurfaceFlinger::SurfaceFlinger()
173 : BnSurfaceComposer(), Thread(false),
174 mTransactionFlags(0),
175 mTransactionCount(0),
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700176 mResizeTransationPending(false),
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700177 mLayersRemoved(false),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800178 mBootTime(systemTime()),
Mathias Agopian375f5632009-06-15 18:24:59 -0700179 mHardwareTest("android.permission.HARDWARE_TEST"),
180 mAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER"),
181 mDump("android.permission.DUMP"),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800182 mVisibleRegionsDirty(false),
183 mDeferReleaseConsole(false),
184 mFreezeDisplay(false),
185 mFreezeCount(0),
The Android Open Source Projectbcef13b2009-03-11 12:11:56 -0700186 mFreezeDisplayTime(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800187 mDebugRegion(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800188 mDebugBackground(0),
Mathias Agopian9795c422009-08-26 16:36:26 -0700189 mDebugInSwapBuffers(0),
190 mLastSwapBufferTime(0),
191 mDebugInTransaction(0),
192 mLastTransactionTime(0),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800193 mConsoleSignals(0),
194 mSecureFrameBuffer(0)
195{
196 init();
197}
198
199void SurfaceFlinger::init()
200{
201 LOGI("SurfaceFlinger is starting");
202
203 // debugging stuff...
204 char value[PROPERTY_VALUE_MAX];
205 property_get("debug.sf.showupdates", value, "0");
206 mDebugRegion = atoi(value);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800207 property_get("debug.sf.showbackground", value, "0");
208 mDebugBackground = atoi(value);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800209
210 LOGI_IF(mDebugRegion, "showupdates enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800211 LOGI_IF(mDebugBackground, "showbackground enabled");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800212}
213
214SurfaceFlinger::~SurfaceFlinger()
215{
216 glDeleteTextures(1, &mWormholeTexName);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800217}
218
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800219overlay_control_device_t* SurfaceFlinger::getOverlayEngine() const
220{
221 return graphicPlane(0).displayHardware().getOverlayEngine();
222}
223
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700224sp<IMemoryHeap> SurfaceFlinger::getCblk() const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800225{
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700226 return mServerHeap;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800227}
228
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800229sp<ISurfaceFlingerClient> SurfaceFlinger::createConnection()
230{
231 Mutex::Autolock _l(mStateLock);
232 uint32_t token = mTokens.acquire();
233
Mathias Agopianf9d93272009-06-19 17:00:27 -0700234 sp<Client> client = new Client(token, this);
235 if (client->ctrlblk == 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800236 mTokens.release(token);
237 return 0;
238 }
239 status_t err = mClientsMap.add(token, client);
240 if (err < 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800241 mTokens.release(token);
242 return 0;
243 }
244 sp<BClient> bclient =
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700245 new BClient(this, token, client->getControlBlockMemory());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800246 return bclient;
247}
248
249void SurfaceFlinger::destroyConnection(ClientID cid)
250{
251 Mutex::Autolock _l(mStateLock);
Mathias Agopianf9d93272009-06-19 17:00:27 -0700252 sp<Client> client = mClientsMap.valueFor(cid);
253 if (client != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800254 // free all the layers this client owns
Mathias Agopian3d579642009-06-04 18:46:21 -0700255 Vector< wp<LayerBaseClient> > layers(client->getLayers());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800256 const size_t count = layers.size();
257 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700258 sp<LayerBaseClient> layer(layers[i].promote());
259 if (layer != 0) {
Mathias Agopian3d579642009-06-04 18:46:21 -0700260 purgatorizeLayer_l(layer);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700261 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800262 }
263
264 // the resources associated with this client will be freed
265 // during the next transaction, after these surfaces have been
266 // properly removed from the screen
267
268 // remove this client from our ClientID->Client mapping.
269 mClientsMap.removeItem(cid);
270
271 // and add it to the list of disconnected clients
272 mDisconnectedClients.add(client);
273
274 // request a transaction
275 setTransactionFlags(eTransactionNeeded);
276 }
277}
278
279const GraphicPlane& SurfaceFlinger::graphicPlane(int dpy) const
280{
281 LOGE_IF(uint32_t(dpy) >= DISPLAY_COUNT, "Invalid DisplayID %d", dpy);
282 const GraphicPlane& plane(mGraphicPlanes[dpy]);
283 return plane;
284}
285
286GraphicPlane& SurfaceFlinger::graphicPlane(int dpy)
287{
288 return const_cast<GraphicPlane&>(
289 const_cast<SurfaceFlinger const *>(this)->graphicPlane(dpy));
290}
291
292void SurfaceFlinger::bootFinished()
293{
294 const nsecs_t now = systemTime();
295 const nsecs_t duration = now - mBootTime;
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700296 LOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) );
297 property_set("ctl.stop", "bootanim");
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800298}
299
300void SurfaceFlinger::onFirstRef()
301{
302 run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY);
303
304 // Wait for the main thread to be done with its initialization
305 mReadyToRunBarrier.wait();
306}
307
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800308static inline uint16_t pack565(int r, int g, int b) {
309 return (r<<11)|(g<<5)|b;
310}
311
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800312status_t SurfaceFlinger::readyToRun()
313{
314 LOGI( "SurfaceFlinger's main thread ready to run. "
315 "Initializing graphics H/W...");
316
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800317 // we only support one display currently
318 int dpy = 0;
319
320 {
321 // initialize the main display
322 GraphicPlane& plane(graphicPlane(dpy));
323 DisplayHardware* const hw = new DisplayHardware(this, dpy);
324 plane.setDisplayHardware(hw);
325 }
326
Mathias Agopian7303c6b2009-07-02 18:11:53 -0700327 // create the shared control-block
328 mServerHeap = new MemoryHeapBase(4096,
329 MemoryHeapBase::READ_ONLY, "SurfaceFlinger read-only heap");
330 LOGE_IF(mServerHeap==0, "can't create shared memory dealer");
331
332 mServerCblk = static_cast<surface_flinger_cblk_t*>(mServerHeap->getBase());
333 LOGE_IF(mServerCblk==0, "can't get to shared control block's address");
334
335 new(mServerCblk) surface_flinger_cblk_t;
336
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800337 // initialize primary screen
338 // (other display should be initialized in the same manner, but
339 // asynchronously, as they could come and go. None of this is supported
340 // yet).
341 const GraphicPlane& plane(graphicPlane(dpy));
342 const DisplayHardware& hw = plane.displayHardware();
343 const uint32_t w = hw.getWidth();
344 const uint32_t h = hw.getHeight();
345 const uint32_t f = hw.getFormat();
346 hw.makeCurrent();
347
348 // initialize the shared control block
349 mServerCblk->connected |= 1<<dpy;
350 display_cblk_t* dcblk = mServerCblk->displays + dpy;
351 memset(dcblk, 0, sizeof(display_cblk_t));
352 dcblk->w = w;
353 dcblk->h = h;
354 dcblk->format = f;
355 dcblk->orientation = ISurfaceComposer::eOrientationDefault;
356 dcblk->xdpi = hw.getDpiX();
357 dcblk->ydpi = hw.getDpiY();
358 dcblk->fps = hw.getRefreshRate();
359 dcblk->density = hw.getDensity();
360 asm volatile ("":::"memory");
361
362 // Initialize OpenGL|ES
363 glActiveTexture(GL_TEXTURE0);
364 glBindTexture(GL_TEXTURE_2D, 0);
365 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
366 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
367 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
368 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
369 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
370 glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
371 glPixelStorei(GL_PACK_ALIGNMENT, 4);
372 glEnableClientState(GL_VERTEX_ARRAY);
373 glEnable(GL_SCISSOR_TEST);
374 glShadeModel(GL_FLAT);
375 glDisable(GL_DITHER);
376 glDisable(GL_CULL_FACE);
377
378 const uint16_t g0 = pack565(0x0F,0x1F,0x0F);
379 const uint16_t g1 = pack565(0x17,0x2f,0x17);
380 const uint16_t textureData[4] = { g0, g1, g1, g0 };
381 glGenTextures(1, &mWormholeTexName);
382 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
383 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
384 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
385 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
386 glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
387 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 2, 2, 0,
388 GL_RGB, GL_UNSIGNED_SHORT_5_6_5, textureData);
389
390 glViewport(0, 0, w, h);
391 glMatrixMode(GL_PROJECTION);
392 glLoadIdentity();
393 glOrthof(0, w, h, 0, 0, 1);
394
395 LayerDim::initDimmer(this, w, h);
396
397 mReadyToRunBarrier.open();
398
399 /*
400 * We're now ready to accept clients...
401 */
402
Mathias Agopiana1ecca92009-05-21 19:21:59 -0700403 // start boot animation
404 property_set("ctl.start", "bootanim");
405
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800406 return NO_ERROR;
407}
408
409// ----------------------------------------------------------------------------
410#if 0
411#pragma mark -
412#pragma mark Events Handler
413#endif
414
415void SurfaceFlinger::waitForEvent()
416{
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700417 while (true) {
418 nsecs_t timeout = -1;
419 if (UNLIKELY(isFrozen())) {
420 // wait 5 seconds
421 const nsecs_t freezeDisplayTimeout = ms2ns(5000);
422 const nsecs_t now = systemTime();
423 if (mFreezeDisplayTime == 0) {
424 mFreezeDisplayTime = now;
425 }
426 nsecs_t waitTime = freezeDisplayTimeout - (now - mFreezeDisplayTime);
427 timeout = waitTime>0 ? waitTime : 0;
The Android Open Source Projectbcef13b2009-03-11 12:11:56 -0700428 }
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700429
Mathias Agopianb6683b52009-04-28 03:17:50 -0700430 MessageList::value_type msg = mEventQueue.waitMessage(timeout);
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700431 if (msg != 0) {
432 mFreezeDisplayTime = 0;
433 switch (msg->what) {
434 case MessageQueue::INVALIDATE:
435 // invalidate message, just return to the main loop
436 return;
437 }
438 } else {
439 // we timed out
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800440 if (isFrozen()) {
441 // we timed out and are still frozen
442 LOGW("timeout expired mFreezeDisplay=%d, mFreezeCount=%d",
443 mFreezeDisplay, mFreezeCount);
444 mFreezeCount = 0;
The Android Open Source Projectbcef13b2009-03-11 12:11:56 -0700445 mFreezeDisplay = false;
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700446 return;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800447 }
448 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800449 }
450}
451
452void SurfaceFlinger::signalEvent() {
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700453 mEventQueue.invalidate();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800454}
455
456void SurfaceFlinger::signal() const {
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700457 // this is the IPC call
458 const_cast<SurfaceFlinger*>(this)->signalEvent();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800459}
460
461void SurfaceFlinger::signalDelayedEvent(nsecs_t delay)
462{
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700463 mEventQueue.postMessage( new MessageBase(MessageQueue::INVALIDATE), delay);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800464}
465
466// ----------------------------------------------------------------------------
467#if 0
468#pragma mark -
469#pragma mark Main loop
470#endif
471
472bool SurfaceFlinger::threadLoop()
473{
474 waitForEvent();
475
476 // check for transactions
477 if (UNLIKELY(mConsoleSignals)) {
478 handleConsoleEvents();
479 }
480
481 if (LIKELY(mTransactionCount == 0)) {
482 // if we're in a global transaction, don't do anything.
483 const uint32_t mask = eTransactionNeeded | eTraversalNeeded;
484 uint32_t transactionFlags = getTransactionFlags(mask);
485 if (LIKELY(transactionFlags)) {
486 handleTransaction(transactionFlags);
487 }
488 }
489
490 // post surfaces (if needed)
491 handlePageFlip();
492
493 const DisplayHardware& hw(graphicPlane(0).displayHardware());
494 if (LIKELY(hw.canDraw())) {
495 // repaint the framebuffer (if needed)
496 handleRepaint();
497
Mathias Agopian74faca22009-09-17 16:18:16 -0700498 // inform the h/w that we're done compositing
499 hw.compositionComplete();
500
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800501 // release the clients before we flip ('cause flip might block)
502 unlockClients();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800503
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800504 postFramebuffer();
505 } else {
506 // pretend we did the post
507 unlockClients();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800508 usleep(16667); // 60 fps period
509 }
510 return true;
511}
512
513void SurfaceFlinger::postFramebuffer()
514{
Mathias Agopian0926f502009-05-04 14:17:04 -0700515 if (isFrozen()) {
516 // we are not allowed to draw, but pause a bit to make sure
517 // apps don't end up using the whole CPU, if they depend on
518 // surfaceflinger for synchronization.
519 usleep(8333); // 8.3ms ~ 120fps
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800520 return;
521 }
522
523 if (!mInvalidRegion.isEmpty()) {
524 const DisplayHardware& hw(graphicPlane(0).displayHardware());
Mathias Agopian9795c422009-08-26 16:36:26 -0700525 const nsecs_t now = systemTime();
526 mDebugInSwapBuffers = now;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800527 hw.flip(mInvalidRegion);
Mathias Agopian9795c422009-08-26 16:36:26 -0700528 mLastSwapBufferTime = systemTime() - now;
529 mDebugInSwapBuffers = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800530 mInvalidRegion.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800531 }
532}
533
534void SurfaceFlinger::handleConsoleEvents()
535{
536 // something to do with the console
537 const DisplayHardware& hw = graphicPlane(0).displayHardware();
538
539 int what = android_atomic_and(0, &mConsoleSignals);
540 if (what & eConsoleAcquired) {
541 hw.acquireScreen();
542 }
543
544 if (mDeferReleaseConsole && hw.canDraw()) {
Mathias Agopian62b74442009-04-14 23:02:51 -0700545 // We got the release signal before the acquire signal
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800546 mDeferReleaseConsole = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800547 hw.releaseScreen();
548 }
549
550 if (what & eConsoleReleased) {
551 if (hw.canDraw()) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800552 hw.releaseScreen();
553 } else {
554 mDeferReleaseConsole = true;
555 }
556 }
557
558 mDirtyRegion.set(hw.bounds());
559}
560
561void SurfaceFlinger::handleTransaction(uint32_t transactionFlags)
562{
Mathias Agopian3d579642009-06-04 18:46:21 -0700563 Vector< sp<LayerBase> > ditchedLayers;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800564
Mathias Agopian3d579642009-06-04 18:46:21 -0700565 { // scope for the lock
566 Mutex::Autolock _l(mStateLock);
Mathias Agopian9795c422009-08-26 16:36:26 -0700567 const nsecs_t now = systemTime();
568 mDebugInTransaction = now;
Mathias Agopian3d579642009-06-04 18:46:21 -0700569 handleTransactionLocked(transactionFlags, ditchedLayers);
Mathias Agopian9795c422009-08-26 16:36:26 -0700570 mLastTransactionTime = systemTime() - now;
571 mDebugInTransaction = 0;
Mathias Agopian3d579642009-06-04 18:46:21 -0700572 }
573
574 // do this without lock held
575 const size_t count = ditchedLayers.size();
576 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian0852e672009-09-04 19:50:23 -0700577 if (ditchedLayers[i] != 0) {
578 //LOGD("ditching layer %p", ditchedLayers[i].get());
579 ditchedLayers[i]->ditch();
580 }
Mathias Agopian3d579642009-06-04 18:46:21 -0700581 }
582}
583
584void SurfaceFlinger::handleTransactionLocked(
585 uint32_t transactionFlags, Vector< sp<LayerBase> >& ditchedLayers)
586{
587 const LayerVector& currentLayers(mCurrentState.layersSortedByZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800588 const size_t count = currentLayers.size();
589
590 /*
591 * Traversal of the children
592 * (perform the transaction for each of them if needed)
593 */
594
595 const bool layersNeedTransaction = transactionFlags & eTraversalNeeded;
596 if (layersNeedTransaction) {
597 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700598 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800599 uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded);
600 if (!trFlags) continue;
601
602 const uint32_t flags = layer->doTransaction(0);
603 if (flags & Layer::eVisibleRegion)
604 mVisibleRegionsDirty = true;
605
606 if (flags & Layer::eRestartTransaction) {
607 // restart the transaction, but back-off a little
608 layer->setTransactionFlags(eTransactionNeeded);
609 setTransactionFlags(eTraversalNeeded, ms2ns(8));
610 }
611 }
612 }
613
614 /*
615 * Perform our own transaction if needed
616 */
617
618 if (transactionFlags & eTransactionNeeded) {
619 if (mCurrentState.orientation != mDrawingState.orientation) {
620 // the orientation has changed, recompute all visible regions
621 // and invalidate everything.
622
623 const int dpy = 0;
624 const int orientation = mCurrentState.orientation;
Mathias Agopianc08731e2009-03-27 18:11:38 -0700625 const uint32_t type = mCurrentState.orientationType;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800626 GraphicPlane& plane(graphicPlane(dpy));
627 plane.setOrientation(orientation);
628
629 // update the shared control block
630 const DisplayHardware& hw(plane.displayHardware());
631 volatile display_cblk_t* dcblk = mServerCblk->displays + dpy;
632 dcblk->orientation = orientation;
633 if (orientation & eOrientationSwapMask) {
634 // 90 or 270 degrees orientation
635 dcblk->w = hw.getHeight();
636 dcblk->h = hw.getWidth();
637 } else {
638 dcblk->w = hw.getWidth();
639 dcblk->h = hw.getHeight();
640 }
641
642 mVisibleRegionsDirty = true;
643 mDirtyRegion.set(hw.bounds());
Mathias Agopianc08731e2009-03-27 18:11:38 -0700644 mFreezeDisplayTime = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800645 }
646
647 if (mCurrentState.freezeDisplay != mDrawingState.freezeDisplay) {
648 // freezing or unfreezing the display -> trigger animation if needed
649 mFreezeDisplay = mCurrentState.freezeDisplay;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800650 }
651
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700652 if (currentLayers.size() > mDrawingState.layersSortedByZ.size()) {
653 // layers have been added
654 mVisibleRegionsDirty = true;
655 }
656
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800657 // some layers might have been removed, so
658 // we need to update the regions they're exposing.
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700659 if (mLayersRemoved) {
Mathias Agopian48d819a2009-09-10 19:41:18 -0700660 mLayersRemoved = false;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800661 mVisibleRegionsDirty = true;
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700662 const LayerVector& previousLayers(mDrawingState.layersSortedByZ);
Mathias Agopian3d579642009-06-04 18:46:21 -0700663 const size_t count = previousLayers.size();
664 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700665 const sp<LayerBase>& layer(previousLayers[i]);
666 if (currentLayers.indexOf( layer ) < 0) {
667 // this layer is not visible anymore
Mathias Agopian3d579642009-06-04 18:46:21 -0700668 ditchedLayers.add(layer);
Mathias Agopian5d7126b2009-07-28 14:20:21 -0700669 mDirtyRegionRemovedLayer.orSelf(layer->visibleRegionScreen);
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700670 }
671 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800672 }
673
674 // get rid of all resources we don't need anymore
675 // (layers and clients)
676 free_resources_l();
677 }
678
679 commitTransaction();
680}
681
682sp<FreezeLock> SurfaceFlinger::getFreezeLock() const
683{
684 return new FreezeLock(const_cast<SurfaceFlinger *>(this));
685}
686
687void SurfaceFlinger::computeVisibleRegions(
688 LayerVector& currentLayers, Region& dirtyRegion, Region& opaqueRegion)
689{
690 const GraphicPlane& plane(graphicPlane(0));
691 const Transform& planeTransform(plane.transform());
692
693 Region aboveOpaqueLayers;
694 Region aboveCoveredLayers;
695 Region dirty;
696
697 bool secureFrameBuffer = false;
698
699 size_t i = currentLayers.size();
700 while (i--) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700701 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800702 layer->validateVisibility(planeTransform);
703
704 // start with the whole surface at its current location
Mathias Agopian97011222009-07-28 10:57:27 -0700705 const Layer::State& s(layer->drawingState());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800706
707 // handle hidden surfaces by setting the visible region to empty
708 Region opaqueRegion;
709 Region visibleRegion;
710 Region coveredRegion;
Mathias Agopian97011222009-07-28 10:57:27 -0700711 if (LIKELY(!(s.flags & ISurfaceComposer::eLayerHidden) && s.alpha)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800712 const bool translucent = layer->needsBlending();
Mathias Agopian97011222009-07-28 10:57:27 -0700713 const Rect bounds(layer->visibleBounds());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800714 visibleRegion.set(bounds);
715 coveredRegion = visibleRegion;
716
717 // Remove the transparent area from the visible region
718 if (translucent) {
719 visibleRegion.subtractSelf(layer->transparentRegionScreen);
720 }
721
722 // compute the opaque region
723 if (s.alpha==255 && !translucent && layer->getOrientation()>=0) {
724 // the opaque region is the visible region
725 opaqueRegion = visibleRegion;
726 }
727 }
728
729 // subtract the opaque region covered by the layers above us
730 visibleRegion.subtractSelf(aboveOpaqueLayers);
731 coveredRegion.andSelf(aboveCoveredLayers);
732
733 // compute this layer's dirty region
734 if (layer->contentDirty) {
735 // we need to invalidate the whole region
736 dirty = visibleRegion;
737 // as well, as the old visible region
738 dirty.orSelf(layer->visibleRegionScreen);
739 layer->contentDirty = false;
740 } else {
Mathias Agopiana8d44f72009-06-28 02:54:16 -0700741 /* compute the exposed region:
742 * exposed = what's VISIBLE and NOT COVERED now
743 * but was COVERED before
744 */
745 dirty = (visibleRegion - coveredRegion) & layer->coveredRegionScreen;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800746 }
747 dirty.subtractSelf(aboveOpaqueLayers);
748
749 // accumulate to the screen dirty region
750 dirtyRegion.orSelf(dirty);
751
Mathias Agopian62b74442009-04-14 23:02:51 -0700752 // Update aboveOpaqueLayers/aboveCoveredLayers for next (lower) layer
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800753 aboveOpaqueLayers.orSelf(opaqueRegion);
Mathias Agopiana8d44f72009-06-28 02:54:16 -0700754 aboveCoveredLayers.orSelf(visibleRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800755
756 // Store the visible region is screen space
757 layer->setVisibleRegion(visibleRegion);
758 layer->setCoveredRegion(coveredRegion);
759
Mathias Agopian97011222009-07-28 10:57:27 -0700760 // If a secure layer is partially visible, lock-down the screen!
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800761 if (layer->isSecure() && !visibleRegion.isEmpty()) {
762 secureFrameBuffer = true;
763 }
764 }
765
Mathias Agopian97011222009-07-28 10:57:27 -0700766 // invalidate the areas where a layer was removed
767 dirtyRegion.orSelf(mDirtyRegionRemovedLayer);
768 mDirtyRegionRemovedLayer.clear();
769
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800770 mSecureFrameBuffer = secureFrameBuffer;
771 opaqueRegion = aboveOpaqueLayers;
772}
773
774
775void SurfaceFlinger::commitTransaction()
776{
777 mDrawingState = mCurrentState;
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700778 mResizeTransationPending = false;
779 mTransactionCV.broadcast();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800780}
781
782void SurfaceFlinger::handlePageFlip()
783{
784 bool visibleRegions = mVisibleRegionsDirty;
785 LayerVector& currentLayers = const_cast<LayerVector&>(mDrawingState.layersSortedByZ);
786 visibleRegions |= lockPageFlip(currentLayers);
787
788 const DisplayHardware& hw = graphicPlane(0).displayHardware();
789 const Region screenRegion(hw.bounds());
790 if (visibleRegions) {
791 Region opaqueRegion;
792 computeVisibleRegions(currentLayers, mDirtyRegion, opaqueRegion);
793 mWormholeRegion = screenRegion.subtract(opaqueRegion);
794 mVisibleRegionsDirty = false;
795 }
796
797 unlockPageFlip(currentLayers);
798 mDirtyRegion.andSelf(screenRegion);
799}
800
801bool SurfaceFlinger::lockPageFlip(const LayerVector& currentLayers)
802{
803 bool recomputeVisibleRegions = false;
804 size_t count = currentLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700805 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800806 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700807 const sp<LayerBase>& layer = layers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800808 layer->lockPageFlip(recomputeVisibleRegions);
809 }
810 return recomputeVisibleRegions;
811}
812
813void SurfaceFlinger::unlockPageFlip(const LayerVector& currentLayers)
814{
815 const GraphicPlane& plane(graphicPlane(0));
816 const Transform& planeTransform(plane.transform());
817 size_t count = currentLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700818 sp<LayerBase> const* layers = currentLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800819 for (size_t i=0 ; i<count ; i++) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700820 const sp<LayerBase>& layer = layers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800821 layer->unlockPageFlip(planeTransform, mDirtyRegion);
822 }
823}
824
Mathias Agopianb8a55602009-06-26 19:06:36 -0700825
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800826void SurfaceFlinger::handleRepaint()
827{
Mathias Agopianb8a55602009-06-26 19:06:36 -0700828 // compute the invalid region
829 mInvalidRegion.orSelf(mDirtyRegion);
830 if (mInvalidRegion.isEmpty()) {
831 // nothing to do
832 return;
833 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800834
835 if (UNLIKELY(mDebugRegion)) {
836 debugFlashRegions();
837 }
838
Mathias Agopianb8a55602009-06-26 19:06:36 -0700839 // set the frame buffer
840 const DisplayHardware& hw(graphicPlane(0).displayHardware());
841 glMatrixMode(GL_MODELVIEW);
842 glLoadIdentity();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800843
844 uint32_t flags = hw.getFlags();
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700845 if ((flags & DisplayHardware::SWAP_RECTANGLE) ||
846 (flags & DisplayHardware::BUFFER_PRESERVED))
847 {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700848 // we can redraw only what's dirty, but since SWAP_RECTANGLE only
849 // takes a rectangle, we must make sure to update that whole
850 // rectangle in that case
851 if (flags & DisplayHardware::SWAP_RECTANGLE) {
852 // FIXME: we really should be able to pass a region to
853 // SWAP_RECTANGLE so that we don't have to redraw all this.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800854 mDirtyRegion.set(mInvalidRegion.bounds());
855 } else {
Mathias Agopian29d06ac2009-06-29 18:49:56 -0700856 // in the BUFFER_PRESERVED case, obviously, we can update only
857 // what's needed and nothing more.
858 // NOTE: this is NOT a common case, as preserving the backbuffer
859 // is costly and usually involves copying the whole update back.
860 }
861 } else {
862 if (flags & DisplayHardware::UPDATE_ON_DEMAND) {
863 // We need to redraw the rectangle that will be updated
864 // (pushed to the framebuffer).
865 // This is needed because UPDATE_ON_DEMAND only takes one
866 // rectangle instead of a region (see DisplayHardware::flip())
867 mDirtyRegion.set(mInvalidRegion.bounds());
868 } else {
869 // we need to redraw everything (the whole screen)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800870 mDirtyRegion.set(hw.bounds());
871 mInvalidRegion = mDirtyRegion;
872 }
873 }
874
875 // compose all surfaces
876 composeSurfaces(mDirtyRegion);
877
878 // clear the dirty regions
879 mDirtyRegion.clear();
880}
881
882void SurfaceFlinger::composeSurfaces(const Region& dirty)
883{
884 if (UNLIKELY(!mWormholeRegion.isEmpty())) {
885 // should never happen unless the window manager has a bug
886 // draw something...
887 drawWormhole();
888 }
889 const SurfaceFlinger& flinger(*this);
890 const LayerVector& drawingLayers(mDrawingState.layersSortedByZ);
891 const size_t count = drawingLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700892 sp<LayerBase> const* const layers = drawingLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800893 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700894 const sp<LayerBase>& layer = layers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800895 const Region& visibleRegion(layer->visibleRegionScreen);
896 if (!visibleRegion.isEmpty()) {
897 const Region clip(dirty.intersect(visibleRegion));
898 if (!clip.isEmpty()) {
899 layer->draw(clip);
900 }
901 }
902 }
903}
904
905void SurfaceFlinger::unlockClients()
906{
907 const LayerVector& drawingLayers(mDrawingState.layersSortedByZ);
908 const size_t count = drawingLayers.size();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700909 sp<LayerBase> const* const layers = drawingLayers.array();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800910 for (size_t i=0 ; i<count ; ++i) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700911 const sp<LayerBase>& layer = layers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800912 layer->finishPageFlip();
913 }
914}
915
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800916void SurfaceFlinger::debugFlashRegions()
917{
Mathias Agopian0926f502009-05-04 14:17:04 -0700918 const DisplayHardware& hw(graphicPlane(0).displayHardware());
919 const uint32_t flags = hw.getFlags();
Mathias Agopiandf3ca302009-05-04 19:29:25 -0700920
921 if (!((flags & DisplayHardware::SWAP_RECTANGLE) ||
922 (flags & DisplayHardware::BUFFER_PRESERVED))) {
Mathias Agopian0926f502009-05-04 14:17:04 -0700923 const Region repaint((flags & DisplayHardware::UPDATE_ON_DEMAND) ?
924 mDirtyRegion.bounds() : hw.bounds());
925 composeSurfaces(repaint);
926 }
927
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800928 glDisable(GL_TEXTURE_2D);
929 glDisable(GL_BLEND);
930 glDisable(GL_DITHER);
931 glDisable(GL_SCISSOR_TEST);
932
Mathias Agopian0926f502009-05-04 14:17:04 -0700933 static int toggle = 0;
934 toggle = 1 - toggle;
935 if (toggle) {
936 glColor4x(0x10000, 0, 0x10000, 0x10000);
937 } else {
938 glColor4x(0x10000, 0x10000, 0, 0x10000);
939 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800940
Mathias Agopian20f68782009-05-11 00:03:41 -0700941 Region::const_iterator it = mDirtyRegion.begin();
942 Region::const_iterator const end = mDirtyRegion.end();
943 while (it != end) {
944 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800945 GLfloat vertices[][2] = {
946 { r.left, r.top },
947 { r.left, r.bottom },
948 { r.right, r.bottom },
949 { r.right, r.top }
950 };
951 glVertexPointer(2, GL_FLOAT, 0, vertices);
952 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
953 }
Mathias Agopian0926f502009-05-04 14:17:04 -0700954
Mathias Agopianb8a55602009-06-26 19:06:36 -0700955 if (mInvalidRegion.isEmpty()) {
956 mDirtyRegion.dump("mDirtyRegion");
957 mInvalidRegion.dump("mInvalidRegion");
958 }
959 hw.flip(mInvalidRegion);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800960
961 if (mDebugRegion > 1)
962 usleep(mDebugRegion * 1000);
963
964 glEnable(GL_SCISSOR_TEST);
965 //mDirtyRegion.dump("mDirtyRegion");
966}
967
968void SurfaceFlinger::drawWormhole() const
969{
970 const Region region(mWormholeRegion.intersect(mDirtyRegion));
971 if (region.isEmpty())
972 return;
973
974 const DisplayHardware& hw(graphicPlane(0).displayHardware());
975 const int32_t width = hw.getWidth();
976 const int32_t height = hw.getHeight();
977
978 glDisable(GL_BLEND);
979 glDisable(GL_DITHER);
980
981 if (LIKELY(!mDebugBackground)) {
982 glClearColorx(0,0,0,0);
Mathias Agopian20f68782009-05-11 00:03:41 -0700983 Region::const_iterator it = region.begin();
984 Region::const_iterator const end = region.end();
985 while (it != end) {
986 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800987 const GLint sy = height - (r.top + r.height());
988 glScissor(r.left, sy, r.width(), r.height());
989 glClear(GL_COLOR_BUFFER_BIT);
990 }
991 } else {
992 const GLshort vertices[][2] = { { 0, 0 }, { width, 0 },
993 { width, height }, { 0, height } };
994 const GLshort tcoords[][2] = { { 0, 0 }, { 1, 0 }, { 1, 1 }, { 0, 1 } };
995 glVertexPointer(2, GL_SHORT, 0, vertices);
996 glTexCoordPointer(2, GL_SHORT, 0, tcoords);
997 glEnableClientState(GL_TEXTURE_COORD_ARRAY);
998 glEnable(GL_TEXTURE_2D);
999 glBindTexture(GL_TEXTURE_2D, mWormholeTexName);
1000 glTexEnvx(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
1001 glMatrixMode(GL_TEXTURE);
1002 glLoadIdentity();
1003 glScalef(width*(1.0f/32.0f), height*(1.0f/32.0f), 1);
Mathias Agopian20f68782009-05-11 00:03:41 -07001004 Region::const_iterator it = region.begin();
1005 Region::const_iterator const end = region.end();
1006 while (it != end) {
1007 const Rect& r = *it++;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001008 const GLint sy = height - (r.top + r.height());
1009 glScissor(r.left, sy, r.width(), r.height());
1010 glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
1011 }
1012 glDisableClientState(GL_TEXTURE_COORD_ARRAY);
1013 }
1014}
1015
1016void SurfaceFlinger::debugShowFPS() const
1017{
1018 static int mFrameCount;
1019 static int mLastFrameCount = 0;
1020 static nsecs_t mLastFpsTime = 0;
1021 static float mFps = 0;
1022 mFrameCount++;
1023 nsecs_t now = systemTime();
1024 nsecs_t diff = now - mLastFpsTime;
1025 if (diff > ms2ns(250)) {
1026 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
1027 mLastFpsTime = now;
1028 mLastFrameCount = mFrameCount;
1029 }
1030 // XXX: mFPS has the value we want
1031 }
1032
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001033status_t SurfaceFlinger::addLayer(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001034{
1035 Mutex::Autolock _l(mStateLock);
1036 addLayer_l(layer);
1037 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1038 return NO_ERROR;
1039}
1040
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001041status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001042{
1043 Mutex::Autolock _l(mStateLock);
Mathias Agopian3d579642009-06-04 18:46:21 -07001044 status_t err = purgatorizeLayer_l(layer);
1045 if (err == NO_ERROR)
1046 setTransactionFlags(eTransactionNeeded);
1047 return err;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001048}
1049
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001050status_t SurfaceFlinger::invalidateLayerVisibility(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001051{
1052 layer->forceVisibilityTransaction();
1053 setTransactionFlags(eTraversalNeeded);
1054 return NO_ERROR;
1055}
1056
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001057status_t SurfaceFlinger::addLayer_l(const sp<LayerBase>& layer)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001058{
Mathias Agopian0852e672009-09-04 19:50:23 -07001059 if (layer == 0)
1060 return BAD_VALUE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001061 ssize_t i = mCurrentState.layersSortedByZ.add(
1062 layer, &LayerBase::compareCurrentStateZ);
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001063 sp<LayerBaseClient> lbc = LayerBase::dynamicCast< LayerBaseClient* >(layer.get());
1064 if (lbc != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001065 mLayerMap.add(lbc->serverIndex(), lbc);
1066 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001067 return NO_ERROR;
1068}
1069
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001070status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001071{
1072 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase);
1073 if (index >= 0) {
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001074 mLayersRemoved = true;
Mathias Agopian9a112062009-04-17 19:36:26 -07001075 sp<LayerBaseClient> layer =
1076 LayerBase::dynamicCast< LayerBaseClient* >(layerBase.get());
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001077 if (layer != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001078 mLayerMap.removeItem(layer->serverIndex());
1079 }
1080 return NO_ERROR;
1081 }
Mathias Agopian3d579642009-06-04 18:46:21 -07001082 return status_t(index);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001083}
1084
Mathias Agopian9a112062009-04-17 19:36:26 -07001085status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase)
1086{
Mathias Agopian759fdb22009-07-02 17:33:40 -07001087 // remove the layer from the main list (through a transaction).
Mathias Agopian9a112062009-04-17 19:36:26 -07001088 ssize_t err = removeLayer_l(layerBase);
Mathias Agopian759fdb22009-07-02 17:33:40 -07001089
Mathias Agopian3d579642009-06-04 18:46:21 -07001090 // it's possible that we don't find a layer, because it might
1091 // have been destroyed already -- this is not technically an error
1092 // from the user because there is a race between BClient::destroySurface(),
1093 // ~BClient() and ~ISurface().
Mathias Agopian9a112062009-04-17 19:36:26 -07001094 return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err;
1095}
1096
1097
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001098void SurfaceFlinger::free_resources_l()
1099{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001100 // free resources associated with disconnected clients
Mathias Agopianf9d93272009-06-19 17:00:27 -07001101 Vector< sp<Client> >& disconnectedClients(mDisconnectedClients);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001102 const size_t count = disconnectedClients.size();
1103 for (size_t i=0 ; i<count ; i++) {
Mathias Agopianf9d93272009-06-19 17:00:27 -07001104 sp<Client> client = disconnectedClients[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001105 mTokens.release(client->cid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001106 }
1107 disconnectedClients.clear();
1108}
1109
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001110uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags)
1111{
1112 return android_atomic_and(~flags, &mTransactionFlags) & flags;
1113}
1114
1115uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags, nsecs_t delay)
1116{
1117 uint32_t old = android_atomic_or(flags, &mTransactionFlags);
1118 if ((old & flags)==0) { // wake the server up
1119 if (delay > 0) {
1120 signalDelayedEvent(delay);
1121 } else {
1122 signalEvent();
1123 }
1124 }
1125 return old;
1126}
1127
1128void SurfaceFlinger::openGlobalTransaction()
1129{
1130 android_atomic_inc(&mTransactionCount);
1131}
1132
1133void SurfaceFlinger::closeGlobalTransaction()
1134{
1135 if (android_atomic_dec(&mTransactionCount) == 1) {
1136 signalEvent();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001137
1138 // if there is a transaction with a resize, wait for it to
1139 // take effect before returning.
1140 Mutex::Autolock _l(mStateLock);
1141 while (mResizeTransationPending) {
1142 mTransactionCV.wait(mStateLock);
1143 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001144 }
1145}
1146
1147status_t SurfaceFlinger::freezeDisplay(DisplayID dpy, uint32_t flags)
1148{
1149 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1150 return BAD_VALUE;
1151
1152 Mutex::Autolock _l(mStateLock);
1153 mCurrentState.freezeDisplay = 1;
1154 setTransactionFlags(eTransactionNeeded);
1155
1156 // flags is intended to communicate some sort of animation behavior
Mathias Agopian62b74442009-04-14 23:02:51 -07001157 // (for instance fading)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001158 return NO_ERROR;
1159}
1160
1161status_t SurfaceFlinger::unfreezeDisplay(DisplayID dpy, uint32_t flags)
1162{
1163 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1164 return BAD_VALUE;
1165
1166 Mutex::Autolock _l(mStateLock);
1167 mCurrentState.freezeDisplay = 0;
1168 setTransactionFlags(eTransactionNeeded);
1169
1170 // flags is intended to communicate some sort of animation behavior
Mathias Agopian62b74442009-04-14 23:02:51 -07001171 // (for instance fading)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001172 return NO_ERROR;
1173}
1174
Mathias Agopianc08731e2009-03-27 18:11:38 -07001175int SurfaceFlinger::setOrientation(DisplayID dpy,
1176 int orientation, uint32_t flags)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001177{
1178 if (UNLIKELY(uint32_t(dpy) >= DISPLAY_COUNT))
1179 return BAD_VALUE;
1180
1181 Mutex::Autolock _l(mStateLock);
1182 if (mCurrentState.orientation != orientation) {
1183 if (uint32_t(orientation)<=eOrientation270 || orientation==42) {
Mathias Agopianc08731e2009-03-27 18:11:38 -07001184 mCurrentState.orientationType = flags;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001185 mCurrentState.orientation = orientation;
1186 setTransactionFlags(eTransactionNeeded);
1187 mTransactionCV.wait(mStateLock);
1188 } else {
1189 orientation = BAD_VALUE;
1190 }
1191 }
1192 return orientation;
1193}
1194
1195sp<ISurface> SurfaceFlinger::createSurface(ClientID clientId, int pid,
1196 ISurfaceFlingerClient::surface_data_t* params,
1197 DisplayID d, uint32_t w, uint32_t h, PixelFormat format,
1198 uint32_t flags)
1199{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001200 sp<LayerBaseClient> layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001201 sp<LayerBaseClient::Surface> surfaceHandle;
Mathias Agopian6e2d6482009-07-09 18:16:43 -07001202
1203 if (int32_t(w|h) < 0) {
1204 LOGE("createSurface() failed, w or h is negative (w=%d, h=%d)",
1205 int(w), int(h));
1206 return surfaceHandle;
1207 }
1208
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001209 Mutex::Autolock _l(mStateLock);
Mathias Agopianf9d93272009-06-19 17:00:27 -07001210 sp<Client> client = mClientsMap.valueFor(clientId);
1211 if (UNLIKELY(client == 0)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001212 LOGE("createSurface() failed, client not found (id=%d)", clientId);
1213 return surfaceHandle;
1214 }
1215
1216 //LOGD("createSurface for pid %d (%d x %d)", pid, w, h);
Mathias Agopianf9d93272009-06-19 17:00:27 -07001217 int32_t id = client->generateId(pid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001218 if (uint32_t(id) >= NUM_LAYERS_MAX) {
1219 LOGE("createSurface() failed, generateId = %d", id);
1220 return surfaceHandle;
1221 }
1222
1223 switch (flags & eFXSurfaceMask) {
1224 case eFXSurfaceNormal:
1225 if (UNLIKELY(flags & ePushBuffers)) {
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001226 layer = createPushBuffersSurfaceLocked(client, d, id,
1227 w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001228 } else {
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001229 layer = createNormalSurfaceLocked(client, d, id,
1230 w, h, flags, format);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001231 }
1232 break;
1233 case eFXSurfaceBlur:
Mathias Agopianf9d93272009-06-19 17:00:27 -07001234 layer = createBlurSurfaceLocked(client, d, id, w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001235 break;
1236 case eFXSurfaceDim:
Mathias Agopianf9d93272009-06-19 17:00:27 -07001237 layer = createDimSurfaceLocked(client, d, id, w, h, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001238 break;
1239 }
1240
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001241 if (layer != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001242 setTransactionFlags(eTransactionNeeded);
1243 surfaceHandle = layer->getSurface();
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001244 if (surfaceHandle != 0) {
1245 params->token = surfaceHandle->getToken();
1246 params->identity = surfaceHandle->getIdentity();
1247 params->width = w;
1248 params->height = h;
1249 params->format = format;
1250 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001251 }
1252
1253 return surfaceHandle;
1254}
1255
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001256sp<LayerBaseClient> SurfaceFlinger::createNormalSurfaceLocked(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001257 const sp<Client>& client, DisplayID display,
Mathias Agopian1c97d2e2009-08-19 17:46:26 -07001258 int32_t id, uint32_t w, uint32_t h, uint32_t flags,
1259 PixelFormat& format)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001260{
1261 // initialize the surfaces
1262 switch (format) { // TODO: take h/w into account
1263 case PIXEL_FORMAT_TRANSPARENT:
1264 case PIXEL_FORMAT_TRANSLUCENT:
1265 format = PIXEL_FORMAT_RGBA_8888;
1266 break;
1267 case PIXEL_FORMAT_OPAQUE:
1268 format = PIXEL_FORMAT_RGB_565;
1269 break;
1270 }
1271
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001272 sp<Layer> layer = new Layer(this, display, client, id);
Mathias Agopianf9d93272009-06-19 17:00:27 -07001273 status_t err = layer->setBuffers(w, h, format, flags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001274 if (LIKELY(err == NO_ERROR)) {
1275 layer->initStates(w, h, flags);
1276 addLayer_l(layer);
1277 } else {
1278 LOGE("createNormalSurfaceLocked() failed (%s)", strerror(-err));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001279 layer.clear();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001280 }
1281 return layer;
1282}
1283
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001284sp<LayerBaseClient> SurfaceFlinger::createBlurSurfaceLocked(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001285 const sp<Client>& client, DisplayID display,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001286 int32_t id, uint32_t w, uint32_t h, uint32_t flags)
1287{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001288 sp<LayerBlur> layer = new LayerBlur(this, display, client, id);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001289 layer->initStates(w, h, flags);
1290 addLayer_l(layer);
1291 return layer;
1292}
1293
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001294sp<LayerBaseClient> SurfaceFlinger::createDimSurfaceLocked(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001295 const sp<Client>& client, DisplayID display,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001296 int32_t id, uint32_t w, uint32_t h, uint32_t flags)
1297{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001298 sp<LayerDim> layer = new LayerDim(this, display, client, id);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001299 layer->initStates(w, h, flags);
1300 addLayer_l(layer);
1301 return layer;
1302}
1303
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001304sp<LayerBaseClient> SurfaceFlinger::createPushBuffersSurfaceLocked(
Mathias Agopianf9d93272009-06-19 17:00:27 -07001305 const sp<Client>& client, DisplayID display,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001306 int32_t id, uint32_t w, uint32_t h, uint32_t flags)
1307{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001308 sp<LayerBuffer> layer = new LayerBuffer(this, display, client, id);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001309 layer->initStates(w, h, flags);
1310 addLayer_l(layer);
1311 return layer;
1312}
1313
Mathias Agopian9a112062009-04-17 19:36:26 -07001314status_t SurfaceFlinger::removeSurface(SurfaceID index)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001315{
Mathias Agopian9a112062009-04-17 19:36:26 -07001316 /*
1317 * called by the window manager, when a surface should be marked for
1318 * destruction.
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001319 *
1320 * The surface is removed from the current and drawing lists, but placed
1321 * in the purgatory queue, so it's not destroyed right-away (we need
1322 * to wait for all client's references to go away first).
Mathias Agopian9a112062009-04-17 19:36:26 -07001323 */
Mathias Agopian9a112062009-04-17 19:36:26 -07001324
Mathias Agopian48d819a2009-09-10 19:41:18 -07001325 status_t err = NAME_NOT_FOUND;
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001326 Mutex::Autolock _l(mStateLock);
1327 sp<LayerBaseClient> layer = getLayerUser_l(index);
Mathias Agopian48d819a2009-09-10 19:41:18 -07001328 if (layer != 0) {
1329 err = purgatorizeLayer_l(layer);
1330 if (err == NO_ERROR) {
1331 layer->onRemoved();
1332 setTransactionFlags(eTransactionNeeded);
1333 }
Mathias Agopian9a112062009-04-17 19:36:26 -07001334 }
1335 return err;
1336}
1337
1338status_t SurfaceFlinger::destroySurface(const sp<LayerBaseClient>& layer)
1339{
Mathias Agopian759fdb22009-07-02 17:33:40 -07001340 // called by ~ISurface() when all references are gone
Mathias Agopian9a112062009-04-17 19:36:26 -07001341
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001342 class MessageDestroySurface : public MessageBase {
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001343 SurfaceFlinger* flinger;
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001344 sp<LayerBaseClient> layer;
1345 public:
Mathias Agopian0aa758d2009-04-22 15:23:34 -07001346 MessageDestroySurface(
1347 SurfaceFlinger* flinger, const sp<LayerBaseClient>& layer)
1348 : flinger(flinger), layer(layer) { }
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001349 virtual bool handler() {
Mathias Agopiancd8c5e22009-06-19 16:24:02 -07001350 sp<LayerBaseClient> l(layer);
1351 layer.clear(); // clear it outside of the lock;
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001352 Mutex::Autolock _l(flinger->mStateLock);
Mathias Agopian759fdb22009-07-02 17:33:40 -07001353 /*
1354 * remove the layer from the current list -- chances are that it's
1355 * not in the list anyway, because it should have been removed
1356 * already upon request of the client (eg: window manager).
1357 * However, a buggy client could have not done that.
1358 * Since we know we don't have any more clients, we don't need
1359 * to use the purgatory.
1360 */
Mathias Agopiancd8c5e22009-06-19 16:24:02 -07001361 status_t err = flinger->removeLayer_l(l);
Mathias Agopian759fdb22009-07-02 17:33:40 -07001362 LOGE_IF(err<0 && err != NAME_NOT_FOUND,
1363 "error removing layer=%p (%s)", l.get(), strerror(-err));
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001364 return true;
1365 }
1366 };
Mathias Agopian3d579642009-06-04 18:46:21 -07001367
Mathias Agopianf1d8e872009-04-20 19:39:12 -07001368 mEventQueue.postMessage( new MessageDestroySurface(this, layer) );
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001369 return NO_ERROR;
1370}
1371
1372status_t SurfaceFlinger::setClientState(
1373 ClientID cid,
1374 int32_t count,
1375 const layer_state_t* states)
1376{
1377 Mutex::Autolock _l(mStateLock);
1378 uint32_t flags = 0;
1379 cid <<= 16;
1380 for (int i=0 ; i<count ; i++) {
1381 const layer_state_t& s = states[i];
Mathias Agopian3d579642009-06-04 18:46:21 -07001382 sp<LayerBaseClient> layer(getLayerUser_l(s.surface | cid));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001383 if (layer != 0) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001384 const uint32_t what = s.what;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001385 if (what & ePositionChanged) {
1386 if (layer->setPosition(s.x, s.y))
1387 flags |= eTraversalNeeded;
1388 }
1389 if (what & eLayerChanged) {
1390 if (layer->setLayer(s.z)) {
1391 mCurrentState.layersSortedByZ.reorder(
1392 layer, &Layer::compareCurrentStateZ);
1393 // we need traversal (state changed)
1394 // AND transaction (list changed)
1395 flags |= eTransactionNeeded|eTraversalNeeded;
1396 }
1397 }
1398 if (what & eSizeChanged) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001399 if (layer->setSize(s.w, s.h)) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001400 flags |= eTraversalNeeded;
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001401 mResizeTransationPending = true;
1402 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001403 }
1404 if (what & eAlphaChanged) {
1405 if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f)))
1406 flags |= eTraversalNeeded;
1407 }
1408 if (what & eMatrixChanged) {
1409 if (layer->setMatrix(s.matrix))
1410 flags |= eTraversalNeeded;
1411 }
1412 if (what & eTransparentRegionChanged) {
1413 if (layer->setTransparentRegionHint(s.transparentRegion))
1414 flags |= eTraversalNeeded;
1415 }
1416 if (what & eVisibilityChanged) {
1417 if (layer->setFlags(s.flags, s.mask))
1418 flags |= eTraversalNeeded;
1419 }
1420 }
1421 }
1422 if (flags) {
1423 setTransactionFlags(flags);
1424 }
1425 return NO_ERROR;
1426}
1427
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001428sp<LayerBaseClient> SurfaceFlinger::getLayerUser_l(SurfaceID s) const
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001429{
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001430 sp<LayerBaseClient> layer = mLayerMap.valueFor(s);
1431 return layer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001432}
1433
1434void SurfaceFlinger::screenReleased(int dpy)
1435{
1436 // this may be called by a signal handler, we can't do too much in here
1437 android_atomic_or(eConsoleReleased, &mConsoleSignals);
1438 signalEvent();
1439}
1440
1441void SurfaceFlinger::screenAcquired(int dpy)
1442{
1443 // this may be called by a signal handler, we can't do too much in here
1444 android_atomic_or(eConsoleAcquired, &mConsoleSignals);
1445 signalEvent();
1446}
1447
1448status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args)
1449{
1450 const size_t SIZE = 1024;
1451 char buffer[SIZE];
1452 String8 result;
Mathias Agopian375f5632009-06-15 18:24:59 -07001453 if (!mDump.checkCalling()) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001454 snprintf(buffer, SIZE, "Permission Denial: "
1455 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
1456 IPCThreadState::self()->getCallingPid(),
1457 IPCThreadState::self()->getCallingUid());
1458 result.append(buffer);
1459 } else {
Mathias Agopian9795c422009-08-26 16:36:26 -07001460
1461 // figure out if we're stuck somewhere
1462 const nsecs_t now = systemTime();
1463 const nsecs_t inSwapBuffers(mDebugInSwapBuffers);
1464 const nsecs_t inTransaction(mDebugInTransaction);
1465 nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0;
1466 nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0;
1467
1468 // Try to get the main lock, but don't insist if we can't
1469 // (this would indicate SF is stuck, but we want to be able to
1470 // print something in dumpsys).
1471 int retry = 3;
1472 while (mStateLock.tryLock()<0 && --retry>=0) {
1473 usleep(1000000);
1474 }
1475 const bool locked(retry >= 0);
1476 if (!locked) {
1477 snprintf(buffer, SIZE,
1478 "SurfaceFlinger appears to be unresponsive, "
1479 "dumping anyways (no locks held)\n");
1480 result.append(buffer);
1481 }
1482
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001483 size_t s = mClientsMap.size();
1484 char name[64];
1485 for (size_t i=0 ; i<s ; i++) {
Mathias Agopianf9d93272009-06-19 17:00:27 -07001486 sp<Client> client = mClientsMap.valueAt(i);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001487 sprintf(name, " Client (id=0x%08x)", client->cid);
1488 client->dump(name);
1489 }
1490 const LayerVector& currentLayers = mCurrentState.layersSortedByZ;
1491 const size_t count = currentLayers.size();
1492 for (size_t i=0 ; i<count ; i++) {
1493 /*** LayerBase ***/
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001494 const sp<LayerBase>& layer = currentLayers[i];
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001495 const Layer::State& s = layer->drawingState();
1496 snprintf(buffer, SIZE,
1497 "+ %s %p\n"
1498 " "
1499 "z=%9d, pos=(%4d,%4d), size=(%4d,%4d), "
1500 "needsBlending=%1d, invalidate=%1d, "
1501 "alpha=0x%02x, flags=0x%08x, tr=[%.2f, %.2f][%.2f, %.2f]\n",
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001502 layer->getTypeID(), layer.get(),
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001503 s.z, layer->tx(), layer->ty(), s.w, s.h,
1504 layer->needsBlending(), layer->contentDirty,
1505 s.alpha, s.flags,
1506 s.transform[0], s.transform[1],
1507 s.transform[2], s.transform[3]);
1508 result.append(buffer);
1509 buffer[0] = 0;
1510 /*** LayerBaseClient ***/
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001511 sp<LayerBaseClient> lbc =
1512 LayerBase::dynamicCast< LayerBaseClient* >(layer.get());
1513 if (lbc != 0) {
Mathias Agopianf9d93272009-06-19 17:00:27 -07001514 sp<Client> client(lbc->client.promote());
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001515 snprintf(buffer, SIZE,
1516 " "
1517 "id=0x%08x, client=0x%08x, identity=%u\n",
Mathias Agopianf9d93272009-06-19 17:00:27 -07001518 lbc->clientIndex(), client.get() ? client->cid : 0,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001519 lbc->getIdentity());
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001520
1521 result.append(buffer);
1522 buffer[0] = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001523 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001524 /*** Layer ***/
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001525 sp<Layer> l = LayerBase::dynamicCast< Layer* >(layer.get());
1526 if (l != 0) {
Mathias Agopian86f73292009-09-17 01:35:28 -07001527 SharedBufferStack::Statistics stats = l->lcblk->getStats();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001528 result.append( l->lcblk->dump(" ") );
1529 sp<const Buffer> buf0(l->getBuffer(0));
1530 sp<const Buffer> buf1(l->getBuffer(1));
Mathias Agopian4790a3c2009-09-14 15:59:16 -07001531 uint32_t w0=0, h0=0, s0=0;
1532 uint32_t w1=0, h1=0, s1=0;
1533 if (buf0 != 0) {
1534 w0 = buf0->getWidth();
1535 h0 = buf0->getHeight();
1536 s0 = buf0->getStride();
1537 }
1538 if (buf1 != 0) {
1539 w1 = buf1->getWidth();
1540 h1 = buf1->getHeight();
1541 s1 = buf1->getStride();
1542 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001543 snprintf(buffer, SIZE,
1544 " "
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001545 "format=%2d, [%3ux%3u:%3u] [%3ux%3u:%3u],"
Mathias Agopian86f73292009-09-17 01:35:28 -07001546 " freezeLock=%p, dq-q-time=%u us\n",
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001547 l->pixelFormat(),
Mathias Agopian4790a3c2009-09-14 15:59:16 -07001548 w0, h0, s0, w1, h1, s1,
Mathias Agopian86f73292009-09-17 01:35:28 -07001549 l->getFreezeLock().get(), stats.totalTime);
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001550 result.append(buffer);
1551 buffer[0] = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001552 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001553 s.transparentRegion.dump(result, "transparentRegion");
1554 layer->transparentRegionScreen.dump(result, "transparentRegionScreen");
1555 layer->visibleRegionScreen.dump(result, "visibleRegionScreen");
1556 }
1557 mWormholeRegion.dump(result, "WormholeRegion");
1558 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1559 snprintf(buffer, SIZE,
1560 " display frozen: %s, freezeCount=%d, orientation=%d, canDraw=%d\n",
1561 mFreezeDisplay?"yes":"no", mFreezeCount,
1562 mCurrentState.orientation, hw.canDraw());
1563 result.append(buffer);
Mathias Agopian9795c422009-08-26 16:36:26 -07001564 snprintf(buffer, SIZE,
1565 " last eglSwapBuffers() time: %f us\n"
1566 " last transaction time : %f us\n",
1567 mLastSwapBufferTime/1000.0, mLastTransactionTime/1000.0);
1568 result.append(buffer);
1569 if (inSwapBuffersDuration || !locked) {
1570 snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n",
1571 inSwapBuffersDuration/1000.0);
1572 result.append(buffer);
1573 }
1574 if (inTransactionDuration || !locked) {
1575 snprintf(buffer, SIZE, " transaction time: %f us\n",
1576 inTransactionDuration/1000.0);
1577 result.append(buffer);
1578 }
Mathias Agopian759fdb22009-07-02 17:33:40 -07001579 snprintf(buffer, SIZE, " client count: %d\n", mClientsMap.size());
Mathias Agopian3d579642009-06-04 18:46:21 -07001580 result.append(buffer);
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001581 const BufferAllocator& alloc(BufferAllocator::get());
1582 alloc.dump(result);
Mathias Agopian9795c422009-08-26 16:36:26 -07001583
1584 if (locked) {
1585 mStateLock.unlock();
1586 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001587 }
1588 write(fd, result.string(), result.size());
1589 return NO_ERROR;
1590}
1591
1592status_t SurfaceFlinger::onTransact(
1593 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
1594{
1595 switch (code) {
1596 case CREATE_CONNECTION:
1597 case OPEN_GLOBAL_TRANSACTION:
1598 case CLOSE_GLOBAL_TRANSACTION:
1599 case SET_ORIENTATION:
1600 case FREEZE_DISPLAY:
1601 case UNFREEZE_DISPLAY:
1602 case BOOT_FINISHED:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001603 {
1604 // codes that require permission check
1605 IPCThreadState* ipc = IPCThreadState::self();
1606 const int pid = ipc->getCallingPid();
Mathias Agopiana1ecca92009-05-21 19:21:59 -07001607 const int uid = ipc->getCallingUid();
Mathias Agopian375f5632009-06-15 18:24:59 -07001608 if ((uid != AID_GRAPHICS) && !mAccessSurfaceFlinger.check(pid, uid)) {
1609 LOGE("Permission Denial: "
1610 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
1611 return PERMISSION_DENIED;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001612 }
1613 }
1614 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001615 status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags);
1616 if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) {
Mathias Agopianb8a55602009-06-26 19:06:36 -07001617 CHECK_INTERFACE(ISurfaceComposer, data, reply);
Mathias Agopian375f5632009-06-15 18:24:59 -07001618 if (UNLIKELY(!mHardwareTest.checkCalling())) {
1619 IPCThreadState* ipc = IPCThreadState::self();
1620 const int pid = ipc->getCallingPid();
1621 const int uid = ipc->getCallingUid();
1622 LOGE("Permission Denial: "
1623 "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001624 return PERMISSION_DENIED;
1625 }
1626 int n;
1627 switch (code) {
Mathias Agopian01b76682009-04-16 20:04:08 -07001628 case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001629 return NO_ERROR;
Mathias Agopiancbc93ca2009-04-21 18:28:33 -07001630 case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001631 return NO_ERROR;
1632 case 1002: // SHOW_UPDATES
1633 n = data.readInt32();
1634 mDebugRegion = n ? n : (mDebugRegion ? 0 : 1);
1635 return NO_ERROR;
1636 case 1003: // SHOW_BACKGROUND
1637 n = data.readInt32();
1638 mDebugBackground = n ? 1 : 0;
1639 return NO_ERROR;
1640 case 1004:{ // repaint everything
1641 Mutex::Autolock _l(mStateLock);
1642 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1643 mDirtyRegion.set(hw.bounds()); // careful that's not thread-safe
1644 signalEvent();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001645 return NO_ERROR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001646 }
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001647 case 1005:{ // force transaction
1648 setTransactionFlags(eTransactionNeeded|eTraversalNeeded);
1649 return NO_ERROR;
1650 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001651 case 1007: // set mFreezeCount
1652 mFreezeCount = data.readInt32();
1653 return NO_ERROR;
1654 case 1010: // interrogate.
Mathias Agopian01b76682009-04-16 20:04:08 -07001655 reply->writeInt32(0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001656 reply->writeInt32(0);
1657 reply->writeInt32(mDebugRegion);
1658 reply->writeInt32(mDebugBackground);
1659 return NO_ERROR;
1660 case 1013: {
1661 Mutex::Autolock _l(mStateLock);
1662 const DisplayHardware& hw(graphicPlane(0).displayHardware());
1663 reply->writeInt32(hw.getPageFlipCount());
1664 }
1665 return NO_ERROR;
1666 }
1667 }
1668 return err;
1669}
1670
1671// ---------------------------------------------------------------------------
1672#if 0
1673#pragma mark -
1674#endif
1675
1676Client::Client(ClientID clientID, const sp<SurfaceFlinger>& flinger)
1677 : ctrlblk(0), cid(clientID), mPid(0), mBitmap(0), mFlinger(flinger)
1678{
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001679 const int pgsize = getpagesize();
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001680 const int cblksize = ((sizeof(SharedClient)+(pgsize-1))&~(pgsize-1));
Mathias Agopian7303c6b2009-07-02 18:11:53 -07001681
1682 mCblkHeap = new MemoryHeapBase(cblksize, 0,
1683 "SurfaceFlinger Client control-block");
1684
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001685 ctrlblk = static_cast<SharedClient *>(mCblkHeap->getBase());
Mathias Agopian7303c6b2009-07-02 18:11:53 -07001686 if (ctrlblk) { // construct the shared structure in-place.
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001687 new(ctrlblk) SharedClient;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001688 }
1689}
1690
1691Client::~Client() {
1692 if (ctrlblk) {
Mathias Agopiancbb288b2009-09-07 16:32:45 -07001693 ctrlblk->~SharedClient(); // destroy our shared-structure.
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001694 }
1695}
1696
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001697int32_t Client::generateId(int pid)
1698{
1699 const uint32_t i = clz( ~mBitmap );
1700 if (i >= NUM_LAYERS_MAX) {
1701 return NO_MEMORY;
1702 }
1703 mPid = pid;
1704 mInUse.add(uint8_t(i));
1705 mBitmap |= 1<<(31-i);
1706 return i;
1707}
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001708
1709status_t Client::bindLayer(const sp<LayerBaseClient>& layer, int32_t id)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001710{
1711 ssize_t idx = mInUse.indexOf(id);
1712 if (idx < 0)
1713 return NAME_NOT_FOUND;
1714 return mLayers.insertAt(layer, idx);
1715}
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001716
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001717void Client::free(int32_t id)
1718{
1719 ssize_t idx = mInUse.remove(uint8_t(id));
1720 if (idx >= 0) {
1721 mBitmap &= ~(1<<(31-id));
1722 mLayers.removeItemsAt(idx);
1723 }
1724}
1725
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001726bool Client::isValid(int32_t i) const {
1727 return (uint32_t(i)<NUM_LAYERS_MAX) && (mBitmap & (1<<(31-i)));
1728}
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001729
1730sp<LayerBaseClient> Client::getLayerUser(int32_t i) const {
1731 sp<LayerBaseClient> lbc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001732 ssize_t idx = mInUse.indexOf(uint8_t(i));
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001733 if (idx >= 0) {
1734 lbc = mLayers[idx].promote();
1735 LOGE_IF(lbc==0, "getLayerUser(i=%d), idx=%d is dead", int(i), int(idx));
1736 }
1737 return lbc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001738}
1739
1740void Client::dump(const char* what)
1741{
1742}
1743
1744// ---------------------------------------------------------------------------
1745#if 0
1746#pragma mark -
1747#endif
1748
Mathias Agopian7303c6b2009-07-02 18:11:53 -07001749BClient::BClient(SurfaceFlinger *flinger, ClientID cid, const sp<IMemoryHeap>& cblk)
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001750 : mId(cid), mFlinger(flinger), mCblk(cblk)
1751{
1752}
1753
1754BClient::~BClient() {
1755 // destroy all resources attached to this client
1756 mFlinger->destroyConnection(mId);
1757}
1758
Mathias Agopian7303c6b2009-07-02 18:11:53 -07001759sp<IMemoryHeap> BClient::getControlBlock() const {
1760 return mCblk;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001761}
1762
1763sp<ISurface> BClient::createSurface(
1764 ISurfaceFlingerClient::surface_data_t* params, int pid,
1765 DisplayID display, uint32_t w, uint32_t h, PixelFormat format,
1766 uint32_t flags)
1767{
1768 return mFlinger->createSurface(mId, pid, params, display, w, h, format, flags);
1769}
1770
1771status_t BClient::destroySurface(SurfaceID sid)
1772{
1773 sid |= (mId << 16); // add the client-part to id
Mathias Agopian9a112062009-04-17 19:36:26 -07001774 return mFlinger->removeSurface(sid);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001775}
1776
1777status_t BClient::setState(int32_t count, const layer_state_t* states)
1778{
1779 return mFlinger->setClientState(mId, count, states);
1780}
1781
1782// ---------------------------------------------------------------------------
1783
1784GraphicPlane::GraphicPlane()
1785 : mHw(0)
1786{
1787}
1788
1789GraphicPlane::~GraphicPlane() {
1790 delete mHw;
1791}
1792
1793bool GraphicPlane::initialized() const {
1794 return mHw ? true : false;
1795}
1796
1797void GraphicPlane::setDisplayHardware(DisplayHardware *hw) {
1798 mHw = hw;
1799}
1800
1801void GraphicPlane::setTransform(const Transform& tr) {
1802 mTransform = tr;
1803 mGlobalTransform = mOrientationTransform * mTransform;
1804}
1805
1806status_t GraphicPlane::orientationToTransfrom(
1807 int orientation, int w, int h, Transform* tr)
1808{
1809 float a, b, c, d, x, y;
1810 switch (orientation) {
1811 case ISurfaceComposer::eOrientationDefault:
1812 a=1; b=0; c=0; d=1; x=0; y=0;
1813 break;
1814 case ISurfaceComposer::eOrientation90:
1815 a=0; b=-1; c=1; d=0; x=w; y=0;
1816 break;
1817 case ISurfaceComposer::eOrientation180:
1818 a=-1; b=0; c=0; d=-1; x=w; y=h;
1819 break;
1820 case ISurfaceComposer::eOrientation270:
1821 a=0; b=1; c=-1; d=0; x=0; y=h;
1822 break;
1823 default:
1824 return BAD_VALUE;
1825 }
1826 tr->set(a, b, c, d);
1827 tr->set(x, y);
1828 return NO_ERROR;
1829}
1830
1831status_t GraphicPlane::setOrientation(int orientation)
1832{
1833 const DisplayHardware& hw(displayHardware());
1834 const float w = hw.getWidth();
1835 const float h = hw.getHeight();
1836
1837 if (orientation == ISurfaceComposer::eOrientationDefault) {
1838 // make sure the default orientation is optimal
1839 mOrientationTransform.reset();
Mathias Agopian0d1318b2009-03-27 17:58:20 -07001840 mOrientation = orientation;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001841 mGlobalTransform = mTransform;
1842 return NO_ERROR;
1843 }
1844
1845 // If the rotation can be handled in hardware, this is where
1846 // the magic should happen.
1847 if (UNLIKELY(orientation == 42)) {
1848 float a, b, c, d, x, y;
1849 const float r = (3.14159265f / 180.0f) * 42.0f;
1850 const float si = sinf(r);
1851 const float co = cosf(r);
1852 a=co; b=-si; c=si; d=co;
1853 x = si*(h*0.5f) + (1-co)*(w*0.5f);
1854 y =-si*(w*0.5f) + (1-co)*(h*0.5f);
1855 mOrientationTransform.set(a, b, c, d);
1856 mOrientationTransform.set(x, y);
1857 } else {
1858 GraphicPlane::orientationToTransfrom(orientation, w, h,
1859 &mOrientationTransform);
1860 }
Mathias Agopian0d1318b2009-03-27 17:58:20 -07001861 mOrientation = orientation;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001862 mGlobalTransform = mOrientationTransform * mTransform;
1863 return NO_ERROR;
1864}
1865
1866const DisplayHardware& GraphicPlane::displayHardware() const {
1867 return *mHw;
1868}
1869
1870const Transform& GraphicPlane::transform() const {
1871 return mGlobalTransform;
1872}
1873
Mathias Agopian076b1cc2009-04-10 14:24:30 -07001874EGLDisplay GraphicPlane::getEGLDisplay() const {
1875 return mHw->getEGLDisplay();
1876}
1877
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001878// ---------------------------------------------------------------------------
1879
1880}; // namespace android