The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
| 18 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | #include <stdint.h> |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 20 | #include <sys/types.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <errno.h> |
| 22 | #include <math.h> |
Keun young Park | 63f165f | 2012-08-31 10:53:36 -0700 | [diff] [blame] | 23 | #include <dlfcn.h> |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 24 | |
| 25 | #include <EGL/egl.h> |
| 26 | #include <GLES/gl.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | |
| 28 | #include <cutils/log.h> |
| 29 | #include <cutils/properties.h> |
| 30 | |
Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 31 | #include <binder/IPCThreadState.h> |
| 32 | #include <binder/IServiceManager.h> |
Mathias Agopian | 7303c6b | 2009-07-02 18:11:53 -0700 | [diff] [blame] | 33 | #include <binder/MemoryHeapBase.h> |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 34 | #include <binder/PermissionCache.h> |
Mathias Agopian | 7303c6b | 2009-07-02 18:11:53 -0700 | [diff] [blame] | 35 | |
Mathias Agopian | c666cae | 2012-07-25 18:56:13 -0700 | [diff] [blame] | 36 | #include <ui/DisplayInfo.h> |
| 37 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 38 | #include <gui/BitTube.h> |
Jamie Gennis | 1a4d883 | 2012-08-02 20:11:05 -0700 | [diff] [blame] | 39 | #include <gui/BufferQueue.h> |
Andy McFadden | 4803b74 | 2012-09-24 19:07:20 -0700 | [diff] [blame] | 40 | #include <gui/GuiConfig.h> |
Jamie Gennis | 1a4d883 | 2012-08-02 20:11:05 -0700 | [diff] [blame] | 41 | #include <gui/IDisplayEventConnection.h> |
Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 42 | #include <gui/Surface.h> |
Jamie Gennis | 392edd8 | 2012-11-29 23:26:29 -0800 | [diff] [blame] | 43 | #include <gui/GraphicBufferAlloc.h> |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 44 | |
| 45 | #include <ui/GraphicBufferAllocator.h> |
| 46 | #include <ui/PixelFormat.h> |
Andy McFadden | 4803b74 | 2012-09-24 19:07:20 -0700 | [diff] [blame] | 47 | #include <ui/UiConfig.h> |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 48 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 49 | #include <utils/misc.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 50 | #include <utils/String8.h> |
| 51 | #include <utils/String16.h> |
| 52 | #include <utils/StopWatch.h> |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 53 | #include <utils/Trace.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 54 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 55 | #include <private/android_filesystem_config.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 56 | |
| 57 | #include "clz.h" |
Mathias Agopian | 90ac799 | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 58 | #include "DdmConnection.h" |
Mathias Agopian | 0f2f5ff | 2012-07-31 23:09:07 -0700 | [diff] [blame] | 59 | #include "DisplayDevice.h" |
Mathias Agopian | db403e8 | 2012-06-18 16:47:56 -0700 | [diff] [blame] | 60 | #include "Client.h" |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 61 | #include "EventThread.h" |
Mathias Agopian | 1f7bec6 | 2010-06-25 18:02:21 -0700 | [diff] [blame] | 62 | #include "GLExtensions.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 63 | #include "Layer.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 64 | #include "LayerDim.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 65 | #include "SurfaceFlinger.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 66 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 67 | #include "DisplayHardware/FramebufferSurface.h" |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 68 | #include "DisplayHardware/HWComposer.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 69 | |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 70 | |
Mathias Agopian | bc2d79e | 2011-11-29 17:55:46 -0800 | [diff] [blame] | 71 | #define EGL_VERSION_HW_ANDROID 0x3143 |
| 72 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 73 | #define DISPLAY_COUNT 1 |
| 74 | |
| 75 | namespace android { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 76 | // --------------------------------------------------------------------------- |
| 77 | |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 78 | const String16 sHardwareTest("android.permission.HARDWARE_TEST"); |
| 79 | const String16 sAccessSurfaceFlinger("android.permission.ACCESS_SURFACE_FLINGER"); |
| 80 | const String16 sReadFramebuffer("android.permission.READ_FRAME_BUFFER"); |
| 81 | const String16 sDump("android.permission.DUMP"); |
| 82 | |
| 83 | // --------------------------------------------------------------------------- |
| 84 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 85 | SurfaceFlinger::SurfaceFlinger() |
| 86 | : BnSurfaceComposer(), Thread(false), |
| 87 | mTransactionFlags(0), |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 88 | mTransactionPending(false), |
| 89 | mAnimTransactionPending(false), |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 90 | mLayersRemoved(false), |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 91 | mRepaintEverything(0), |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 92 | mBootTime(systemTime()), |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 93 | mVisibleRegionsDirty(false), |
Mathias Agopian | a350ff9 | 2010-08-10 17:14:02 -0700 | [diff] [blame] | 94 | mHwWorkListDirty(false), |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 95 | mAnimCompositionPending(false), |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 96 | mDebugRegion(0), |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 97 | mDebugDDMS(0), |
Mathias Agopian | 73d3ba9 | 2010-09-22 18:58:01 -0700 | [diff] [blame] | 98 | mDebugDisableHWC(0), |
Mathias Agopian | a458364 | 2011-08-23 18:03:18 -0700 | [diff] [blame] | 99 | mDebugDisableTransformHint(0), |
Mathias Agopian | 9795c42 | 2009-08-26 16:36:26 -0700 | [diff] [blame] | 100 | mDebugInSwapBuffers(0), |
| 101 | mLastSwapBufferTime(0), |
| 102 | mDebugInTransaction(0), |
| 103 | mLastTransactionTime(0), |
Mathias Agopian | 5f20e2d | 2012-08-10 18:50:38 -0700 | [diff] [blame] | 104 | mBootFinished(false) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 105 | { |
Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 106 | ALOGI("SurfaceFlinger is starting"); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 107 | |
| 108 | // debugging stuff... |
| 109 | char value[PROPERTY_VALUE_MAX]; |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 110 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | property_get("debug.sf.showupdates", value, "0"); |
| 112 | mDebugRegion = atoi(value); |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 113 | |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 114 | property_get("debug.sf.ddms", value, "0"); |
| 115 | mDebugDDMS = atoi(value); |
| 116 | if (mDebugDDMS) { |
Keun young Park | 63f165f | 2012-08-31 10:53:36 -0700 | [diff] [blame] | 117 | if (!startDdmConnection()) { |
| 118 | // start failed, and DDMS debugging not enabled |
| 119 | mDebugDDMS = 0; |
| 120 | } |
Mathias Agopian | 8afb7e3 | 2011-08-15 20:44:40 -0700 | [diff] [blame] | 121 | } |
Mathias Agopian | c1d359d | 2012-08-04 20:09:03 -0700 | [diff] [blame] | 122 | ALOGI_IF(mDebugRegion, "showupdates enabled"); |
| 123 | ALOGI_IF(mDebugDDMS, "DDMS debugging enabled"); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 124 | } |
| 125 | |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 126 | void SurfaceFlinger::onFirstRef() |
| 127 | { |
| 128 | mEventQueue.init(this); |
| 129 | |
| 130 | run("SurfaceFlinger", PRIORITY_URGENT_DISPLAY); |
| 131 | |
| 132 | // Wait for the main thread to be done with its initialization |
| 133 | mReadyToRunBarrier.wait(); |
| 134 | } |
| 135 | |
| 136 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 137 | SurfaceFlinger::~SurfaceFlinger() |
| 138 | { |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 139 | EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
| 140 | eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); |
| 141 | eglTerminate(display); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 142 | } |
| 143 | |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 144 | void SurfaceFlinger::binderDied(const wp<IBinder>& who) |
| 145 | { |
| 146 | // the window manager died on us. prepare its eulogy. |
| 147 | |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 148 | // restore initial conditions (default device unblank, etc) |
| 149 | initializeDisplays(); |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 150 | |
| 151 | // restart the boot-animation |
Mathias Agopian | a67e418 | 2012-06-19 17:26:12 -0700 | [diff] [blame] | 152 | startBootAnim(); |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 153 | } |
| 154 | |
Mathias Agopian | 7e27f05 | 2010-05-28 14:22:23 -0700 | [diff] [blame] | 155 | sp<ISurfaceComposerClient> SurfaceFlinger::createConnection() |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 156 | { |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 157 | sp<ISurfaceComposerClient> bclient; |
| 158 | sp<Client> client(new Client(this)); |
| 159 | status_t err = client->initCheck(); |
| 160 | if (err == NO_ERROR) { |
| 161 | bclient = client; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 163 | return bclient; |
| 164 | } |
| 165 | |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 166 | sp<IBinder> SurfaceFlinger::createDisplay(const String8& displayName, |
| 167 | bool secure) |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 168 | { |
| 169 | class DisplayToken : public BBinder { |
| 170 | sp<SurfaceFlinger> flinger; |
| 171 | virtual ~DisplayToken() { |
| 172 | // no more references, this display must be terminated |
| 173 | Mutex::Autolock _l(flinger->mStateLock); |
| 174 | flinger->mCurrentState.displays.removeItem(this); |
| 175 | flinger->setTransactionFlags(eDisplayTransactionNeeded); |
| 176 | } |
| 177 | public: |
| 178 | DisplayToken(const sp<SurfaceFlinger>& flinger) |
| 179 | : flinger(flinger) { |
| 180 | } |
| 181 | }; |
| 182 | |
| 183 | sp<BBinder> token = new DisplayToken(this); |
| 184 | |
| 185 | Mutex::Autolock _l(mStateLock); |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 186 | DisplayDeviceState info(DisplayDevice::DISPLAY_VIRTUAL); |
Andy McFadden | 8dfa92f | 2012-09-17 18:27:17 -0700 | [diff] [blame] | 187 | info.displayName = displayName; |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 188 | info.isSecure = secure; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 189 | mCurrentState.displays.add(token, info); |
| 190 | |
| 191 | return token; |
| 192 | } |
| 193 | |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 194 | void SurfaceFlinger::createBuiltinDisplayLocked(DisplayDevice::DisplayType type) { |
| 195 | ALOGW_IF(mBuiltinDisplays[type], |
| 196 | "Overwriting display token for display type %d", type); |
| 197 | mBuiltinDisplays[type] = new BBinder(); |
| 198 | DisplayDeviceState info(type); |
| 199 | // All non-virtual displays are currently considered secure. |
| 200 | info.isSecure = true; |
| 201 | mCurrentState.displays.add(mBuiltinDisplays[type], info); |
| 202 | } |
| 203 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 204 | sp<IBinder> SurfaceFlinger::getBuiltInDisplay(int32_t id) { |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 205 | if (uint32_t(id) >= DisplayDevice::NUM_DISPLAY_TYPES) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 206 | ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id); |
| 207 | return NULL; |
| 208 | } |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 209 | return mBuiltinDisplays[id]; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 212 | sp<IGraphicBufferAlloc> SurfaceFlinger::createGraphicBufferAlloc() |
| 213 | { |
| 214 | sp<GraphicBufferAlloc> gba(new GraphicBufferAlloc()); |
| 215 | return gba; |
| 216 | } |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 217 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 218 | void SurfaceFlinger::bootFinished() |
| 219 | { |
| 220 | const nsecs_t now = systemTime(); |
| 221 | const nsecs_t duration = now - mBootTime; |
Steve Block | a19954a | 2012-01-04 20:05:49 +0000 | [diff] [blame] | 222 | ALOGI("Boot is finished (%ld ms)", long(ns2ms(duration)) ); |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 223 | mBootFinished = true; |
Mathias Agopian | 1f339ff | 2011-07-01 17:08:43 -0700 | [diff] [blame] | 224 | |
| 225 | // wait patiently for the window manager death |
| 226 | const String16 name("window"); |
| 227 | sp<IBinder> window(defaultServiceManager()->getService(name)); |
| 228 | if (window != 0) { |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 229 | window->linkToDeath(static_cast<IBinder::DeathRecipient*>(this)); |
Mathias Agopian | 1f339ff | 2011-07-01 17:08:43 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | // stop boot animation |
Mathias Agopian | a67e418 | 2012-06-19 17:26:12 -0700 | [diff] [blame] | 233 | // formerly we would just kill the process, but we now ask it to exit so it |
| 234 | // can choose where to stop the animation. |
| 235 | property_set("service.bootanim.exit", "1"); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 236 | } |
| 237 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 238 | void SurfaceFlinger::deleteTextureAsync(GLuint texture) { |
| 239 | class MessageDestroyGLTexture : public MessageBase { |
| 240 | GLuint texture; |
| 241 | public: |
| 242 | MessageDestroyGLTexture(GLuint texture) |
| 243 | : texture(texture) { |
| 244 | } |
| 245 | virtual bool handler() { |
| 246 | glDeleteTextures(1, &texture); |
| 247 | return true; |
| 248 | } |
| 249 | }; |
| 250 | postMessageAsync(new MessageDestroyGLTexture(texture)); |
| 251 | } |
| 252 | |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 253 | status_t SurfaceFlinger::selectConfigForAttribute( |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 254 | EGLDisplay dpy, |
| 255 | EGLint const* attrs, |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 256 | EGLint attribute, EGLint wanted, |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 257 | EGLConfig* outConfig) |
| 258 | { |
| 259 | EGLConfig config = NULL; |
| 260 | EGLint numConfigs = -1, n=0; |
| 261 | eglGetConfigs(dpy, NULL, 0, &numConfigs); |
| 262 | EGLConfig* const configs = new EGLConfig[numConfigs]; |
| 263 | eglChooseConfig(dpy, attrs, configs, numConfigs, &n); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 264 | |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 265 | if (n) { |
| 266 | if (attribute != EGL_NONE) { |
| 267 | for (int i=0 ; i<n ; i++) { |
| 268 | EGLint value = 0; |
| 269 | eglGetConfigAttrib(dpy, configs[i], attribute, &value); |
| 270 | if (wanted == value) { |
| 271 | *outConfig = configs[i]; |
| 272 | delete [] configs; |
| 273 | return NO_ERROR; |
| 274 | } |
| 275 | } |
| 276 | } else { |
| 277 | // just pick the first one |
| 278 | *outConfig = configs[0]; |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 279 | delete [] configs; |
| 280 | return NO_ERROR; |
| 281 | } |
| 282 | } |
| 283 | delete [] configs; |
| 284 | return NAME_NOT_FOUND; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 285 | } |
| 286 | |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 287 | class EGLAttributeVector { |
| 288 | struct Attribute; |
| 289 | class Adder; |
| 290 | friend class Adder; |
| 291 | KeyedVector<Attribute, EGLint> mList; |
| 292 | struct Attribute { |
| 293 | Attribute() {}; |
| 294 | Attribute(EGLint v) : v(v) { } |
| 295 | EGLint v; |
| 296 | bool operator < (const Attribute& other) const { |
| 297 | // this places EGL_NONE at the end |
| 298 | EGLint lhs(v); |
| 299 | EGLint rhs(other.v); |
| 300 | if (lhs == EGL_NONE) lhs = 0x7FFFFFFF; |
| 301 | if (rhs == EGL_NONE) rhs = 0x7FFFFFFF; |
| 302 | return lhs < rhs; |
| 303 | } |
| 304 | }; |
| 305 | class Adder { |
| 306 | friend class EGLAttributeVector; |
| 307 | EGLAttributeVector& v; |
| 308 | EGLint attribute; |
| 309 | Adder(EGLAttributeVector& v, EGLint attribute) |
| 310 | : v(v), attribute(attribute) { |
| 311 | } |
| 312 | public: |
| 313 | void operator = (EGLint value) { |
| 314 | if (attribute != EGL_NONE) { |
| 315 | v.mList.add(attribute, value); |
| 316 | } |
| 317 | } |
| 318 | operator EGLint () const { return v.mList[attribute]; } |
| 319 | }; |
| 320 | public: |
| 321 | EGLAttributeVector() { |
| 322 | mList.add(EGL_NONE, EGL_NONE); |
| 323 | } |
| 324 | void remove(EGLint attribute) { |
| 325 | if (attribute != EGL_NONE) { |
| 326 | mList.removeItem(attribute); |
| 327 | } |
| 328 | } |
| 329 | Adder operator [] (EGLint attribute) { |
| 330 | return Adder(*this, attribute); |
| 331 | } |
| 332 | EGLint operator [] (EGLint attribute) const { |
| 333 | return mList[attribute]; |
| 334 | } |
| 335 | // cast-operator to (EGLint const*) |
| 336 | operator EGLint const* () const { return &mList.keyAt(0).v; } |
| 337 | }; |
| 338 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 339 | EGLConfig SurfaceFlinger::selectEGLConfig(EGLDisplay display, EGLint nativeVisualId) { |
| 340 | // select our EGLConfig. It must support EGL_RECORDABLE_ANDROID if |
| 341 | // it is to be used with WIFI displays |
| 342 | EGLConfig config; |
| 343 | EGLint dummy; |
| 344 | status_t err; |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 345 | |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 346 | EGLAttributeVector attribs; |
| 347 | attribs[EGL_SURFACE_TYPE] = EGL_WINDOW_BIT; |
| 348 | attribs[EGL_RECORDABLE_ANDROID] = EGL_TRUE; |
| 349 | attribs[EGL_FRAMEBUFFER_TARGET_ANDROID] = EGL_TRUE; |
| 350 | attribs[EGL_RED_SIZE] = 8; |
| 351 | attribs[EGL_GREEN_SIZE] = 8; |
| 352 | attribs[EGL_BLUE_SIZE] = 8; |
| 353 | |
| 354 | err = selectConfigForAttribute(display, attribs, EGL_NONE, EGL_NONE, &config); |
| 355 | if (!err) |
| 356 | goto success; |
| 357 | |
| 358 | // maybe we failed because of EGL_FRAMEBUFFER_TARGET_ANDROID |
| 359 | ALOGW("no suitable EGLConfig found, trying without EGL_FRAMEBUFFER_TARGET_ANDROID"); |
| 360 | attribs.remove(EGL_FRAMEBUFFER_TARGET_ANDROID); |
| 361 | err = selectConfigForAttribute(display, attribs, |
| 362 | EGL_NATIVE_VISUAL_ID, nativeVisualId, &config); |
Jesse Hall | f21cffa | 2012-09-19 21:00:49 -0700 | [diff] [blame] | 363 | if (!err) |
| 364 | goto success; |
| 365 | |
| 366 | // maybe we failed because of EGL_RECORDABLE_ANDROID |
| 367 | ALOGW("no suitable EGLConfig found, trying without EGL_RECORDABLE_ANDROID"); |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 368 | attribs.remove(EGL_RECORDABLE_ANDROID); |
| 369 | err = selectConfigForAttribute(display, attribs, |
| 370 | EGL_NATIVE_VISUAL_ID, nativeVisualId, &config); |
Jesse Hall | f21cffa | 2012-09-19 21:00:49 -0700 | [diff] [blame] | 371 | if (!err) |
| 372 | goto success; |
| 373 | |
| 374 | // allow less than 24-bit color; the non-gpu-accelerated emulator only |
| 375 | // supports 16-bit color |
| 376 | ALOGW("no suitable EGLConfig found, trying with 16-bit color allowed"); |
Mathias Agopian | 722b98f | 2012-09-25 18:24:31 -0700 | [diff] [blame] | 377 | attribs.remove(EGL_RED_SIZE); |
| 378 | attribs.remove(EGL_GREEN_SIZE); |
| 379 | attribs.remove(EGL_BLUE_SIZE); |
| 380 | err = selectConfigForAttribute(display, attribs, |
| 381 | EGL_NATIVE_VISUAL_ID, nativeVisualId, &config); |
Jesse Hall | f21cffa | 2012-09-19 21:00:49 -0700 | [diff] [blame] | 382 | if (!err) |
| 383 | goto success; |
| 384 | |
| 385 | // this EGL is too lame for Android |
| 386 | ALOGE("no suitable EGLConfig found, giving up"); |
| 387 | |
| 388 | return 0; |
| 389 | |
| 390 | success: |
| 391 | if (eglGetConfigAttrib(display, config, EGL_CONFIG_CAVEAT, &dummy)) |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 392 | ALOGW_IF(dummy == EGL_SLOW_CONFIG, "EGL_SLOW_CONFIG selected!"); |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 393 | return config; |
| 394 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 395 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 396 | EGLContext SurfaceFlinger::createGLContext(EGLDisplay display, EGLConfig config) { |
| 397 | // Also create our EGLContext |
| 398 | EGLint contextAttributes[] = { |
| 399 | #ifdef EGL_IMG_context_priority |
| 400 | #ifdef HAS_CONTEXT_PRIORITY |
| 401 | #warning "using EGL_IMG_context_priority" |
| 402 | EGL_CONTEXT_PRIORITY_LEVEL_IMG, EGL_CONTEXT_PRIORITY_HIGH_IMG, |
| 403 | #endif |
| 404 | #endif |
| 405 | EGL_NONE, EGL_NONE |
| 406 | }; |
| 407 | EGLContext ctxt = eglCreateContext(display, config, NULL, contextAttributes); |
| 408 | ALOGE_IF(ctxt==EGL_NO_CONTEXT, "EGLContext creation failed"); |
| 409 | return ctxt; |
| 410 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 411 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 412 | void SurfaceFlinger::initializeGL(EGLDisplay display) { |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 413 | GLExtensions& extensions(GLExtensions::getInstance()); |
| 414 | extensions.initWithGLStrings( |
| 415 | glGetString(GL_VENDOR), |
| 416 | glGetString(GL_RENDERER), |
| 417 | glGetString(GL_VERSION), |
| 418 | glGetString(GL_EXTENSIONS), |
| 419 | eglQueryString(display, EGL_VENDOR), |
| 420 | eglQueryString(display, EGL_VERSION), |
| 421 | eglQueryString(display, EGL_EXTENSIONS)); |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 422 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 423 | glGetIntegerv(GL_MAX_TEXTURE_SIZE, &mMaxTextureSize); |
| 424 | glGetIntegerv(GL_MAX_VIEWPORT_DIMS, mMaxViewportDims); |
Mathias Agopian | 7303c6b | 2009-07-02 18:11:53 -0700 | [diff] [blame] | 425 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 426 | glPixelStorei(GL_UNPACK_ALIGNMENT, 4); |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 427 | glPixelStorei(GL_PACK_ALIGNMENT, 4); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 428 | glEnableClientState(GL_VERTEX_ARRAY); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 429 | glShadeModel(GL_FLAT); |
| 430 | glDisable(GL_DITHER); |
| 431 | glDisable(GL_CULL_FACE); |
| 432 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 433 | struct pack565 { |
| 434 | inline uint16_t operator() (int r, int g, int b) const { |
| 435 | return (r<<11)|(g<<5)|b; |
| 436 | } |
| 437 | } pack565; |
| 438 | |
Jamie Gennis | 9575f60 | 2011-10-07 14:51:16 -0700 | [diff] [blame] | 439 | const uint16_t protTexData[] = { pack565(0x03, 0x03, 0x03) }; |
| 440 | glGenTextures(1, &mProtectedTexName); |
| 441 | glBindTexture(GL_TEXTURE_2D, mProtectedTexName); |
| 442 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); |
| 443 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); |
| 444 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); |
| 445 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); |
| 446 | glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1, 1, 0, |
| 447 | GL_RGB, GL_UNSIGNED_SHORT_5_6_5, protTexData); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 448 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 449 | // print some debugging info |
| 450 | EGLint r,g,b,a; |
| 451 | eglGetConfigAttrib(display, mEGLConfig, EGL_RED_SIZE, &r); |
| 452 | eglGetConfigAttrib(display, mEGLConfig, EGL_GREEN_SIZE, &g); |
| 453 | eglGetConfigAttrib(display, mEGLConfig, EGL_BLUE_SIZE, &b); |
| 454 | eglGetConfigAttrib(display, mEGLConfig, EGL_ALPHA_SIZE, &a); |
| 455 | ALOGI("EGL informations:"); |
| 456 | ALOGI("vendor : %s", extensions.getEglVendor()); |
| 457 | ALOGI("version : %s", extensions.getEglVersion()); |
| 458 | ALOGI("extensions: %s", extensions.getEglExtension()); |
| 459 | ALOGI("Client API: %s", eglQueryString(display, EGL_CLIENT_APIS)?:"Not Supported"); |
| 460 | ALOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, mEGLConfig); |
| 461 | ALOGI("OpenGL ES informations:"); |
| 462 | ALOGI("vendor : %s", extensions.getVendor()); |
| 463 | ALOGI("renderer : %s", extensions.getRenderer()); |
| 464 | ALOGI("version : %s", extensions.getVersion()); |
| 465 | ALOGI("extensions: %s", extensions.getExtension()); |
| 466 | ALOGI("GL_MAX_TEXTURE_SIZE = %d", mMaxTextureSize); |
| 467 | ALOGI("GL_MAX_VIEWPORT_DIMS = %d x %d", mMaxViewportDims[0], mMaxViewportDims[1]); |
| 468 | } |
| 469 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 470 | status_t SurfaceFlinger::readyToRun() |
| 471 | { |
| 472 | ALOGI( "SurfaceFlinger's main thread ready to run. " |
| 473 | "Initializing graphics H/W..."); |
| 474 | |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 475 | Mutex::Autolock _l(mStateLock); |
| 476 | |
Andy McFadden | b0d1dd3 | 2012-09-10 14:08:09 -0700 | [diff] [blame] | 477 | // initialize EGL for the default display |
Jesse Hall | 34a09ba | 2012-07-29 22:35:34 -0700 | [diff] [blame] | 478 | mEGLDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
| 479 | eglInitialize(mEGLDisplay, NULL, NULL); |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 480 | |
Andy McFadden | b0d1dd3 | 2012-09-10 14:08:09 -0700 | [diff] [blame] | 481 | // Initialize the H/W composer object. There may or may not be an |
| 482 | // actual hardware composer underneath. |
| 483 | mHwc = new HWComposer(this, |
| 484 | *static_cast<HWComposer::EventHandler *>(this)); |
| 485 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 486 | // initialize the config and context |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 487 | EGLint format = mHwc->getVisualID(); |
Jesse Hall | 34a09ba | 2012-07-29 22:35:34 -0700 | [diff] [blame] | 488 | mEGLConfig = selectEGLConfig(mEGLDisplay, format); |
| 489 | mEGLContext = createGLContext(mEGLDisplay, mEGLConfig); |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 490 | |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 491 | LOG_ALWAYS_FATAL_IF(mEGLContext == EGL_NO_CONTEXT, |
| 492 | "couldn't create EGLContext"); |
| 493 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 494 | // initialize our non-virtual displays |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 495 | for (size_t i=0 ; i<DisplayDevice::NUM_DISPLAY_TYPES ; i++) { |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 496 | DisplayDevice::DisplayType type((DisplayDevice::DisplayType)i); |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 497 | // set-up the displays that are already connected |
Mathias Agopian | 9e2463e | 2012-09-21 18:26:16 -0700 | [diff] [blame] | 498 | if (mHwc->isConnected(i) || type==DisplayDevice::DISPLAY_PRIMARY) { |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 499 | // All non-virtual displays are currently considered secure. |
| 500 | bool isSecure = true; |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 501 | createBuiltinDisplayLocked(type); |
| 502 | wp<IBinder> token = mBuiltinDisplays[i]; |
| 503 | |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 504 | sp<FramebufferSurface> fbs = new FramebufferSurface(*mHwc, i); |
Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 505 | sp<Surface> stc = new Surface( |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 506 | static_cast< sp<IGraphicBufferProducer> >(fbs->getBufferQueue())); |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 507 | sp<DisplayDevice> hw = new DisplayDevice(this, |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 508 | type, isSecure, token, stc, fbs, mEGLConfig); |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 509 | if (i > DisplayDevice::DISPLAY_PRIMARY) { |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 510 | // FIXME: currently we don't get blank/unblank requests |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 511 | // for displays other than the main display, so we always |
| 512 | // assume a connected display is unblanked. |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 513 | ALOGD("marking display %d as acquired/unblanked", i); |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 514 | hw->acquireScreen(); |
| 515 | } |
| 516 | mDisplays.add(token, hw); |
| 517 | } |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 518 | } |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 519 | |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 520 | // we need a GL context current in a few places, when initializing |
| 521 | // OpenGL ES (see below), or creating a layer, |
| 522 | // or when a texture is (asynchronously) destroyed, and for that |
| 523 | // we need a valid surface, so it's convenient to use the main display |
| 524 | // for that. |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 525 | sp<const DisplayDevice> hw(getDefaultDisplayDevice()); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 526 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 527 | // initialize OpenGL ES |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 528 | DisplayDevice::makeCurrent(mEGLDisplay, hw, mEGLContext); |
| 529 | initializeGL(mEGLDisplay); |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 530 | |
Mathias Agopian | 028508c | 2012-07-25 21:12:12 -0700 | [diff] [blame] | 531 | // start the EventThread |
| 532 | mEventThread = new EventThread(this); |
| 533 | mEventQueue.setEventThread(mEventThread); |
| 534 | |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 535 | // initialize our drawing state |
| 536 | mDrawingState = mCurrentState; |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 537 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 538 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 539 | // We're now ready to accept clients... |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 540 | mReadyToRunBarrier.open(); |
| 541 | |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 542 | // set initial conditions (e.g. unblank default device) |
| 543 | initializeDisplays(); |
| 544 | |
Mathias Agopian | a1ecca9 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 545 | // start boot animation |
Mathias Agopian | a67e418 | 2012-06-19 17:26:12 -0700 | [diff] [blame] | 546 | startBootAnim(); |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 547 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 548 | return NO_ERROR; |
| 549 | } |
| 550 | |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 551 | int32_t SurfaceFlinger::allocateHwcDisplayId(DisplayDevice::DisplayType type) { |
| 552 | return (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) ? |
| 553 | type : mHwc->allocateDisplayId(); |
| 554 | } |
| 555 | |
Mathias Agopian | a67e418 | 2012-06-19 17:26:12 -0700 | [diff] [blame] | 556 | void SurfaceFlinger::startBootAnim() { |
| 557 | // start boot animation |
| 558 | property_set("service.bootanim.exit", "0"); |
| 559 | property_set("ctl.start", "bootanim"); |
| 560 | } |
| 561 | |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 562 | uint32_t SurfaceFlinger::getMaxTextureSize() const { |
| 563 | return mMaxTextureSize; |
| 564 | } |
| 565 | |
| 566 | uint32_t SurfaceFlinger::getMaxViewportDims() const { |
| 567 | return mMaxViewportDims[0] < mMaxViewportDims[1] ? |
| 568 | mMaxViewportDims[0] : mMaxViewportDims[1]; |
| 569 | } |
| 570 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 571 | // ---------------------------------------------------------------------------- |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 572 | |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 573 | bool SurfaceFlinger::authenticateSurfaceTexture( |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 574 | const sp<IGraphicBufferProducer>& bufferProducer) const { |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 575 | Mutex::Autolock _l(mStateLock); |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 576 | sp<IBinder> surfaceTextureBinder(bufferProducer->asBinder()); |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 577 | |
Andy McFadden | 882e3a3 | 2013-01-08 16:06:15 -0800 | [diff] [blame] | 578 | // We want to determine whether the IGraphicBufferProducer was created by |
| 579 | // SurfaceFlinger. Check to see if we can find it in the layer list. |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 580 | const LayerVector& currentLayers = mCurrentState.layersSortedByZ; |
| 581 | size_t count = currentLayers.size(); |
| 582 | for (size_t i=0 ; i<count ; i++) { |
| 583 | const sp<LayerBase>& layer(currentLayers[i]); |
| 584 | sp<LayerBaseClient> lbc(layer->getLayerBaseClient()); |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 585 | if (lbc != NULL) { |
Andy McFadden | 882e3a3 | 2013-01-08 16:06:15 -0800 | [diff] [blame] | 586 | // If this is an instance of Layer (as opposed to, say, LayerDim), |
| 587 | // we will get the consumer interface of SurfaceFlingerConsumer's |
| 588 | // BufferQueue. If it's the same Binder object as the graphic |
| 589 | // buffer producer interface, return success. |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 590 | wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder(); |
| 591 | if (lbcBinder == surfaceTextureBinder) { |
| 592 | return true; |
| 593 | } |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 594 | } |
| 595 | } |
| 596 | |
| 597 | // Check the layers in the purgatory. This check is here so that if a |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 598 | // GLConsumer gets destroyed before all the clients are done using it, |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 599 | // the error will not be reported as "surface XYZ is not authenticated", but |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 600 | // will instead fail later on when the client tries to use the surface, |
| 601 | // which should be reported as "surface XYZ returned an -ENODEV". The |
| 602 | // purgatorized layers are no less authentic than the visible ones, so this |
| 603 | // should not cause any harm. |
| 604 | size_t purgatorySize = mLayerPurgatory.size(); |
| 605 | for (size_t i=0 ; i<purgatorySize ; i++) { |
| 606 | const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i)); |
| 607 | sp<LayerBaseClient> lbc(layer->getLayerBaseClient()); |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 608 | if (lbc != NULL) { |
| 609 | wp<IBinder> lbcBinder = lbc->getSurfaceTextureBinder(); |
| 610 | if (lbcBinder == surfaceTextureBinder) { |
| 611 | return true; |
| 612 | } |
Jamie Gennis | 134f042 | 2011-03-08 12:18:54 -0800 | [diff] [blame] | 613 | } |
| 614 | } |
| 615 | |
| 616 | return false; |
| 617 | } |
| 618 | |
Jeff Brown | 9d4e3d2 | 2012-08-24 20:00:51 -0700 | [diff] [blame] | 619 | status_t SurfaceFlinger::getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info) { |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 620 | int32_t type = NAME_NOT_FOUND; |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 621 | for (int i=0 ; i<DisplayDevice::NUM_DISPLAY_TYPES ; i++) { |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 622 | if (display == mBuiltinDisplays[i]) { |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 623 | type = i; |
| 624 | break; |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | if (type < 0) { |
| 629 | return type; |
Mathias Agopian | c666cae | 2012-07-25 18:56:13 -0700 | [diff] [blame] | 630 | } |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 631 | |
| 632 | const HWComposer& hwc(getHwComposer()); |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 633 | float xdpi = hwc.getDpiX(type); |
| 634 | float ydpi = hwc.getDpiY(type); |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 635 | |
| 636 | // TODO: Not sure if display density should handled by SF any longer |
| 637 | class Density { |
| 638 | static int getDensityFromProperty(char const* propName) { |
| 639 | char property[PROPERTY_VALUE_MAX]; |
| 640 | int density = 0; |
| 641 | if (property_get(propName, property, NULL) > 0) { |
| 642 | density = atoi(property); |
| 643 | } |
| 644 | return density; |
| 645 | } |
| 646 | public: |
| 647 | static int getEmuDensity() { |
| 648 | return getDensityFromProperty("qemu.sf.lcd_density"); } |
| 649 | static int getBuildDensity() { |
| 650 | return getDensityFromProperty("ro.sf.lcd_density"); } |
| 651 | }; |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 652 | |
| 653 | if (type == DisplayDevice::DISPLAY_PRIMARY) { |
| 654 | // The density of the device is provided by a build property |
| 655 | float density = Density::getBuildDensity() / 160.0f; |
| 656 | if (density == 0) { |
| 657 | // the build doesn't provide a density -- this is wrong! |
| 658 | // use xdpi instead |
| 659 | ALOGE("ro.sf.lcd_density must be defined as a build property"); |
| 660 | density = xdpi / 160.0f; |
| 661 | } |
| 662 | if (Density::getEmuDensity()) { |
| 663 | // if "qemu.sf.lcd_density" is specified, it overrides everything |
| 664 | xdpi = ydpi = density = Density::getEmuDensity(); |
| 665 | density /= 160.0f; |
| 666 | } |
| 667 | info->density = density; |
| 668 | |
| 669 | // TODO: this needs to go away (currently needed only by webkit) |
| 670 | sp<const DisplayDevice> hw(getDefaultDisplayDevice()); |
| 671 | info->orientation = hw->getOrientation(); |
| 672 | getPixelFormatInfo(hw->getFormat(), &info->pixelFormatInfo); |
| 673 | } else { |
| 674 | // TODO: where should this value come from? |
| 675 | static const int TV_DENSITY = 213; |
| 676 | info->density = TV_DENSITY / 160.0f; |
| 677 | info->orientation = 0; |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 680 | info->w = hwc.getWidth(type); |
| 681 | info->h = hwc.getHeight(type); |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 682 | info->xdpi = xdpi; |
| 683 | info->ydpi = ydpi; |
Mathias Agopian | 1604f77 | 2012-09-18 21:54:42 -0700 | [diff] [blame] | 684 | info->fps = float(1e9 / hwc.getRefreshPeriod(type)); |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 685 | |
| 686 | // All non-virtual displays are currently considered secure. |
| 687 | info->secure = true; |
| 688 | |
Mathias Agopian | 888c822 | 2012-08-04 21:10:38 -0700 | [diff] [blame] | 689 | return NO_ERROR; |
Mathias Agopian | c666cae | 2012-07-25 18:56:13 -0700 | [diff] [blame] | 690 | } |
| 691 | |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 692 | // ---------------------------------------------------------------------------- |
| 693 | |
| 694 | sp<IDisplayEventConnection> SurfaceFlinger::createDisplayEventConnection() { |
Mathias Agopian | 8aedd47 | 2012-01-24 16:39:14 -0800 | [diff] [blame] | 695 | return mEventThread->createEventConnection(); |
Mathias Agopian | bb64124 | 2010-05-18 17:06:55 -0700 | [diff] [blame] | 696 | } |
| 697 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 698 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 699 | |
| 700 | void SurfaceFlinger::waitForEvent() { |
| 701 | mEventQueue.waitMessage(); |
| 702 | } |
| 703 | |
| 704 | void SurfaceFlinger::signalTransaction() { |
| 705 | mEventQueue.invalidate(); |
| 706 | } |
| 707 | |
| 708 | void SurfaceFlinger::signalLayerUpdate() { |
| 709 | mEventQueue.invalidate(); |
| 710 | } |
| 711 | |
| 712 | void SurfaceFlinger::signalRefresh() { |
| 713 | mEventQueue.refresh(); |
| 714 | } |
| 715 | |
| 716 | status_t SurfaceFlinger::postMessageAsync(const sp<MessageBase>& msg, |
| 717 | nsecs_t reltime, uint32_t flags) { |
| 718 | return mEventQueue.postMessage(msg, reltime); |
| 719 | } |
| 720 | |
| 721 | status_t SurfaceFlinger::postMessageSync(const sp<MessageBase>& msg, |
| 722 | nsecs_t reltime, uint32_t flags) { |
| 723 | status_t res = mEventQueue.postMessage(msg, reltime); |
| 724 | if (res == NO_ERROR) { |
| 725 | msg->wait(); |
| 726 | } |
| 727 | return res; |
| 728 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 729 | |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 730 | bool SurfaceFlinger::threadLoop() { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 731 | waitForEvent(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 732 | return true; |
| 733 | } |
| 734 | |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 735 | void SurfaceFlinger::onVSyncReceived(int type, nsecs_t timestamp) { |
Andy McFadden | 43601a2 | 2012-09-11 15:15:13 -0700 | [diff] [blame] | 736 | if (mEventThread == NULL) { |
| 737 | // This is a temporary workaround for b/7145521. A non-null pointer |
| 738 | // does not mean EventThread has finished initializing, so this |
| 739 | // is not a correct fix. |
| 740 | ALOGW("WARNING: EventThread not started, ignoring vsync"); |
| 741 | return; |
| 742 | } |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 743 | if (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) { |
| 744 | // we should only receive DisplayDevice::DisplayType from the vsync callback |
Mathias Agopian | 148994e | 2012-09-19 17:31:36 -0700 | [diff] [blame] | 745 | mEventThread->onVSyncReceived(type, timestamp); |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | void SurfaceFlinger::onHotplugReceived(int type, bool connected) { |
| 750 | if (mEventThread == NULL) { |
| 751 | // This is a temporary workaround for b/7145521. A non-null pointer |
| 752 | // does not mean EventThread has finished initializing, so this |
| 753 | // is not a correct fix. |
| 754 | ALOGW("WARNING: EventThread not started, ignoring hotplug"); |
| 755 | return; |
| 756 | } |
Mathias Agopian | 9e2463e | 2012-09-21 18:26:16 -0700 | [diff] [blame] | 757 | |
Mathias Agopian | 148994e | 2012-09-19 17:31:36 -0700 | [diff] [blame] | 758 | if (uint32_t(type) < DisplayDevice::NUM_DISPLAY_TYPES) { |
Mathias Agopian | 9e2463e | 2012-09-21 18:26:16 -0700 | [diff] [blame] | 759 | Mutex::Autolock _l(mStateLock); |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 760 | if (connected) { |
| 761 | createBuiltinDisplayLocked((DisplayDevice::DisplayType)type); |
Mathias Agopian | 9e2463e | 2012-09-21 18:26:16 -0700 | [diff] [blame] | 762 | } else { |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 763 | mCurrentState.displays.removeItem(mBuiltinDisplays[type]); |
| 764 | mBuiltinDisplays[type].clear(); |
Mathias Agopian | 9e2463e | 2012-09-21 18:26:16 -0700 | [diff] [blame] | 765 | } |
| 766 | setTransactionFlags(eDisplayTransactionNeeded); |
| 767 | |
Andy McFadden | 9e9689c | 2012-10-10 18:17:51 -0700 | [diff] [blame] | 768 | // Defer EventThread notification until SF has updated mDisplays. |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 769 | } |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 770 | } |
| 771 | |
Mathias Agopian | 81cd5d3 | 2012-10-04 02:34:38 -0700 | [diff] [blame] | 772 | void SurfaceFlinger::eventControl(int disp, int event, int enabled) { |
| 773 | getHwComposer().eventControl(disp, event, enabled); |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 774 | } |
| 775 | |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 776 | void SurfaceFlinger::onMessageReceived(int32_t what) { |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 777 | ATRACE_CALL(); |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 778 | switch (what) { |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 779 | case MessageQueue::INVALIDATE: |
| 780 | handleMessageTransaction(); |
| 781 | handleMessageInvalidate(); |
| 782 | signalRefresh(); |
| 783 | break; |
| 784 | case MessageQueue::REFRESH: |
| 785 | handleMessageRefresh(); |
| 786 | break; |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 787 | } |
| 788 | } |
| 789 | |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 790 | void SurfaceFlinger::handleMessageTransaction() { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 791 | uint32_t transactionFlags = peekTransactionFlags(eTransactionMask); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 792 | if (transactionFlags) { |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 793 | handleTransaction(transactionFlags); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 794 | } |
| 795 | } |
| 796 | |
| 797 | void SurfaceFlinger::handleMessageInvalidate() { |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 798 | ATRACE_CALL(); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 799 | handlePageFlip(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 800 | } |
| 801 | |
| 802 | void SurfaceFlinger::handleMessageRefresh() { |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 803 | ATRACE_CALL(); |
| 804 | preComposition(); |
| 805 | rebuildLayerStacks(); |
| 806 | setUpHWComposer(); |
| 807 | doDebugFlashRegions(); |
| 808 | doComposition(); |
| 809 | postComposition(); |
| 810 | } |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 811 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 812 | void SurfaceFlinger::doDebugFlashRegions() |
| 813 | { |
| 814 | // is debugging enabled |
| 815 | if (CC_LIKELY(!mDebugRegion)) |
| 816 | return; |
| 817 | |
| 818 | const bool repaintEverything = mRepaintEverything; |
| 819 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
| 820 | const sp<DisplayDevice>& hw(mDisplays[dpy]); |
| 821 | if (hw->canDraw()) { |
| 822 | // transform the dirty region into this screen's coordinate space |
| 823 | const Region dirtyRegion(hw->getDirtyRegion(repaintEverything)); |
| 824 | if (!dirtyRegion.isEmpty()) { |
| 825 | // redraw the whole screen |
| 826 | doComposeSurfaces(hw, Region(hw->bounds())); |
| 827 | |
| 828 | // and draw the dirty region |
| 829 | glDisable(GL_TEXTURE_EXTERNAL_OES); |
| 830 | glDisable(GL_TEXTURE_2D); |
| 831 | glDisable(GL_BLEND); |
| 832 | glColor4f(1, 0, 1, 1); |
| 833 | const int32_t height = hw->getHeight(); |
| 834 | Region::const_iterator it = dirtyRegion.begin(); |
| 835 | Region::const_iterator const end = dirtyRegion.end(); |
| 836 | while (it != end) { |
| 837 | const Rect& r = *it++; |
| 838 | GLfloat vertices[][2] = { |
Andy McFadden | 8f06a8c | 2013-01-11 10:24:34 -0800 | [diff] [blame] | 839 | { (GLfloat) r.left, (GLfloat) (height - r.top) }, |
| 840 | { (GLfloat) r.left, (GLfloat) (height - r.bottom) }, |
| 841 | { (GLfloat) r.right, (GLfloat) (height - r.bottom) }, |
| 842 | { (GLfloat) r.right, (GLfloat) (height - r.top) } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 843 | }; |
| 844 | glVertexPointer(2, GL_FLOAT, 0, vertices); |
| 845 | glDrawArrays(GL_TRIANGLE_FAN, 0, 4); |
| 846 | } |
| 847 | hw->compositionComplete(); |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 848 | hw->swapBuffers(getHwComposer()); |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 849 | } |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | postFramebuffer(); |
| 854 | |
| 855 | if (mDebugRegion > 1) { |
| 856 | usleep(mDebugRegion * 1000); |
| 857 | } |
Mathias Agopian | bb53b0e | 2012-09-24 21:27:29 -0700 | [diff] [blame] | 858 | |
| 859 | HWComposer& hwc(getHwComposer()); |
| 860 | if (hwc.initCheck() == NO_ERROR) { |
| 861 | status_t err = hwc.prepare(); |
| 862 | ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err)); |
| 863 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | void SurfaceFlinger::preComposition() |
| 867 | { |
| 868 | bool needExtraInvalidate = false; |
| 869 | const LayerVector& currentLayers(mDrawingState.layersSortedByZ); |
| 870 | const size_t count = currentLayers.size(); |
| 871 | for (size_t i=0 ; i<count ; i++) { |
| 872 | if (currentLayers[i]->onPreComposition()) { |
| 873 | needExtraInvalidate = true; |
| 874 | } |
| 875 | } |
| 876 | if (needExtraInvalidate) { |
| 877 | signalLayerUpdate(); |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | void SurfaceFlinger::postComposition() |
| 882 | { |
| 883 | const LayerVector& currentLayers(mDrawingState.layersSortedByZ); |
| 884 | const size_t count = currentLayers.size(); |
| 885 | for (size_t i=0 ; i<count ; i++) { |
| 886 | currentLayers[i]->onPostComposition(); |
| 887 | } |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 888 | |
| 889 | if (mAnimCompositionPending) { |
| 890 | mAnimCompositionPending = false; |
| 891 | |
| 892 | const HWComposer& hwc = getHwComposer(); |
| 893 | sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY); |
Jesse Hall | a9a1b00 | 2013-02-27 16:39:25 -0800 | [diff] [blame] | 894 | if (presentFence->isValid()) { |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 895 | mAnimFrameTracker.setActualPresentFence(presentFence); |
| 896 | } else { |
| 897 | // The HWC doesn't support present fences, so use the refresh |
| 898 | // timestamp instead. |
| 899 | nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY); |
| 900 | mAnimFrameTracker.setActualPresentTime(presentTime); |
| 901 | } |
| 902 | mAnimFrameTracker.advanceFrame(); |
| 903 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | void SurfaceFlinger::rebuildLayerStacks() { |
| 907 | // rebuild the visible layer list per screen |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 908 | if (CC_UNLIKELY(mVisibleRegionsDirty)) { |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 909 | ATRACE_CALL(); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 910 | mVisibleRegionsDirty = false; |
| 911 | invalidateHwcGeometry(); |
Mathias Agopian | ce3a0a5 | 2012-09-12 15:34:57 -0700 | [diff] [blame] | 912 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 913 | const LayerVector& currentLayers(mDrawingState.layersSortedByZ); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 914 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
Mathias Agopian | ce3a0a5 | 2012-09-12 15:34:57 -0700 | [diff] [blame] | 915 | Region opaqueRegion; |
| 916 | Region dirtyRegion; |
| 917 | Vector< sp<LayerBase> > layersSortedByZ; |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 918 | const sp<DisplayDevice>& hw(mDisplays[dpy]); |
Mathias Agopian | 7e7ed7f | 2012-08-28 14:20:00 -0700 | [diff] [blame] | 919 | const Transform& tr(hw->getTransform()); |
| 920 | const Rect bounds(hw->getBounds()); |
Mathias Agopian | ce3a0a5 | 2012-09-12 15:34:57 -0700 | [diff] [blame] | 921 | if (hw->canDraw()) { |
| 922 | SurfaceFlinger::computeVisibleRegions(currentLayers, |
| 923 | hw->getLayerStack(), dirtyRegion, opaqueRegion); |
Mathias Agopian | 7e7ed7f | 2012-08-28 14:20:00 -0700 | [diff] [blame] | 924 | |
Mathias Agopian | ce3a0a5 | 2012-09-12 15:34:57 -0700 | [diff] [blame] | 925 | const size_t count = currentLayers.size(); |
| 926 | for (size_t i=0 ; i<count ; i++) { |
| 927 | const sp<LayerBase>& layer(currentLayers[i]); |
| 928 | const Layer::State& s(layer->drawingState()); |
| 929 | if (s.layerStack == hw->getLayerStack()) { |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 930 | Region drawRegion(tr.transform( |
| 931 | layer->visibleNonTransparentRegion)); |
| 932 | drawRegion.andSelf(bounds); |
| 933 | if (!drawRegion.isEmpty()) { |
Mathias Agopian | ce3a0a5 | 2012-09-12 15:34:57 -0700 | [diff] [blame] | 934 | layersSortedByZ.add(layer); |
| 935 | } |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 936 | } |
| 937 | } |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 938 | } |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 939 | hw->setVisibleLayersSortedByZ(layersSortedByZ); |
Mathias Agopian | 7e7ed7f | 2012-08-28 14:20:00 -0700 | [diff] [blame] | 940 | hw->undefinedRegion.set(bounds); |
| 941 | hw->undefinedRegion.subtractSelf(tr.transform(opaqueRegion)); |
| 942 | hw->dirtyRegion.orSelf(dirtyRegion); |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 943 | } |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 944 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 945 | } |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 946 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 947 | void SurfaceFlinger::setUpHWComposer() { |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 948 | HWComposer& hwc(getHwComposer()); |
| 949 | if (hwc.initCheck() == NO_ERROR) { |
| 950 | // build the h/w work list |
Jamie Gennis | a4310c8 | 2012-09-25 20:26:00 -0700 | [diff] [blame] | 951 | if (CC_UNLIKELY(mHwWorkListDirty)) { |
| 952 | mHwWorkListDirty = false; |
| 953 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
| 954 | sp<const DisplayDevice> hw(mDisplays[dpy]); |
| 955 | const int32_t id = hw->getHwcDisplayId(); |
| 956 | if (id >= 0) { |
| 957 | const Vector< sp<LayerBase> >& currentLayers( |
| 958 | hw->getVisibleLayersSortedByZ()); |
| 959 | const size_t count = currentLayers.size(); |
| 960 | if (hwc.createWorkList(id, count) == NO_ERROR) { |
| 961 | HWComposer::LayerListIterator cur = hwc.begin(id); |
| 962 | const HWComposer::LayerListIterator end = hwc.end(id); |
| 963 | for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) { |
| 964 | const sp<LayerBase>& layer(currentLayers[i]); |
| 965 | layer->setGeometry(hw, *cur); |
| 966 | if (mDebugDisableHWC || mDebugRegion) { |
| 967 | cur->setSkip(true); |
| 968 | } |
| 969 | } |
| 970 | } |
| 971 | } |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | // set the per-frame data |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 976 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 977 | sp<const DisplayDevice> hw(mDisplays[dpy]); |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 978 | const int32_t id = hw->getHwcDisplayId(); |
| 979 | if (id >= 0) { |
| 980 | const Vector< sp<LayerBase> >& currentLayers( |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 981 | hw->getVisibleLayersSortedByZ()); |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 982 | const size_t count = currentLayers.size(); |
Jamie Gennis | a4310c8 | 2012-09-25 20:26:00 -0700 | [diff] [blame] | 983 | HWComposer::LayerListIterator cur = hwc.begin(id); |
| 984 | const HWComposer::LayerListIterator end = hwc.end(id); |
| 985 | for (size_t i=0 ; cur!=end && i<count ; ++i, ++cur) { |
| 986 | /* |
| 987 | * update the per-frame h/w composer data for each layer |
| 988 | * and build the transparent region of the FB |
| 989 | */ |
| 990 | const sp<LayerBase>& layer(currentLayers[i]); |
| 991 | layer->setPerFrameData(hw, *cur); |
Mathias Agopian | 1e26087 | 2012-08-08 18:35:12 -0700 | [diff] [blame] | 992 | } |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 993 | } |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 994 | } |
Jamie Gennis | a4310c8 | 2012-09-25 20:26:00 -0700 | [diff] [blame] | 995 | |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 996 | status_t err = hwc.prepare(); |
| 997 | ALOGE_IF(err, "HWComposer::prepare failed (%s)", strerror(-err)); |
| 998 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 999 | } |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1000 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1001 | void SurfaceFlinger::doComposition() { |
| 1002 | ATRACE_CALL(); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1003 | const bool repaintEverything = android_atomic_and(0, &mRepaintEverything); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1004 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1005 | const sp<DisplayDevice>& hw(mDisplays[dpy]); |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1006 | if (hw->canDraw()) { |
| 1007 | // transform the dirty region into this screen's coordinate space |
| 1008 | const Region dirtyRegion(hw->getDirtyRegion(repaintEverything)); |
Mathias Agopian | 02b9510 | 2012-11-05 17:50:57 -0800 | [diff] [blame] | 1009 | |
| 1010 | // repaint the framebuffer (if needed) |
| 1011 | doDisplayComposition(hw, dirtyRegion); |
| 1012 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1013 | hw->dirtyRegion.clear(); |
| 1014 | hw->flip(hw->swapRegion); |
| 1015 | hw->swapRegion.clear(); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1016 | } |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1017 | // inform the h/w that we're done compositing |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1018 | hw->compositionComplete(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1019 | } |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1020 | postFramebuffer(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1021 | } |
| 1022 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1023 | void SurfaceFlinger::postFramebuffer() |
| 1024 | { |
Mathias Agopian | 841cde5 | 2012-03-01 15:44:37 -0800 | [diff] [blame] | 1025 | ATRACE_CALL(); |
Mathias Agopian | b048cef | 2012-02-04 15:44:04 -0800 | [diff] [blame] | 1026 | |
Mathias Agopian | a44b041 | 2011-10-16 18:46:35 -0700 | [diff] [blame] | 1027 | const nsecs_t now = systemTime(); |
| 1028 | mDebugInSwapBuffers = now; |
Jesse Hall | c5c5a14 | 2012-07-02 16:49:28 -0700 | [diff] [blame] | 1029 | |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1030 | HWComposer& hwc(getHwComposer()); |
Jesse Hall | ef19414 | 2012-06-14 14:45:17 -0700 | [diff] [blame] | 1031 | if (hwc.initCheck() == NO_ERROR) { |
Mathias Agopian | 2a23184 | 2012-09-24 18:12:35 -0700 | [diff] [blame] | 1032 | if (!hwc.supportsFramebufferTarget()) { |
| 1033 | // EGL spec says: |
| 1034 | // "surface must be bound to the calling thread's current context, |
| 1035 | // for the current rendering API." |
| 1036 | DisplayDevice::makeCurrent(mEGLDisplay, |
| 1037 | getDefaultDisplayDevice(), mEGLContext); |
| 1038 | } |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 1039 | hwc.commit(); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1040 | } |
| 1041 | |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1042 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1043 | sp<const DisplayDevice> hw(mDisplays[dpy]); |
| 1044 | const Vector< sp<LayerBase> >& currentLayers(hw->getVisibleLayersSortedByZ()); |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 1045 | hw->onSwapBuffersCompleted(hwc); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1046 | const size_t count = currentLayers.size(); |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 1047 | int32_t id = hw->getHwcDisplayId(); |
| 1048 | if (id >=0 && hwc.initCheck() == NO_ERROR) { |
Mathias Agopian | 1e26087 | 2012-08-08 18:35:12 -0700 | [diff] [blame] | 1049 | HWComposer::LayerListIterator cur = hwc.begin(id); |
| 1050 | const HWComposer::LayerListIterator end = hwc.end(id); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1051 | for (size_t i = 0; cur != end && i < count; ++i, ++cur) { |
Mathias Agopian | d3ee231 | 2012-08-02 14:01:42 -0700 | [diff] [blame] | 1052 | currentLayers[i]->onLayerDisplayed(hw, &*cur); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1053 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1054 | } else { |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1055 | for (size_t i = 0; i < count; i++) { |
Mathias Agopian | d3ee231 | 2012-08-02 14:01:42 -0700 | [diff] [blame] | 1056 | currentLayers[i]->onLayerDisplayed(hw, NULL); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1057 | } |
Jesse Hall | ef19414 | 2012-06-14 14:45:17 -0700 | [diff] [blame] | 1058 | } |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 1059 | } |
| 1060 | |
Mathias Agopian | a44b041 | 2011-10-16 18:46:35 -0700 | [diff] [blame] | 1061 | mLastSwapBufferTime = systemTime() - now; |
| 1062 | mDebugInSwapBuffers = 0; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1063 | } |
| 1064 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1065 | void SurfaceFlinger::handleTransaction(uint32_t transactionFlags) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1066 | { |
Mathias Agopian | 841cde5 | 2012-03-01 15:44:37 -0800 | [diff] [blame] | 1067 | ATRACE_CALL(); |
| 1068 | |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 1069 | Mutex::Autolock _l(mStateLock); |
| 1070 | const nsecs_t now = systemTime(); |
| 1071 | mDebugInTransaction = now; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1072 | |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 1073 | // Here we're guaranteed that some transaction flags are set |
| 1074 | // so we can call handleTransactionLocked() unconditionally. |
| 1075 | // We call getTransactionFlags(), which will also clear the flags, |
| 1076 | // with mStateLock held to guarantee that mCurrentState won't change |
| 1077 | // until the transaction is committed. |
Mathias Agopian | 4da7519 | 2010-08-10 17:19:56 -0700 | [diff] [blame] | 1078 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1079 | transactionFlags = getTransactionFlags(eTransactionMask); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1080 | handleTransactionLocked(transactionFlags); |
Mathias Agopian | dea20b1 | 2011-05-03 17:04:02 -0700 | [diff] [blame] | 1081 | |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 1082 | mLastTransactionTime = systemTime() - now; |
| 1083 | mDebugInTransaction = 0; |
| 1084 | invalidateHwcGeometry(); |
| 1085 | // here the transaction has been committed |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1086 | } |
| 1087 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1088 | void SurfaceFlinger::handleTransactionLocked(uint32_t transactionFlags) |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1089 | { |
| 1090 | const LayerVector& currentLayers(mCurrentState.layersSortedByZ); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1091 | const size_t count = currentLayers.size(); |
| 1092 | |
| 1093 | /* |
| 1094 | * Traversal of the children |
| 1095 | * (perform the transaction for each of them if needed) |
| 1096 | */ |
| 1097 | |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1098 | if (transactionFlags & eTraversalNeeded) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1099 | for (size_t i=0 ; i<count ; i++) { |
Mathias Agopian | 8430095 | 2012-11-21 16:02:13 -0800 | [diff] [blame] | 1100 | const sp<LayerBase>& layer(currentLayers[i]); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1101 | uint32_t trFlags = layer->getTransactionFlags(eTransactionNeeded); |
| 1102 | if (!trFlags) continue; |
| 1103 | |
| 1104 | const uint32_t flags = layer->doTransaction(0); |
| 1105 | if (flags & Layer::eVisibleRegion) |
| 1106 | mVisibleRegionsDirty = true; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | /* |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1111 | * Perform display own transactions if needed |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1112 | */ |
| 1113 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1114 | if (transactionFlags & eDisplayTransactionNeeded) { |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1115 | // here we take advantage of Vector's copy-on-write semantics to |
| 1116 | // improve performance by skipping the transaction entirely when |
| 1117 | // know that the lists are identical |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1118 | const KeyedVector< wp<IBinder>, DisplayDeviceState>& curr(mCurrentState.displays); |
| 1119 | const KeyedVector< wp<IBinder>, DisplayDeviceState>& draw(mDrawingState.displays); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1120 | if (!curr.isIdenticalTo(draw)) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1121 | mVisibleRegionsDirty = true; |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1122 | const size_t cc = curr.size(); |
Mathias Agopian | 93997a8 | 2012-08-29 17:30:36 -0700 | [diff] [blame] | 1123 | size_t dc = draw.size(); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1124 | |
| 1125 | // find the displays that were removed |
| 1126 | // (ie: in drawing state but not in current state) |
| 1127 | // also handle displays that changed |
| 1128 | // (ie: displays that are in both lists) |
| 1129 | for (size_t i=0 ; i<dc ; i++) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1130 | const ssize_t j = curr.indexOfKey(draw.keyAt(i)); |
| 1131 | if (j < 0) { |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1132 | // in drawing state but not in current state |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1133 | if (!draw[i].isMainDisplay()) { |
Andy McFadden | 27ec573 | 2012-10-02 19:04:45 -0700 | [diff] [blame] | 1134 | // Call makeCurrent() on the primary display so we can |
| 1135 | // be sure that nothing associated with this display |
| 1136 | // is current. |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 1137 | const sp<const DisplayDevice> hw(getDefaultDisplayDevice()); |
Andy McFadden | 27ec573 | 2012-10-02 19:04:45 -0700 | [diff] [blame] | 1138 | DisplayDevice::makeCurrent(mEGLDisplay, hw, mEGLContext); |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1139 | mDisplays.removeItem(draw.keyAt(i)); |
Andy McFadden | 27ec573 | 2012-10-02 19:04:45 -0700 | [diff] [blame] | 1140 | getHwComposer().disconnectDisplay(draw[i].type); |
Andy McFadden | 9e9689c | 2012-10-10 18:17:51 -0700 | [diff] [blame] | 1141 | mEventThread->onHotplugReceived(draw[i].type, false); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1142 | } else { |
| 1143 | ALOGW("trying to remove the main display"); |
| 1144 | } |
| 1145 | } else { |
| 1146 | // this display is in both lists. see if something changed. |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1147 | const DisplayDeviceState& state(curr[j]); |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1148 | const wp<IBinder>& display(curr.keyAt(j)); |
Mathias Agopian | 111b2d8 | 2012-08-16 20:52:17 -0700 | [diff] [blame] | 1149 | if (state.surface->asBinder() != draw[i].surface->asBinder()) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1150 | // changing the surface is like destroying and |
Mathias Agopian | 93997a8 | 2012-08-29 17:30:36 -0700 | [diff] [blame] | 1151 | // recreating the DisplayDevice, so we just remove it |
| 1152 | // from the drawing state, so that it get re-added |
| 1153 | // below. |
| 1154 | mDisplays.removeItem(display); |
| 1155 | mDrawingState.displays.removeItemsAt(i); |
| 1156 | dc--; i--; |
| 1157 | // at this point we must loop to the next item |
| 1158 | continue; |
| 1159 | } |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1160 | |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 1161 | const sp<DisplayDevice> disp(getDisplayDevice(display)); |
Mathias Agopian | 93997a8 | 2012-08-29 17:30:36 -0700 | [diff] [blame] | 1162 | if (disp != NULL) { |
| 1163 | if (state.layerStack != draw[i].layerStack) { |
| 1164 | disp->setLayerStack(state.layerStack); |
| 1165 | } |
Mathias Agopian | 00e8c7a | 2012-09-04 19:30:46 -0700 | [diff] [blame] | 1166 | if ((state.orientation != draw[i].orientation) |
| 1167 | || (state.viewport != draw[i].viewport) |
| 1168 | || (state.frame != draw[i].frame)) |
| 1169 | { |
| 1170 | disp->setProjection(state.orientation, |
Jeff Brown | 4fb3999 | 2012-09-07 12:55:10 -0700 | [diff] [blame] | 1171 | state.viewport, state.frame); |
Mathias Agopian | 93997a8 | 2012-08-29 17:30:36 -0700 | [diff] [blame] | 1172 | } |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1173 | } |
| 1174 | } |
| 1175 | } |
| 1176 | |
| 1177 | // find displays that were added |
| 1178 | // (ie: in current state but not in drawing state) |
| 1179 | for (size_t i=0 ; i<cc ; i++) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1180 | if (draw.indexOfKey(curr.keyAt(i)) < 0) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1181 | const DisplayDeviceState& state(curr[i]); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1182 | |
| 1183 | sp<FramebufferSurface> fbs; |
Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 1184 | sp<Surface> stc; |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1185 | if (!state.isVirtualDisplay()) { |
| 1186 | |
| 1187 | ALOGE_IF(state.surface!=NULL, |
| 1188 | "adding a supported display, but rendering " |
| 1189 | "surface is provided (%p), ignoring it", |
| 1190 | state.surface.get()); |
| 1191 | |
| 1192 | // for supported (by hwc) displays we provide our |
| 1193 | // own rendering surface |
Mathias Agopian | f5a3392 | 2012-09-19 18:16:22 -0700 | [diff] [blame] | 1194 | fbs = new FramebufferSurface(*mHwc, state.type); |
Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 1195 | stc = new Surface( |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 1196 | static_cast< sp<IGraphicBufferProducer> >( |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 1197 | fbs->getBufferQueue())); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1198 | } else { |
| 1199 | if (state.surface != NULL) { |
Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 1200 | stc = new Surface(state.surface); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | const wp<IBinder>& display(curr.keyAt(i)); |
| 1205 | if (stc != NULL) { |
| 1206 | sp<DisplayDevice> hw = new DisplayDevice(this, |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 1207 | state.type, state.isSecure, display, stc, fbs, |
Jamie Gennis | dd3cb84 | 2012-10-19 18:19:11 -0700 | [diff] [blame] | 1208 | mEGLConfig); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1209 | hw->setLayerStack(state.layerStack); |
| 1210 | hw->setProjection(state.orientation, |
Jeff Brown | 4fb3999 | 2012-09-07 12:55:10 -0700 | [diff] [blame] | 1211 | state.viewport, state.frame); |
Andy McFadden | 8dfa92f | 2012-09-17 18:27:17 -0700 | [diff] [blame] | 1212 | hw->setDisplayName(state.displayName); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 1213 | mDisplays.add(display, hw); |
Andy McFadden | 9e9689c | 2012-10-10 18:17:51 -0700 | [diff] [blame] | 1214 | mEventThread->onHotplugReceived(state.type, true); |
Mathias Agopian | 93997a8 | 2012-08-29 17:30:36 -0700 | [diff] [blame] | 1215 | } |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1216 | } |
| 1217 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1218 | } |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1219 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1220 | |
Mathias Agopian | 8430095 | 2012-11-21 16:02:13 -0800 | [diff] [blame] | 1221 | if (transactionFlags & (eTraversalNeeded|eDisplayTransactionNeeded)) { |
| 1222 | // The transform hint might have changed for some layers |
| 1223 | // (either because a display has changed, or because a layer |
| 1224 | // as changed). |
| 1225 | // |
| 1226 | // Walk through all the layers in currentLayers, |
| 1227 | // and update their transform hint. |
| 1228 | // |
| 1229 | // If a layer is visible only on a single display, then that |
| 1230 | // display is used to calculate the hint, otherwise we use the |
| 1231 | // default display. |
| 1232 | // |
| 1233 | // NOTE: we do this here, rather than in rebuildLayerStacks() so that |
| 1234 | // the hint is set before we acquire a buffer from the surface texture. |
| 1235 | // |
| 1236 | // NOTE: layer transactions have taken place already, so we use their |
| 1237 | // drawing state. However, SurfaceFlinger's own transaction has not |
| 1238 | // happened yet, so we must use the current state layer list |
| 1239 | // (soon to become the drawing state list). |
| 1240 | // |
| 1241 | sp<const DisplayDevice> disp; |
| 1242 | uint32_t currentlayerStack = 0; |
| 1243 | for (size_t i=0; i<count; i++) { |
| 1244 | // NOTE: we rely on the fact that layers are sorted by |
| 1245 | // layerStack first (so we don't have to traverse the list |
| 1246 | // of displays for every layer). |
| 1247 | const sp<LayerBase>& layerBase(currentLayers[i]); |
| 1248 | uint32_t layerStack = layerBase->drawingState().layerStack; |
| 1249 | if (i==0 || currentlayerStack != layerStack) { |
| 1250 | currentlayerStack = layerStack; |
| 1251 | // figure out if this layerstack is mirrored |
| 1252 | // (more than one display) if so, pick the default display, |
| 1253 | // if not, pick the only display it's on. |
| 1254 | disp.clear(); |
| 1255 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
| 1256 | sp<const DisplayDevice> hw(mDisplays[dpy]); |
| 1257 | if (hw->getLayerStack() == currentlayerStack) { |
| 1258 | if (disp == NULL) { |
| 1259 | disp = hw; |
| 1260 | } else { |
| 1261 | disp = getDefaultDisplayDevice(); |
| 1262 | break; |
| 1263 | } |
| 1264 | } |
| 1265 | } |
| 1266 | } |
| 1267 | if (disp != NULL) { |
| 1268 | // presumably this means this layer is using a layerStack |
| 1269 | // that is not visible on any display |
| 1270 | layerBase->updateTransformHint(disp); |
| 1271 | } |
| 1272 | } |
| 1273 | } |
| 1274 | |
| 1275 | |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1276 | /* |
| 1277 | * Perform our own transaction if needed |
| 1278 | */ |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 1279 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1280 | const LayerVector& previousLayers(mDrawingState.layersSortedByZ); |
| 1281 | if (currentLayers.size() > previousLayers.size()) { |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1282 | // layers have been added |
| 1283 | mVisibleRegionsDirty = true; |
| 1284 | } |
| 1285 | |
| 1286 | // some layers might have been removed, so |
| 1287 | // we need to update the regions they're exposing. |
| 1288 | if (mLayersRemoved) { |
| 1289 | mLayersRemoved = false; |
| 1290 | mVisibleRegionsDirty = true; |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1291 | const size_t count = previousLayers.size(); |
| 1292 | for (size_t i=0 ; i<count ; i++) { |
| 1293 | const sp<LayerBase>& layer(previousLayers[i]); |
| 1294 | if (currentLayers.indexOf(layer) < 0) { |
| 1295 | // this layer is not visible anymore |
| 1296 | // TODO: we could traverse the tree from front to back and |
| 1297 | // compute the actual visible region |
| 1298 | // TODO: we could cache the transformed region |
Mathias Agopian | 1501d54 | 2012-09-04 21:04:09 -0700 | [diff] [blame] | 1299 | const Layer::State& s(layer->drawingState()); |
| 1300 | Region visibleReg = s.transform.transform( |
| 1301 | Region(Rect(s.active.w, s.active.h))); |
| 1302 | invalidateLayerStack(s.layerStack, visibleReg); |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 1303 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1304 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | commitTransaction(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | void SurfaceFlinger::commitTransaction() |
| 1311 | { |
| 1312 | if (!mLayersPendingRemoval.isEmpty()) { |
| 1313 | // Notify removed layers now that they can't be drawn from |
| 1314 | for (size_t i = 0; i < mLayersPendingRemoval.size(); i++) { |
| 1315 | mLayersPendingRemoval[i]->onRemoved(); |
| 1316 | } |
| 1317 | mLayersPendingRemoval.clear(); |
| 1318 | } |
| 1319 | |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 1320 | // If this transaction is part of a window animation then the next frame |
| 1321 | // we composite should be considered an animation as well. |
| 1322 | mAnimCompositionPending = mAnimTransactionPending; |
| 1323 | |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1324 | mDrawingState = mCurrentState; |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1325 | mTransactionPending = false; |
| 1326 | mAnimTransactionPending = false; |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1327 | mTransactionCV.broadcast(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1328 | } |
| 1329 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1330 | void SurfaceFlinger::computeVisibleRegions( |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1331 | const LayerVector& currentLayers, uint32_t layerStack, |
| 1332 | Region& outDirtyRegion, Region& outOpaqueRegion) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1333 | { |
Mathias Agopian | 841cde5 | 2012-03-01 15:44:37 -0800 | [diff] [blame] | 1334 | ATRACE_CALL(); |
| 1335 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1336 | Region aboveOpaqueLayers; |
| 1337 | Region aboveCoveredLayers; |
| 1338 | Region dirty; |
| 1339 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1340 | outDirtyRegion.clear(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1341 | |
| 1342 | size_t i = currentLayers.size(); |
| 1343 | while (i--) { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1344 | const sp<LayerBase>& layer = currentLayers[i]; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1345 | |
| 1346 | // start with the whole surface at its current location |
Mathias Agopian | 9701122 | 2009-07-28 10:57:27 -0700 | [diff] [blame] | 1347 | const Layer::State& s(layer->drawingState()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1348 | |
Jesse Hall | 01e2905 | 2013-02-19 16:13:35 -0800 | [diff] [blame] | 1349 | // only consider the layers on the given layer stack |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1350 | if (s.layerStack != layerStack) |
| 1351 | continue; |
| 1352 | |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1353 | /* |
| 1354 | * opaqueRegion: area of a surface that is fully opaque. |
| 1355 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1356 | Region opaqueRegion; |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1357 | |
| 1358 | /* |
| 1359 | * visibleRegion: area of a surface that is visible on screen |
| 1360 | * and not fully transparent. This is essentially the layer's |
| 1361 | * footprint minus the opaque regions above it. |
| 1362 | * Areas covered by a translucent surface are considered visible. |
| 1363 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1364 | Region visibleRegion; |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1365 | |
| 1366 | /* |
| 1367 | * coveredRegion: area of a surface that is covered by all |
| 1368 | * visible regions above it (which includes the translucent areas). |
| 1369 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1370 | Region coveredRegion; |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1371 | |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1372 | /* |
| 1373 | * transparentRegion: area of a surface that is hinted to be completely |
| 1374 | * transparent. This is only used to tell when the layer has no visible |
| 1375 | * non-transparent regions and can be removed from the layer list. It |
| 1376 | * does not affect the visibleRegion of this layer or any layers |
| 1377 | * beneath it. The hint may not be correct if apps don't respect the |
| 1378 | * SurfaceView restrictions (which, sadly, some don't). |
| 1379 | */ |
| 1380 | Region transparentRegion; |
| 1381 | |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1382 | |
| 1383 | // handle hidden surfaces by setting the visible region to empty |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 1384 | if (CC_LIKELY(layer->isVisible())) { |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 1385 | const bool translucent = !layer->isOpaque(); |
Mathias Agopian | 5219a06 | 2013-02-26 16:37:53 -0800 | [diff] [blame] | 1386 | Rect bounds(s.transform.transform(layer->computeBounds())); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1387 | visibleRegion.set(bounds); |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1388 | if (!visibleRegion.isEmpty()) { |
| 1389 | // Remove the transparent area from the visible region |
| 1390 | if (translucent) { |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1391 | const Transform tr(s.transform); |
| 1392 | if (tr.transformed()) { |
| 1393 | if (tr.preserveRects()) { |
| 1394 | // transform the transparent region |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1395 | transparentRegion = tr.transform(s.transparentRegion); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1396 | } else { |
| 1397 | // transformation too complex, can't do the |
| 1398 | // transparent region optimization. |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1399 | transparentRegion.clear(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1400 | } |
| 1401 | } else { |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1402 | transparentRegion = s.transparentRegion; |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1403 | } |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1404 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1405 | |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1406 | // compute the opaque region |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1407 | const int32_t layerOrientation = s.transform.getOrientation(); |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1408 | if (s.alpha==255 && !translucent && |
| 1409 | ((layerOrientation & Transform::ROT_INVALID) == false)) { |
| 1410 | // the opaque region is the layer's footprint |
| 1411 | opaqueRegion = visibleRegion; |
| 1412 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1413 | } |
| 1414 | } |
| 1415 | |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1416 | // Clip the covered region to the visible region |
| 1417 | coveredRegion = aboveCoveredLayers.intersect(visibleRegion); |
| 1418 | |
| 1419 | // Update aboveCoveredLayers for next (lower) layer |
| 1420 | aboveCoveredLayers.orSelf(visibleRegion); |
| 1421 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1422 | // subtract the opaque region covered by the layers above us |
| 1423 | visibleRegion.subtractSelf(aboveOpaqueLayers); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1424 | |
| 1425 | // compute this layer's dirty region |
| 1426 | if (layer->contentDirty) { |
| 1427 | // we need to invalidate the whole region |
| 1428 | dirty = visibleRegion; |
| 1429 | // as well, as the old visible region |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1430 | dirty.orSelf(layer->visibleRegion); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1431 | layer->contentDirty = false; |
| 1432 | } else { |
Mathias Agopian | a8d44f7 | 2009-06-28 02:54:16 -0700 | [diff] [blame] | 1433 | /* compute the exposed region: |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1434 | * the exposed region consists of two components: |
| 1435 | * 1) what's VISIBLE now and was COVERED before |
| 1436 | * 2) what's EXPOSED now less what was EXPOSED before |
| 1437 | * |
| 1438 | * note that (1) is conservative, we start with the whole |
| 1439 | * visible region but only keep what used to be covered by |
| 1440 | * something -- which mean it may have been exposed. |
| 1441 | * |
| 1442 | * (2) handles areas that were not covered by anything but got |
| 1443 | * exposed because of a resize. |
Mathias Agopian | a8d44f7 | 2009-06-28 02:54:16 -0700 | [diff] [blame] | 1444 | */ |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1445 | const Region newExposed = visibleRegion - coveredRegion; |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1446 | const Region oldVisibleRegion = layer->visibleRegion; |
| 1447 | const Region oldCoveredRegion = layer->coveredRegion; |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1448 | const Region oldExposed = oldVisibleRegion - oldCoveredRegion; |
| 1449 | dirty = (visibleRegion&oldCoveredRegion) | (newExposed-oldExposed); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1450 | } |
| 1451 | dirty.subtractSelf(aboveOpaqueLayers); |
| 1452 | |
| 1453 | // accumulate to the screen dirty region |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1454 | outDirtyRegion.orSelf(dirty); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1455 | |
Mathias Agopian | ab02873 | 2010-03-16 16:41:46 -0700 | [diff] [blame] | 1456 | // Update aboveOpaqueLayers for next (lower) layer |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1457 | aboveOpaqueLayers.orSelf(opaqueRegion); |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 1458 | |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1459 | // Store the visible region in screen space |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1460 | layer->setVisibleRegion(visibleRegion); |
| 1461 | layer->setCoveredRegion(coveredRegion); |
Jesse Hall | a8026d2 | 2012-09-25 13:25:04 -0700 | [diff] [blame] | 1462 | layer->setVisibleNonTransparentRegion( |
| 1463 | visibleRegion.subtract(transparentRegion)); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1464 | } |
| 1465 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1466 | outOpaqueRegion = aboveOpaqueLayers; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1467 | } |
| 1468 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1469 | void SurfaceFlinger::invalidateLayerStack(uint32_t layerStack, |
| 1470 | const Region& dirty) { |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1471 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1472 | const sp<DisplayDevice>& hw(mDisplays[dpy]); |
| 1473 | if (hw->getLayerStack() == layerStack) { |
| 1474 | hw->dirtyRegion.orSelf(dirty); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1475 | } |
| 1476 | } |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | void SurfaceFlinger::handlePageFlip() |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1480 | { |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1481 | Region dirtyRegion; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1482 | |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1483 | bool visibleRegions = false; |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1484 | const LayerVector& currentLayers(mDrawingState.layersSortedByZ); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1485 | const size_t count = currentLayers.size(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1486 | for (size_t i=0 ; i<count ; i++) { |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1487 | const sp<LayerBase>& layer(currentLayers[i]); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1488 | const Region dirty(layer->latchBuffer(visibleRegions)); |
Mathias Agopian | 1501d54 | 2012-09-04 21:04:09 -0700 | [diff] [blame] | 1489 | const Layer::State& s(layer->drawingState()); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1490 | invalidateLayerStack(s.layerStack, dirty); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1491 | } |
Mathias Agopian | 4da7519 | 2010-08-10 17:19:56 -0700 | [diff] [blame] | 1492 | |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 1493 | mVisibleRegionsDirty |= visibleRegions; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1494 | } |
| 1495 | |
Mathias Agopian | ad456f9 | 2011-01-13 17:53:01 -0800 | [diff] [blame] | 1496 | void SurfaceFlinger::invalidateHwcGeometry() |
| 1497 | { |
| 1498 | mHwWorkListDirty = true; |
| 1499 | } |
| 1500 | |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 1501 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1502 | void SurfaceFlinger::doDisplayComposition(const sp<const DisplayDevice>& hw, |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1503 | const Region& inDirtyRegion) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1504 | { |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1505 | Region dirtyRegion(inDirtyRegion); |
| 1506 | |
Mathias Agopian | b8a5560 | 2009-06-26 19:06:36 -0700 | [diff] [blame] | 1507 | // compute the invalid region |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1508 | hw->swapRegion.orSelf(dirtyRegion); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1509 | |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1510 | uint32_t flags = hw->getFlags(); |
Mathias Agopian | 0f2f5ff | 2012-07-31 23:09:07 -0700 | [diff] [blame] | 1511 | if (flags & DisplayDevice::SWAP_RECTANGLE) { |
Mathias Agopian | 29d06ac | 2009-06-29 18:49:56 -0700 | [diff] [blame] | 1512 | // we can redraw only what's dirty, but since SWAP_RECTANGLE only |
| 1513 | // takes a rectangle, we must make sure to update that whole |
| 1514 | // rectangle in that case |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1515 | dirtyRegion.set(hw->swapRegion.bounds()); |
Mathias Agopian | 29d06ac | 2009-06-29 18:49:56 -0700 | [diff] [blame] | 1516 | } else { |
Mathias Agopian | 0f2f5ff | 2012-07-31 23:09:07 -0700 | [diff] [blame] | 1517 | if (flags & DisplayDevice::PARTIAL_UPDATES) { |
Mathias Agopian | 29d06ac | 2009-06-29 18:49:56 -0700 | [diff] [blame] | 1518 | // We need to redraw the rectangle that will be updated |
| 1519 | // (pushed to the framebuffer). |
Mathias Agopian | 95a666b | 2009-09-24 14:57:26 -0700 | [diff] [blame] | 1520 | // This is needed because PARTIAL_UPDATES only takes one |
Mathias Agopian | 0f2f5ff | 2012-07-31 23:09:07 -0700 | [diff] [blame] | 1521 | // rectangle instead of a region (see DisplayDevice::flip()) |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1522 | dirtyRegion.set(hw->swapRegion.bounds()); |
Mathias Agopian | 29d06ac | 2009-06-29 18:49:56 -0700 | [diff] [blame] | 1523 | } else { |
| 1524 | // we need to redraw everything (the whole screen) |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1525 | dirtyRegion.set(hw->bounds()); |
| 1526 | hw->swapRegion = dirtyRegion; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1527 | } |
| 1528 | } |
| 1529 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1530 | doComposeSurfaces(hw, dirtyRegion); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1531 | |
Mathias Agopian | 9c6e297 | 2011-09-20 17:21:56 -0700 | [diff] [blame] | 1532 | // update the swap region and clear the dirty region |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 1533 | hw->swapRegion.orSelf(dirtyRegion); |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 1534 | |
| 1535 | // swap buffers (presentation) |
| 1536 | hw->swapBuffers(getHwComposer()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1537 | } |
| 1538 | |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1539 | void SurfaceFlinger::doComposeSurfaces(const sp<const DisplayDevice>& hw, const Region& dirty) |
Mathias Agopian | f384cc3 | 2011-09-08 18:31:55 -0700 | [diff] [blame] | 1540 | { |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1541 | const int32_t id = hw->getHwcDisplayId(); |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 1542 | HWComposer& hwc(getHwComposer()); |
Mathias Agopian | 1e26087 | 2012-08-08 18:35:12 -0700 | [diff] [blame] | 1543 | HWComposer::LayerListIterator cur = hwc.begin(id); |
| 1544 | const HWComposer::LayerListIterator end = hwc.end(id); |
Mathias Agopian | cd20eb0 | 2011-09-22 20:57:04 -0700 | [diff] [blame] | 1545 | |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1546 | const bool hasGlesComposition = hwc.hasGlesComposition(id) || (cur==end); |
| 1547 | if (hasGlesComposition) { |
Mathias Agopian | da8d0a5 | 2012-09-04 15:05:38 -0700 | [diff] [blame] | 1548 | DisplayDevice::makeCurrent(mEGLDisplay, hw, mEGLContext); |
Mathias Agopian | 52bbb1a | 2012-07-31 19:01:53 -0700 | [diff] [blame] | 1549 | |
| 1550 | // set the frame buffer |
| 1551 | glMatrixMode(GL_MODELVIEW); |
| 1552 | glLoadIdentity(); |
| 1553 | |
| 1554 | // Never touch the framebuffer if we don't have any framebuffer layers |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1555 | const bool hasHwcComposition = hwc.hasHwcComposition(id); |
Mathias Agopian | e60b068 | 2012-08-21 23:34:09 -0700 | [diff] [blame] | 1556 | if (hasHwcComposition) { |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1557 | // when using overlays, we assume a fully transparent framebuffer |
| 1558 | // NOTE: we could reduce how much we need to clear, for instance |
| 1559 | // remove where there are opaque FB layers. however, on some |
| 1560 | // GPUs doing a "clean slate" glClear might be more efficient. |
| 1561 | // We'll revisit later if needed. |
| 1562 | glClearColor(0, 0, 0, 0); |
| 1563 | glClear(GL_COLOR_BUFFER_BIT); |
| 1564 | } else { |
Mathias Agopian | 766dc49 | 2012-10-30 18:08:06 -0700 | [diff] [blame] | 1565 | // we start with the whole screen area |
| 1566 | const Region bounds(hw->getBounds()); |
| 1567 | |
| 1568 | // we remove the scissor part |
| 1569 | // we're left with the letterbox region |
| 1570 | // (common case is that letterbox ends-up being empty) |
| 1571 | const Region letterbox(bounds.subtract(hw->getScissor())); |
| 1572 | |
| 1573 | // compute the area to clear |
| 1574 | Region region(hw->undefinedRegion.merge(letterbox)); |
| 1575 | |
| 1576 | // but limit it to the dirty region |
| 1577 | region.andSelf(dirty); |
| 1578 | |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1579 | // screen is already cleared here |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 1580 | if (!region.isEmpty()) { |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1581 | // can happen with SurfaceView |
Mathias Agopian | 55801e4 | 2012-08-27 18:54:24 -0700 | [diff] [blame] | 1582 | drawWormhole(hw, region); |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1583 | } |
Mathias Agopian | a2f4e56 | 2012-04-15 23:34:59 -0700 | [diff] [blame] | 1584 | } |
Mathias Agopian | f45c510 | 2012-10-24 16:29:17 -0700 | [diff] [blame] | 1585 | |
Mathias Agopian | 766dc49 | 2012-10-30 18:08:06 -0700 | [diff] [blame] | 1586 | if (hw->getDisplayType() != DisplayDevice::DISPLAY_PRIMARY) { |
| 1587 | // just to be on the safe side, we don't set the |
Mathias Agopian | f45c510 | 2012-10-24 16:29:17 -0700 | [diff] [blame] | 1588 | // scissor on the main display. It should never be needed |
| 1589 | // anyways (though in theory it could since the API allows it). |
| 1590 | const Rect& bounds(hw->getBounds()); |
Mathias Agopian | 766dc49 | 2012-10-30 18:08:06 -0700 | [diff] [blame] | 1591 | const Rect& scissor(hw->getScissor()); |
Mathias Agopian | f45c510 | 2012-10-24 16:29:17 -0700 | [diff] [blame] | 1592 | if (scissor != bounds) { |
| 1593 | // scissor doesn't match the screen's dimensions, so we |
| 1594 | // need to clear everything outside of it and enable |
| 1595 | // the GL scissor so we don't draw anything where we shouldn't |
| 1596 | const GLint height = hw->getHeight(); |
| 1597 | glScissor(scissor.left, height - scissor.bottom, |
| 1598 | scissor.getWidth(), scissor.getHeight()); |
Mathias Agopian | f45c510 | 2012-10-24 16:29:17 -0700 | [diff] [blame] | 1599 | // enable scissor for this frame |
| 1600 | glEnable(GL_SCISSOR_TEST); |
| 1601 | } |
| 1602 | } |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1603 | } |
Mathias Agopian | 4b2ba53 | 2012-03-29 12:23:51 -0700 | [diff] [blame] | 1604 | |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1605 | /* |
| 1606 | * and then, render the layers targeted at the framebuffer |
| 1607 | */ |
Mathias Agopian | 4b2ba53 | 2012-03-29 12:23:51 -0700 | [diff] [blame] | 1608 | |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1609 | const Vector< sp<LayerBase> >& layers(hw->getVisibleLayersSortedByZ()); |
| 1610 | const size_t count = layers.size(); |
| 1611 | const Transform& tr = hw->getTransform(); |
| 1612 | if (cur != end) { |
| 1613 | // we're using h/w composer |
| 1614 | for (size_t i=0 ; i<count && cur!=end ; ++i, ++cur) { |
Mathias Agopian | a2f4e56 | 2012-04-15 23:34:59 -0700 | [diff] [blame] | 1615 | const sp<LayerBase>& layer(layers[i]); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 1616 | const Region clip(dirty.intersect(tr.transform(layer->visibleRegion))); |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1617 | if (!clip.isEmpty()) { |
| 1618 | switch (cur->getCompositionType()) { |
| 1619 | case HWC_OVERLAY: { |
| 1620 | if ((cur->getHints() & HWC_HINT_CLEAR_FB) |
| 1621 | && i |
| 1622 | && layer->isOpaque() |
| 1623 | && hasGlesComposition) { |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1624 | // never clear the very first layer since we're |
| 1625 | // guaranteed the FB is already cleared |
| 1626 | layer->clearWithOpenGL(hw, clip); |
| 1627 | } |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1628 | break; |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1629 | } |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1630 | case HWC_FRAMEBUFFER: { |
| 1631 | layer->draw(hw, clip); |
| 1632 | break; |
| 1633 | } |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 1634 | case HWC_FRAMEBUFFER_TARGET: { |
| 1635 | // this should not happen as the iterator shouldn't |
| 1636 | // let us get there. |
| 1637 | ALOGW("HWC_FRAMEBUFFER_TARGET found in hwc list (index=%d)", i); |
| 1638 | break; |
| 1639 | } |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 1640 | } |
Mathias Agopian | 85d751c | 2012-08-29 16:59:24 -0700 | [diff] [blame] | 1641 | } |
| 1642 | layer->setAcquireFence(hw, *cur); |
| 1643 | } |
| 1644 | } else { |
| 1645 | // we're not using h/w composer |
| 1646 | for (size_t i=0 ; i<count ; ++i) { |
| 1647 | const sp<LayerBase>& layer(layers[i]); |
| 1648 | const Region clip(dirty.intersect( |
| 1649 | tr.transform(layer->visibleRegion))); |
| 1650 | if (!clip.isEmpty()) { |
| 1651 | layer->draw(hw, clip); |
Jesse Hall | a6b32db | 2012-07-19 16:44:38 -0700 | [diff] [blame] | 1652 | } |
Mathias Agopian | 4b2ba53 | 2012-03-29 12:23:51 -0700 | [diff] [blame] | 1653 | } |
| 1654 | } |
Mathias Agopian | f45c510 | 2012-10-24 16:29:17 -0700 | [diff] [blame] | 1655 | |
| 1656 | // disable scissor at the end of the frame |
| 1657 | glDisable(GL_SCISSOR_TEST); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1658 | } |
| 1659 | |
Mathias Agopian | 55801e4 | 2012-08-27 18:54:24 -0700 | [diff] [blame] | 1660 | void SurfaceFlinger::drawWormhole(const sp<const DisplayDevice>& hw, |
| 1661 | const Region& region) const |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1662 | { |
Mathias Agopian | f74e8e0 | 2012-04-16 03:14:05 -0700 | [diff] [blame] | 1663 | glDisable(GL_TEXTURE_EXTERNAL_OES); |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1664 | glDisable(GL_TEXTURE_2D); |
Mathias Agopian | f74e8e0 | 2012-04-16 03:14:05 -0700 | [diff] [blame] | 1665 | glDisable(GL_BLEND); |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 1666 | glColor4f(0,0,0,0); |
Mathias Agopian | f74e8e0 | 2012-04-16 03:14:05 -0700 | [diff] [blame] | 1667 | |
Mathias Agopian | 55801e4 | 2012-08-27 18:54:24 -0700 | [diff] [blame] | 1668 | const int32_t height = hw->getHeight(); |
Mathias Agopian | f74e8e0 | 2012-04-16 03:14:05 -0700 | [diff] [blame] | 1669 | Region::const_iterator it = region.begin(); |
| 1670 | Region::const_iterator const end = region.end(); |
| 1671 | while (it != end) { |
| 1672 | const Rect& r = *it++; |
Mathias Agopian | 55801e4 | 2012-08-27 18:54:24 -0700 | [diff] [blame] | 1673 | GLfloat vertices[][2] = { |
Andy McFadden | 8f06a8c | 2013-01-11 10:24:34 -0800 | [diff] [blame] | 1674 | { (GLfloat) r.left, (GLfloat) (height - r.top) }, |
| 1675 | { (GLfloat) r.left, (GLfloat) (height - r.bottom) }, |
| 1676 | { (GLfloat) r.right, (GLfloat) (height - r.bottom) }, |
| 1677 | { (GLfloat) r.right, (GLfloat) (height - r.top) } |
Mathias Agopian | 55801e4 | 2012-08-27 18:54:24 -0700 | [diff] [blame] | 1678 | }; |
| 1679 | glVertexPointer(2, GL_FLOAT, 0, vertices); |
Mathias Agopian | f74e8e0 | 2012-04-16 03:14:05 -0700 | [diff] [blame] | 1680 | glDrawArrays(GL_TRIANGLE_FAN, 0, 4); |
| 1681 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1682 | } |
| 1683 | |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 1684 | void SurfaceFlinger::addClientLayer(const sp<Client>& client, |
| 1685 | const sp<IBinder>& handle, |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1686 | const sp<LayerBaseClient>& lbc) |
| 1687 | { |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1688 | // attach this layer to the client |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 1689 | client->attachLayer(handle, lbc); |
Mathias Agopian | 4f11374 | 2011-05-03 16:21:41 -0700 | [diff] [blame] | 1690 | |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1691 | // add this layer to the current state list |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1692 | Mutex::Autolock _l(mStateLock); |
| 1693 | mCurrentState.layersSortedByZ.add(lbc); |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1694 | } |
| 1695 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1696 | status_t SurfaceFlinger::removeLayer(const sp<LayerBase>& layer) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1697 | { |
| 1698 | Mutex::Autolock _l(mStateLock); |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1699 | status_t err = purgatorizeLayer_l(layer); |
| 1700 | if (err == NO_ERROR) |
Mathias Agopian | 3559b07 | 2012-08-15 13:46:03 -0700 | [diff] [blame] | 1701 | setTransactionFlags(eTransactionNeeded); |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1702 | return err; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1703 | } |
| 1704 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1705 | status_t SurfaceFlinger::removeLayer_l(const sp<LayerBase>& layerBase) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1706 | { |
| 1707 | ssize_t index = mCurrentState.layersSortedByZ.remove(layerBase); |
| 1708 | if (index >= 0) { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1709 | mLayersRemoved = true; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1710 | return NO_ERROR; |
| 1711 | } |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1712 | return status_t(index); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1713 | } |
| 1714 | |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 1715 | status_t SurfaceFlinger::purgatorizeLayer_l(const sp<LayerBase>& layerBase) |
| 1716 | { |
Mathias Agopian | 76cd4dd | 2011-01-14 17:37:42 -0800 | [diff] [blame] | 1717 | // First add the layer to the purgatory list, which makes sure it won't |
| 1718 | // go away, then remove it from the main list (through a transaction). |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 1719 | ssize_t err = removeLayer_l(layerBase); |
Mathias Agopian | 76cd4dd | 2011-01-14 17:37:42 -0800 | [diff] [blame] | 1720 | if (err >= 0) { |
| 1721 | mLayerPurgatory.add(layerBase); |
| 1722 | } |
Mathias Agopian | 8c0a3d7 | 2009-09-23 16:44:00 -0700 | [diff] [blame] | 1723 | |
Jesse Hall | 2f4b68d | 2011-12-02 10:00:00 -0800 | [diff] [blame] | 1724 | mLayersPendingRemoval.push(layerBase); |
Mathias Agopian | 0b3ad46 | 2009-10-02 18:12:30 -0700 | [diff] [blame] | 1725 | |
Mathias Agopian | 3d57964 | 2009-06-04 18:46:21 -0700 | [diff] [blame] | 1726 | // it's possible that we don't find a layer, because it might |
| 1727 | // have been destroyed already -- this is not technically an error |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1728 | // from the user because there is a race between Client::destroySurface(), |
| 1729 | // ~Client() and ~ISurface(). |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 1730 | return (err == NAME_NOT_FOUND) ? status_t(NO_ERROR) : err; |
| 1731 | } |
| 1732 | |
Mathias Agopian | dea20b1 | 2011-05-03 17:04:02 -0700 | [diff] [blame] | 1733 | uint32_t SurfaceFlinger::peekTransactionFlags(uint32_t flags) |
| 1734 | { |
| 1735 | return android_atomic_release_load(&mTransactionFlags); |
| 1736 | } |
| 1737 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1738 | uint32_t SurfaceFlinger::getTransactionFlags(uint32_t flags) |
| 1739 | { |
| 1740 | return android_atomic_and(~flags, &mTransactionFlags) & flags; |
| 1741 | } |
| 1742 | |
Mathias Agopian | bb64124 | 2010-05-18 17:06:55 -0700 | [diff] [blame] | 1743 | uint32_t SurfaceFlinger::setTransactionFlags(uint32_t flags) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1744 | { |
| 1745 | uint32_t old = android_atomic_or(flags, &mTransactionFlags); |
| 1746 | if ((old & flags)==0) { // wake the server up |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 1747 | signalTransaction(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1748 | } |
| 1749 | return old; |
| 1750 | } |
| 1751 | |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 1752 | void SurfaceFlinger::setTransactionState( |
| 1753 | const Vector<ComposerState>& state, |
| 1754 | const Vector<DisplayState>& displays, |
| 1755 | uint32_t flags) |
| 1756 | { |
Jamie Gennis | 7c41bf7 | 2012-10-17 09:29:47 -0700 | [diff] [blame] | 1757 | ATRACE_CALL(); |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 1758 | Mutex::Autolock _l(mStateLock); |
Jamie Gennis | 2837839 | 2011-10-12 17:39:00 -0700 | [diff] [blame] | 1759 | uint32_t transactionFlags = 0; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1760 | |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1761 | if (flags & eAnimation) { |
| 1762 | // For window updates that are part of an animation we must wait for |
| 1763 | // previous animation "frames" to be handled. |
| 1764 | while (mAnimTransactionPending) { |
Jamie Gennis | 7c41bf7 | 2012-10-17 09:29:47 -0700 | [diff] [blame] | 1765 | status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5)); |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1766 | if (CC_UNLIKELY(err != NO_ERROR)) { |
| 1767 | // just in case something goes wrong in SF, return to the |
Jamie Gennis | 7c41bf7 | 2012-10-17 09:29:47 -0700 | [diff] [blame] | 1768 | // caller after a few seconds. |
| 1769 | ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out " |
| 1770 | "waiting for previous animation frame"); |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1771 | mAnimTransactionPending = false; |
| 1772 | break; |
| 1773 | } |
| 1774 | } |
| 1775 | } |
| 1776 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1777 | size_t count = displays.size(); |
| 1778 | for (size_t i=0 ; i<count ; i++) { |
| 1779 | const DisplayState& s(displays[i]); |
| 1780 | transactionFlags |= setDisplayStateLocked(s); |
Jamie Gennis | b8d69a5 | 2011-10-10 15:48:06 -0700 | [diff] [blame] | 1781 | } |
| 1782 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1783 | count = state.size(); |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 1784 | for (size_t i=0 ; i<count ; i++) { |
| 1785 | const ComposerState& s(state[i]); |
Mathias Agopian | d17e3b5 | 2012-10-22 14:27:45 -0700 | [diff] [blame] | 1786 | // Here we need to check that the interface we're given is indeed |
| 1787 | // one of our own. A malicious client could give us a NULL |
| 1788 | // IInterface, or one of its own or even one of our own but a |
| 1789 | // different type. All these situations would cause us to crash. |
| 1790 | // |
| 1791 | // NOTE: it would be better to use RTTI as we could directly check |
| 1792 | // that we have a Client*. however, RTTI is disabled in Android. |
| 1793 | if (s.client != NULL) { |
| 1794 | sp<IBinder> binder = s.client->asBinder(); |
| 1795 | if (binder != NULL) { |
| 1796 | String16 desc(binder->getInterfaceDescriptor()); |
| 1797 | if (desc == ISurfaceComposerClient::descriptor) { |
| 1798 | sp<Client> client( static_cast<Client *>(s.client.get()) ); |
| 1799 | transactionFlags |= setClientStateLocked(client, s.state); |
| 1800 | } |
| 1801 | } |
| 1802 | } |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 1803 | } |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 1804 | |
Mathias Agopian | 386aa98 | 2011-11-07 21:58:03 -0800 | [diff] [blame] | 1805 | if (transactionFlags) { |
| 1806 | // this triggers the transaction |
| 1807 | setTransactionFlags(transactionFlags); |
| 1808 | |
| 1809 | // if this is a synchronous transaction, wait for it to take effect |
| 1810 | // before returning. |
| 1811 | if (flags & eSynchronous) { |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1812 | mTransactionPending = true; |
Mathias Agopian | 386aa98 | 2011-11-07 21:58:03 -0800 | [diff] [blame] | 1813 | } |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1814 | if (flags & eAnimation) { |
| 1815 | mAnimTransactionPending = true; |
| 1816 | } |
| 1817 | while (mTransactionPending) { |
Mathias Agopian | 386aa98 | 2011-11-07 21:58:03 -0800 | [diff] [blame] | 1818 | status_t err = mTransactionCV.waitRelative(mStateLock, s2ns(5)); |
| 1819 | if (CC_UNLIKELY(err != NO_ERROR)) { |
| 1820 | // just in case something goes wrong in SF, return to the |
| 1821 | // called after a few seconds. |
Jamie Gennis | 2d5e230 | 2012-10-15 18:24:43 -0700 | [diff] [blame] | 1822 | ALOGW_IF(err == TIMED_OUT, "setTransactionState timed out!"); |
| 1823 | mTransactionPending = false; |
Mathias Agopian | 386aa98 | 2011-11-07 21:58:03 -0800 | [diff] [blame] | 1824 | break; |
| 1825 | } |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 1826 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1827 | } |
| 1828 | } |
| 1829 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1830 | uint32_t SurfaceFlinger::setDisplayStateLocked(const DisplayState& s) |
| 1831 | { |
Jesse Hall | 9a14392 | 2012-10-04 16:29:19 -0700 | [diff] [blame] | 1832 | ssize_t dpyIdx = mCurrentState.displays.indexOfKey(s.token); |
| 1833 | if (dpyIdx < 0) |
| 1834 | return 0; |
| 1835 | |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1836 | uint32_t flags = 0; |
Jesse Hall | 9a14392 | 2012-10-04 16:29:19 -0700 | [diff] [blame] | 1837 | DisplayDeviceState& disp(mCurrentState.displays.editValueAt(dpyIdx)); |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1838 | if (disp.isValid()) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1839 | const uint32_t what = s.what; |
| 1840 | if (what & DisplayState::eSurfaceChanged) { |
| 1841 | if (disp.surface->asBinder() != s.surface->asBinder()) { |
| 1842 | disp.surface = s.surface; |
| 1843 | flags |= eDisplayTransactionNeeded; |
| 1844 | } |
| 1845 | } |
| 1846 | if (what & DisplayState::eLayerStackChanged) { |
| 1847 | if (disp.layerStack != s.layerStack) { |
| 1848 | disp.layerStack = s.layerStack; |
| 1849 | flags |= eDisplayTransactionNeeded; |
| 1850 | } |
| 1851 | } |
Mathias Agopian | 00e8c7a | 2012-09-04 19:30:46 -0700 | [diff] [blame] | 1852 | if (what & DisplayState::eDisplayProjectionChanged) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 1853 | if (disp.orientation != s.orientation) { |
| 1854 | disp.orientation = s.orientation; |
| 1855 | flags |= eDisplayTransactionNeeded; |
| 1856 | } |
| 1857 | if (disp.frame != s.frame) { |
| 1858 | disp.frame = s.frame; |
| 1859 | flags |= eDisplayTransactionNeeded; |
| 1860 | } |
| 1861 | if (disp.viewport != s.viewport) { |
| 1862 | disp.viewport = s.viewport; |
| 1863 | flags |= eDisplayTransactionNeeded; |
| 1864 | } |
| 1865 | } |
| 1866 | } |
| 1867 | return flags; |
| 1868 | } |
| 1869 | |
| 1870 | uint32_t SurfaceFlinger::setClientStateLocked( |
| 1871 | const sp<Client>& client, |
| 1872 | const layer_state_t& s) |
| 1873 | { |
| 1874 | uint32_t flags = 0; |
| 1875 | sp<LayerBaseClient> layer(client->getLayerUser(s.surface)); |
| 1876 | if (layer != 0) { |
| 1877 | const uint32_t what = s.what; |
| 1878 | if (what & layer_state_t::ePositionChanged) { |
| 1879 | if (layer->setPosition(s.x, s.y)) |
| 1880 | flags |= eTraversalNeeded; |
| 1881 | } |
| 1882 | if (what & layer_state_t::eLayerChanged) { |
| 1883 | // NOTE: index needs to be calculated before we update the state |
| 1884 | ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer); |
| 1885 | if (layer->setLayer(s.z)) { |
| 1886 | mCurrentState.layersSortedByZ.removeAt(idx); |
| 1887 | mCurrentState.layersSortedByZ.add(layer); |
| 1888 | // we need traversal (state changed) |
| 1889 | // AND transaction (list changed) |
| 1890 | flags |= eTransactionNeeded|eTraversalNeeded; |
| 1891 | } |
| 1892 | } |
| 1893 | if (what & layer_state_t::eSizeChanged) { |
| 1894 | if (layer->setSize(s.w, s.h)) { |
| 1895 | flags |= eTraversalNeeded; |
| 1896 | } |
| 1897 | } |
| 1898 | if (what & layer_state_t::eAlphaChanged) { |
| 1899 | if (layer->setAlpha(uint8_t(255.0f*s.alpha+0.5f))) |
| 1900 | flags |= eTraversalNeeded; |
| 1901 | } |
| 1902 | if (what & layer_state_t::eMatrixChanged) { |
| 1903 | if (layer->setMatrix(s.matrix)) |
| 1904 | flags |= eTraversalNeeded; |
| 1905 | } |
| 1906 | if (what & layer_state_t::eTransparentRegionChanged) { |
| 1907 | if (layer->setTransparentRegionHint(s.transparentRegion)) |
| 1908 | flags |= eTraversalNeeded; |
| 1909 | } |
| 1910 | if (what & layer_state_t::eVisibilityChanged) { |
| 1911 | if (layer->setFlags(s.flags, s.mask)) |
| 1912 | flags |= eTraversalNeeded; |
| 1913 | } |
| 1914 | if (what & layer_state_t::eCropChanged) { |
| 1915 | if (layer->setCrop(s.crop)) |
| 1916 | flags |= eTraversalNeeded; |
| 1917 | } |
| 1918 | if (what & layer_state_t::eLayerStackChanged) { |
| 1919 | // NOTE: index needs to be calculated before we update the state |
| 1920 | ssize_t idx = mCurrentState.layersSortedByZ.indexOf(layer); |
| 1921 | if (layer->setLayerStack(s.layerStack)) { |
| 1922 | mCurrentState.layersSortedByZ.removeAt(idx); |
| 1923 | mCurrentState.layersSortedByZ.add(layer); |
| 1924 | // we need traversal (state changed) |
| 1925 | // AND transaction (list changed) |
| 1926 | flags |= eTransactionNeeded|eTraversalNeeded; |
| 1927 | } |
| 1928 | } |
| 1929 | } |
| 1930 | return flags; |
| 1931 | } |
| 1932 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1933 | sp<ISurface> SurfaceFlinger::createLayer( |
Mathias Agopian | 0ef4e15 | 2011-04-20 14:19:32 -0700 | [diff] [blame] | 1934 | const String8& name, |
| 1935 | const sp<Client>& client, |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 1936 | uint32_t w, uint32_t h, PixelFormat format, |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1937 | uint32_t flags) |
| 1938 | { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1939 | sp<LayerBaseClient> layer; |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 1940 | sp<ISurface> surfaceHandle; |
Mathias Agopian | 6e2d648 | 2009-07-09 18:16:43 -0700 | [diff] [blame] | 1941 | |
| 1942 | if (int32_t(w|h) < 0) { |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1943 | ALOGE("createLayer() failed, w or h is negative (w=%d, h=%d)", |
Mathias Agopian | 6e2d648 | 2009-07-09 18:16:43 -0700 | [diff] [blame] | 1944 | int(w), int(h)); |
| 1945 | return surfaceHandle; |
| 1946 | } |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 1947 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1948 | //ALOGD("createLayer for (%d x %d), name=%s", w, h, name.string()); |
Mathias Agopian | 3165cc2 | 2012-08-08 19:42:09 -0700 | [diff] [blame] | 1949 | switch (flags & ISurfaceComposerClient::eFXSurfaceMask) { |
| 1950 | case ISurfaceComposerClient::eFXSurfaceNormal: |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1951 | layer = createNormalLayer(client, w, h, flags, format); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1952 | break; |
Mathias Agopian | 3165cc2 | 2012-08-08 19:42:09 -0700 | [diff] [blame] | 1953 | case ISurfaceComposerClient::eFXSurfaceDim: |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1954 | layer = createDimLayer(client, w, h, flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1955 | break; |
| 1956 | } |
| 1957 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 1958 | if (layer != 0) { |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1959 | layer->initStates(w, h, flags); |
Mathias Agopian | 285dbde | 2010-03-01 16:09:43 -0800 | [diff] [blame] | 1960 | layer->setName(name); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1961 | surfaceHandle = layer->getSurface(); |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 1962 | if (surfaceHandle != 0) { |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 1963 | addClientLayer(client, surfaceHandle->asBinder(), layer); |
Mathias Agopian | 1c97d2e | 2009-08-19 17:46:26 -0700 | [diff] [blame] | 1964 | } |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1965 | setTransactionFlags(eTransactionNeeded); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1966 | } |
| 1967 | |
| 1968 | return surfaceHandle; |
| 1969 | } |
| 1970 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1971 | sp<Layer> SurfaceFlinger::createNormalLayer( |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1972 | const sp<Client>& client, |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 1973 | uint32_t w, uint32_t h, uint32_t flags, |
Mathias Agopian | 1c97d2e | 2009-08-19 17:46:26 -0700 | [diff] [blame] | 1974 | PixelFormat& format) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1975 | { |
| 1976 | // initialize the surfaces |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 1977 | switch (format) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1978 | case PIXEL_FORMAT_TRANSPARENT: |
| 1979 | case PIXEL_FORMAT_TRANSLUCENT: |
| 1980 | format = PIXEL_FORMAT_RGBA_8888; |
| 1981 | break; |
| 1982 | case PIXEL_FORMAT_OPAQUE: |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 1983 | #ifdef NO_RGBX_8888 |
| 1984 | format = PIXEL_FORMAT_RGB_565; |
| 1985 | #else |
Mathias Agopian | 8f10540 | 2010-04-05 18:01:24 -0700 | [diff] [blame] | 1986 | format = PIXEL_FORMAT_RGBX_8888; |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 1987 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1988 | break; |
| 1989 | } |
| 1990 | |
Mathias Agopian | a8f3e4e | 2010-06-30 15:43:47 -0700 | [diff] [blame] | 1991 | #ifdef NO_RGBX_8888 |
| 1992 | if (format == PIXEL_FORMAT_RGBX_8888) |
| 1993 | format = PIXEL_FORMAT_RGBA_8888; |
| 1994 | #endif |
| 1995 | |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 1996 | sp<Layer> layer = new Layer(this, client); |
Mathias Agopian | f9d9327 | 2009-06-19 17:00:27 -0700 | [diff] [blame] | 1997 | status_t err = layer->setBuffers(w, h, format, flags); |
Glenn Kasten | 99ed224 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 1998 | if (CC_LIKELY(err != NO_ERROR)) { |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 1999 | ALOGE("createNormalLayer() failed (%s)", strerror(-err)); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 2000 | layer.clear(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2001 | } |
| 2002 | return layer; |
| 2003 | } |
| 2004 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2005 | sp<LayerDim> SurfaceFlinger::createDimLayer( |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 2006 | const sp<Client>& client, |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 2007 | uint32_t w, uint32_t h, uint32_t flags) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2008 | { |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 2009 | sp<LayerDim> layer = new LayerDim(this, client); |
Mathias Agopian | 118d024 | 2011-10-13 16:02:48 -0700 | [diff] [blame] | 2010 | return layer; |
| 2011 | } |
| 2012 | |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 2013 | status_t SurfaceFlinger::onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle) |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2014 | { |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 2015 | /* |
| 2016 | * called by the window manager, when a surface should be marked for |
| 2017 | * destruction. |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 2018 | * |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 2019 | * The surface is removed from the current and drawing lists, but placed |
| 2020 | * in the purgatory queue, so it's not destroyed right-away (we need |
| 2021 | * to wait for all client's references to go away first). |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 2022 | */ |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 2023 | |
Mathias Agopian | 48d819a | 2009-09-10 19:41:18 -0700 | [diff] [blame] | 2024 | status_t err = NAME_NOT_FOUND; |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 2025 | Mutex::Autolock _l(mStateLock); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 2026 | sp<LayerBaseClient> layer = client->getLayerUser(handle); |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 2027 | |
Mathias Agopian | 48d819a | 2009-09-10 19:41:18 -0700 | [diff] [blame] | 2028 | if (layer != 0) { |
| 2029 | err = purgatorizeLayer_l(layer); |
| 2030 | if (err == NO_ERROR) { |
Mathias Agopian | 13233e0 | 2012-08-15 16:14:33 -0700 | [diff] [blame] | 2031 | setTransactionFlags(eTransactionNeeded); |
Mathias Agopian | 48d819a | 2009-09-10 19:41:18 -0700 | [diff] [blame] | 2032 | } |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 2033 | } |
| 2034 | return err; |
| 2035 | } |
| 2036 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2037 | status_t SurfaceFlinger::onLayerDestroyed(const wp<LayerBaseClient>& layer) |
Mathias Agopian | 9a11206 | 2009-04-17 19:36:26 -0700 | [diff] [blame] | 2038 | { |
Mathias Agopian | 759fdb2 | 2009-07-02 17:33:40 -0700 | [diff] [blame] | 2039 | // called by ~ISurface() when all references are gone |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 2040 | status_t err = NO_ERROR; |
| 2041 | sp<LayerBaseClient> l(layer.promote()); |
| 2042 | if (l != NULL) { |
| 2043 | Mutex::Autolock _l(mStateLock); |
| 2044 | err = removeLayer_l(l); |
| 2045 | if (err == NAME_NOT_FOUND) { |
| 2046 | // The surface wasn't in the current list, which means it was |
| 2047 | // removed already, which means it is in the purgatory, |
| 2048 | // and need to be removed from there. |
| 2049 | ssize_t idx = mLayerPurgatory.remove(l); |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 2050 | ALOGE_IF(idx < 0, |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 2051 | "layer=%p is not in the purgatory list", l.get()); |
Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 2052 | } |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 2053 | ALOGE_IF(err<0 && err != NAME_NOT_FOUND, |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 2054 | "error removing layer=%p (%s)", l.get(), strerror(-err)); |
| 2055 | } |
| 2056 | return err; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2057 | } |
| 2058 | |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2059 | // --------------------------------------------------------------------------- |
| 2060 | |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 2061 | void SurfaceFlinger::onInitializeDisplays() { |
Jesse Hall | 01e2905 | 2013-02-19 16:13:35 -0800 | [diff] [blame] | 2062 | // reset screen orientation and use primary layer stack |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 2063 | Vector<ComposerState> state; |
| 2064 | Vector<DisplayState> displays; |
| 2065 | DisplayState d; |
Jesse Hall | 01e2905 | 2013-02-19 16:13:35 -0800 | [diff] [blame] | 2066 | d.what = DisplayState::eDisplayProjectionChanged | |
| 2067 | DisplayState::eLayerStackChanged; |
Jesse Hall | 692c723 | 2012-11-08 15:41:56 -0800 | [diff] [blame] | 2068 | d.token = mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]; |
Jesse Hall | 01e2905 | 2013-02-19 16:13:35 -0800 | [diff] [blame] | 2069 | d.layerStack = 0; |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 2070 | d.orientation = DisplayState::eOrientationDefault; |
Jeff Brown | 4c05dd1 | 2012-09-09 00:07:17 -0700 | [diff] [blame] | 2071 | d.frame.makeInvalid(); |
| 2072 | d.viewport.makeInvalid(); |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 2073 | displays.add(d); |
| 2074 | setTransactionState(state, displays, 0); |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 2075 | onScreenAcquired(getDefaultDisplayDevice()); |
Andy McFadden | 13a082e | 2012-08-24 10:16:42 -0700 | [diff] [blame] | 2076 | } |
| 2077 | |
| 2078 | void SurfaceFlinger::initializeDisplays() { |
| 2079 | class MessageScreenInitialized : public MessageBase { |
| 2080 | SurfaceFlinger* flinger; |
| 2081 | public: |
| 2082 | MessageScreenInitialized(SurfaceFlinger* flinger) : flinger(flinger) { } |
| 2083 | virtual bool handler() { |
| 2084 | flinger->onInitializeDisplays(); |
| 2085 | return true; |
| 2086 | } |
| 2087 | }; |
| 2088 | sp<MessageBase> msg = new MessageScreenInitialized(this); |
| 2089 | postMessageAsync(msg); // we may be called from main thread, use async message |
| 2090 | } |
| 2091 | |
| 2092 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 2093 | void SurfaceFlinger::onScreenAcquired(const sp<const DisplayDevice>& hw) { |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2094 | ALOGD("Screen acquired, type=%d flinger=%p", hw->getDisplayType(), this); |
| 2095 | if (hw->isScreenAcquired()) { |
| 2096 | // this is expected, e.g. when power manager wakes up during boot |
| 2097 | ALOGD(" screen was previously acquired"); |
| 2098 | return; |
| 2099 | } |
| 2100 | |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2101 | hw->acquireScreen(); |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2102 | int32_t type = hw->getDisplayType(); |
| 2103 | if (type < DisplayDevice::NUM_DISPLAY_TYPES) { |
| 2104 | // built-in display, tell the HWC |
| 2105 | getHwComposer().acquire(type); |
| 2106 | |
| 2107 | if (type == DisplayDevice::DISPLAY_PRIMARY) { |
| 2108 | // FIXME: eventthread only knows about the main display right now |
| 2109 | mEventThread->onScreenAcquired(); |
| 2110 | } |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 2111 | } |
Mathias Agopian | 2012830 | 2012-08-13 18:32:13 -0700 | [diff] [blame] | 2112 | mVisibleRegionsDirty = true; |
| 2113 | repaintEverything(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2114 | } |
| 2115 | |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 2116 | void SurfaceFlinger::onScreenReleased(const sp<const DisplayDevice>& hw) { |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2117 | ALOGD("Screen released, type=%d flinger=%p", hw->getDisplayType(), this); |
| 2118 | if (!hw->isScreenAcquired()) { |
| 2119 | ALOGD(" screen was previously released"); |
| 2120 | return; |
| 2121 | } |
| 2122 | |
| 2123 | hw->releaseScreen(); |
| 2124 | int32_t type = hw->getDisplayType(); |
| 2125 | if (type < DisplayDevice::NUM_DISPLAY_TYPES) { |
| 2126 | if (type == DisplayDevice::DISPLAY_PRIMARY) { |
Mathias Agopian | cde87a3 | 2012-09-13 14:09:01 -0700 | [diff] [blame] | 2127 | // FIXME: eventthread only knows about the main display right now |
| 2128 | mEventThread->onScreenReleased(); |
| 2129 | } |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2130 | |
| 2131 | // built-in display, tell the HWC |
| 2132 | getHwComposer().release(type); |
| 2133 | } |
| 2134 | mVisibleRegionsDirty = true; |
| 2135 | // from this point on, SF will stop drawing on this display |
| 2136 | } |
| 2137 | |
| 2138 | void SurfaceFlinger::unblank(const sp<IBinder>& display) { |
| 2139 | class MessageScreenAcquired : public MessageBase { |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2140 | SurfaceFlinger& mFlinger; |
| 2141 | sp<IBinder> mDisplay; |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2142 | public: |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2143 | MessageScreenAcquired(SurfaceFlinger& flinger, |
| 2144 | const sp<IBinder>& disp) : mFlinger(flinger), mDisplay(disp) { } |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2145 | virtual bool handler() { |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2146 | const sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay)); |
| 2147 | if (hw == NULL) { |
| 2148 | ALOGE("Attempt to unblank null display %p", mDisplay.get()); |
| 2149 | } else if (hw->getDisplayType() >= DisplayDevice::NUM_DISPLAY_TYPES) { |
| 2150 | ALOGW("Attempt to unblank virtual display"); |
| 2151 | } else { |
| 2152 | mFlinger.onScreenAcquired(hw); |
| 2153 | } |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2154 | return true; |
| 2155 | } |
| 2156 | }; |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2157 | sp<MessageBase> msg = new MessageScreenAcquired(*this, display); |
| 2158 | postMessageSync(msg); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2159 | } |
| 2160 | |
Andy McFadden | c01a79d | 2012-09-27 16:02:06 -0700 | [diff] [blame] | 2161 | void SurfaceFlinger::blank(const sp<IBinder>& display) { |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2162 | class MessageScreenReleased : public MessageBase { |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2163 | SurfaceFlinger& mFlinger; |
| 2164 | sp<IBinder> mDisplay; |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2165 | public: |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2166 | MessageScreenReleased(SurfaceFlinger& flinger, |
| 2167 | const sp<IBinder>& disp) : mFlinger(flinger), mDisplay(disp) { } |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2168 | virtual bool handler() { |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2169 | const sp<DisplayDevice> hw(mFlinger.getDisplayDevice(mDisplay)); |
| 2170 | if (hw == NULL) { |
| 2171 | ALOGE("Attempt to blank null display %p", mDisplay.get()); |
| 2172 | } else if (hw->getDisplayType() >= DisplayDevice::NUM_DISPLAY_TYPES) { |
| 2173 | ALOGW("Attempt to blank virtual display"); |
| 2174 | } else { |
| 2175 | mFlinger.onScreenReleased(hw); |
| 2176 | } |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2177 | return true; |
| 2178 | } |
| 2179 | }; |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2180 | sp<MessageBase> msg = new MessageScreenReleased(*this, display); |
| 2181 | postMessageSync(msg); |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 2182 | } |
| 2183 | |
| 2184 | // --------------------------------------------------------------------------- |
| 2185 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2186 | status_t SurfaceFlinger::dump(int fd, const Vector<String16>& args) |
| 2187 | { |
Erik Gilling | 1d21a9c | 2010-12-01 16:38:01 -0800 | [diff] [blame] | 2188 | const size_t SIZE = 4096; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2189 | char buffer[SIZE]; |
| 2190 | String8 result; |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 2191 | |
| 2192 | if (!PermissionCache::checkCallingPermission(sDump)) { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2193 | snprintf(buffer, SIZE, "Permission Denial: " |
| 2194 | "can't dump SurfaceFlinger from pid=%d, uid=%d\n", |
| 2195 | IPCThreadState::self()->getCallingPid(), |
| 2196 | IPCThreadState::self()->getCallingUid()); |
| 2197 | result.append(buffer); |
| 2198 | } else { |
Mathias Agopian | 9795c42 | 2009-08-26 16:36:26 -0700 | [diff] [blame] | 2199 | // Try to get the main lock, but don't insist if we can't |
| 2200 | // (this would indicate SF is stuck, but we want to be able to |
| 2201 | // print something in dumpsys). |
| 2202 | int retry = 3; |
| 2203 | while (mStateLock.tryLock()<0 && --retry>=0) { |
| 2204 | usleep(1000000); |
| 2205 | } |
| 2206 | const bool locked(retry >= 0); |
| 2207 | if (!locked) { |
Andreas Huber | 8b42e8a | 2010-08-16 08:49:37 -0700 | [diff] [blame] | 2208 | snprintf(buffer, SIZE, |
Mathias Agopian | 9795c42 | 2009-08-26 16:36:26 -0700 | [diff] [blame] | 2209 | "SurfaceFlinger appears to be unresponsive, " |
| 2210 | "dumping anyways (no locks held)\n"); |
| 2211 | result.append(buffer); |
| 2212 | } |
| 2213 | |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2214 | bool dumpAll = true; |
| 2215 | size_t index = 0; |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2216 | size_t numArgs = args.size(); |
| 2217 | if (numArgs) { |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2218 | if ((index < numArgs) && |
| 2219 | (args[index] == String16("--list"))) { |
| 2220 | index++; |
| 2221 | listLayersLocked(args, index, result, buffer, SIZE); |
Mathias Agopian | 35aadd6 | 2012-03-08 22:01:51 -0800 | [diff] [blame] | 2222 | dumpAll = false; |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | if ((index < numArgs) && |
| 2226 | (args[index] == String16("--latency"))) { |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2227 | index++; |
| 2228 | dumpStatsLocked(args, index, result, buffer, SIZE); |
Mathias Agopian | 35aadd6 | 2012-03-08 22:01:51 -0800 | [diff] [blame] | 2229 | dumpAll = false; |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2230 | } |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2231 | |
| 2232 | if ((index < numArgs) && |
| 2233 | (args[index] == String16("--latency-clear"))) { |
| 2234 | index++; |
| 2235 | clearStatsLocked(args, index, result, buffer, SIZE); |
Mathias Agopian | 35aadd6 | 2012-03-08 22:01:51 -0800 | [diff] [blame] | 2236 | dumpAll = false; |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2237 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2238 | } |
Mathias Agopian | 1b5e102 | 2010-04-20 17:55:49 -0700 | [diff] [blame] | 2239 | |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2240 | if (dumpAll) { |
| 2241 | dumpAllLocked(result, buffer, SIZE); |
Mathias Agopian | 48b888a | 2011-01-19 16:15:53 -0800 | [diff] [blame] | 2242 | } |
| 2243 | |
Mathias Agopian | 9795c42 | 2009-08-26 16:36:26 -0700 | [diff] [blame] | 2244 | if (locked) { |
| 2245 | mStateLock.unlock(); |
| 2246 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2247 | } |
| 2248 | write(fd, result.string(), result.size()); |
| 2249 | return NO_ERROR; |
| 2250 | } |
| 2251 | |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2252 | void SurfaceFlinger::listLayersLocked(const Vector<String16>& args, size_t& index, |
| 2253 | String8& result, char* buffer, size_t SIZE) const |
| 2254 | { |
| 2255 | const LayerVector& currentLayers = mCurrentState.layersSortedByZ; |
| 2256 | const size_t count = currentLayers.size(); |
| 2257 | for (size_t i=0 ; i<count ; i++) { |
| 2258 | const sp<LayerBase>& layer(currentLayers[i]); |
| 2259 | snprintf(buffer, SIZE, "%s\n", layer->getName().string()); |
| 2260 | result.append(buffer); |
| 2261 | } |
| 2262 | } |
| 2263 | |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2264 | void SurfaceFlinger::dumpStatsLocked(const Vector<String16>& args, size_t& index, |
| 2265 | String8& result, char* buffer, size_t SIZE) const |
| 2266 | { |
| 2267 | String8 name; |
| 2268 | if (index < args.size()) { |
| 2269 | name = String8(args[index]); |
| 2270 | index++; |
| 2271 | } |
| 2272 | |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 2273 | const nsecs_t period = |
| 2274 | getHwComposer().getRefreshPeriod(HWC_DISPLAY_PRIMARY); |
| 2275 | result.appendFormat("%lld\n", period); |
| 2276 | |
| 2277 | if (name.isEmpty()) { |
| 2278 | mAnimFrameTracker.dump(result); |
| 2279 | } else { |
| 2280 | const LayerVector& currentLayers = mCurrentState.layersSortedByZ; |
| 2281 | const size_t count = currentLayers.size(); |
| 2282 | for (size_t i=0 ; i<count ; i++) { |
| 2283 | const sp<LayerBase>& layer(currentLayers[i]); |
| 2284 | if (name == layer->getName()) { |
| 2285 | layer->dumpStats(result, buffer, SIZE); |
| 2286 | } |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2287 | } |
| 2288 | } |
| 2289 | } |
| 2290 | |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2291 | void SurfaceFlinger::clearStatsLocked(const Vector<String16>& args, size_t& index, |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 2292 | String8& result, char* buffer, size_t SIZE) |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2293 | { |
| 2294 | String8 name; |
| 2295 | if (index < args.size()) { |
| 2296 | name = String8(args[index]); |
| 2297 | index++; |
| 2298 | } |
| 2299 | |
| 2300 | const LayerVector& currentLayers = mCurrentState.layersSortedByZ; |
| 2301 | const size_t count = currentLayers.size(); |
| 2302 | for (size_t i=0 ; i<count ; i++) { |
| 2303 | const sp<LayerBase>& layer(currentLayers[i]); |
| 2304 | if (name.isEmpty() || (name == layer->getName())) { |
| 2305 | layer->clearStats(); |
| 2306 | } |
| 2307 | } |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 2308 | |
| 2309 | mAnimFrameTracker.clear(); |
Mathias Agopian | 25e66fc | 2012-01-28 22:31:55 -0800 | [diff] [blame] | 2310 | } |
| 2311 | |
Andy McFadden | 4803b74 | 2012-09-24 19:07:20 -0700 | [diff] [blame] | 2312 | /*static*/ void SurfaceFlinger::appendSfConfigString(String8& result) |
| 2313 | { |
| 2314 | static const char* config = |
| 2315 | " [sf" |
| 2316 | #ifdef NO_RGBX_8888 |
| 2317 | " NO_RGBX_8888" |
| 2318 | #endif |
| 2319 | #ifdef HAS_CONTEXT_PRIORITY |
| 2320 | " HAS_CONTEXT_PRIORITY" |
| 2321 | #endif |
| 2322 | #ifdef NEVER_DEFAULT_TO_ASYNC_MODE |
| 2323 | " NEVER_DEFAULT_TO_ASYNC_MODE" |
| 2324 | #endif |
| 2325 | #ifdef TARGET_DISABLE_TRIPLE_BUFFERING |
| 2326 | " TARGET_DISABLE_TRIPLE_BUFFERING" |
| 2327 | #endif |
| 2328 | "]"; |
| 2329 | result.append(config); |
| 2330 | } |
| 2331 | |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2332 | void SurfaceFlinger::dumpAllLocked( |
| 2333 | String8& result, char* buffer, size_t SIZE) const |
| 2334 | { |
| 2335 | // figure out if we're stuck somewhere |
| 2336 | const nsecs_t now = systemTime(); |
| 2337 | const nsecs_t inSwapBuffers(mDebugInSwapBuffers); |
| 2338 | const nsecs_t inTransaction(mDebugInTransaction); |
| 2339 | nsecs_t inSwapBuffersDuration = (inSwapBuffers) ? now-inSwapBuffers : 0; |
| 2340 | nsecs_t inTransactionDuration = (inTransaction) ? now-inTransaction : 0; |
| 2341 | |
| 2342 | /* |
Andy McFadden | 4803b74 | 2012-09-24 19:07:20 -0700 | [diff] [blame] | 2343 | * Dump library configuration. |
| 2344 | */ |
| 2345 | result.append("Build configuration:"); |
| 2346 | appendSfConfigString(result); |
| 2347 | appendUiConfigString(result); |
| 2348 | appendGuiConfigString(result); |
| 2349 | result.append("\n"); |
| 2350 | |
| 2351 | /* |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2352 | * Dump the visible layer list |
| 2353 | */ |
| 2354 | const LayerVector& currentLayers = mCurrentState.layersSortedByZ; |
| 2355 | const size_t count = currentLayers.size(); |
| 2356 | snprintf(buffer, SIZE, "Visible layers (count = %d)\n", count); |
| 2357 | result.append(buffer); |
| 2358 | for (size_t i=0 ; i<count ; i++) { |
| 2359 | const sp<LayerBase>& layer(currentLayers[i]); |
| 2360 | layer->dump(result, buffer, SIZE); |
| 2361 | } |
| 2362 | |
| 2363 | /* |
| 2364 | * Dump the layers in the purgatory |
| 2365 | */ |
| 2366 | |
| 2367 | const size_t purgatorySize = mLayerPurgatory.size(); |
| 2368 | snprintf(buffer, SIZE, "Purgatory state (%d entries)\n", purgatorySize); |
| 2369 | result.append(buffer); |
| 2370 | for (size_t i=0 ; i<purgatorySize ; i++) { |
| 2371 | const sp<LayerBase>& layer(mLayerPurgatory.itemAt(i)); |
| 2372 | layer->shortDump(result, buffer, SIZE); |
| 2373 | } |
| 2374 | |
| 2375 | /* |
Mathias Agopian | 5f20e2d | 2012-08-10 18:50:38 -0700 | [diff] [blame] | 2376 | * Dump Display state |
| 2377 | */ |
| 2378 | |
Andy McFadden | 8dfa92f | 2012-09-17 18:27:17 -0700 | [diff] [blame] | 2379 | snprintf(buffer, SIZE, "Displays (%d entries)\n", mDisplays.size()); |
| 2380 | result.append(buffer); |
Mathias Agopian | 5f20e2d | 2012-08-10 18:50:38 -0700 | [diff] [blame] | 2381 | for (size_t dpy=0 ; dpy<mDisplays.size() ; dpy++) { |
| 2382 | const sp<const DisplayDevice>& hw(mDisplays[dpy]); |
Mathias Agopian | 1d12d8a | 2012-09-18 01:38:00 -0700 | [diff] [blame] | 2383 | hw->dump(result, buffer, SIZE); |
Mathias Agopian | 5f20e2d | 2012-08-10 18:50:38 -0700 | [diff] [blame] | 2384 | } |
| 2385 | |
| 2386 | /* |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2387 | * Dump SurfaceFlinger global state |
| 2388 | */ |
| 2389 | |
| 2390 | snprintf(buffer, SIZE, "SurfaceFlinger global state:\n"); |
| 2391 | result.append(buffer); |
| 2392 | |
Mathias Agopian | 888c822 | 2012-08-04 21:10:38 -0700 | [diff] [blame] | 2393 | HWComposer& hwc(getHwComposer()); |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2394 | sp<const DisplayDevice> hw(getDefaultDisplayDevice()); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2395 | const GLExtensions& extensions(GLExtensions::getInstance()); |
| 2396 | snprintf(buffer, SIZE, "GLES: %s, %s, %s\n", |
| 2397 | extensions.getVendor(), |
| 2398 | extensions.getRenderer(), |
| 2399 | extensions.getVersion()); |
| 2400 | result.append(buffer); |
| 2401 | |
| 2402 | snprintf(buffer, SIZE, "EGL : %s\n", |
Mathias Agopian | d3ee231 | 2012-08-02 14:01:42 -0700 | [diff] [blame] | 2403 | eglQueryString(mEGLDisplay, EGL_VERSION_HW_ANDROID)); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2404 | result.append(buffer); |
| 2405 | |
| 2406 | snprintf(buffer, SIZE, "EXTS: %s\n", extensions.getExtension()); |
| 2407 | result.append(buffer); |
| 2408 | |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2409 | hw->undefinedRegion.dump(result, "undefinedRegion"); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2410 | snprintf(buffer, SIZE, |
| 2411 | " orientation=%d, canDraw=%d\n", |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2412 | hw->getOrientation(), hw->canDraw()); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2413 | result.append(buffer); |
| 2414 | snprintf(buffer, SIZE, |
| 2415 | " last eglSwapBuffers() time: %f us\n" |
| 2416 | " last transaction time : %f us\n" |
Mathias Agopian | c95dbdc | 2012-02-05 00:19:27 -0800 | [diff] [blame] | 2417 | " transaction-flags : %08x\n" |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2418 | " refresh-rate : %f fps\n" |
| 2419 | " x-dpi : %f\n" |
Mathias Agopian | 8b736f1 | 2012-08-13 17:54:26 -0700 | [diff] [blame] | 2420 | " y-dpi : %f\n", |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2421 | mLastSwapBufferTime/1000.0, |
| 2422 | mLastTransactionTime/1000.0, |
Mathias Agopian | c95dbdc | 2012-02-05 00:19:27 -0800 | [diff] [blame] | 2423 | mTransactionFlags, |
Andy McFadden | b0d1dd3 | 2012-09-10 14:08:09 -0700 | [diff] [blame] | 2424 | 1e9 / hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY), |
| 2425 | hwc.getDpiX(HWC_DISPLAY_PRIMARY), |
| 2426 | hwc.getDpiY(HWC_DISPLAY_PRIMARY)); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2427 | result.append(buffer); |
| 2428 | |
| 2429 | snprintf(buffer, SIZE, " eglSwapBuffers time: %f us\n", |
| 2430 | inSwapBuffersDuration/1000.0); |
| 2431 | result.append(buffer); |
| 2432 | |
| 2433 | snprintf(buffer, SIZE, " transaction time: %f us\n", |
| 2434 | inTransactionDuration/1000.0); |
| 2435 | result.append(buffer); |
| 2436 | |
| 2437 | /* |
| 2438 | * VSYNC state |
| 2439 | */ |
| 2440 | mEventThread->dump(result, buffer, SIZE); |
| 2441 | |
| 2442 | /* |
| 2443 | * Dump HWComposer state |
| 2444 | */ |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2445 | snprintf(buffer, SIZE, "h/w composer state:\n"); |
| 2446 | result.append(buffer); |
| 2447 | snprintf(buffer, SIZE, " h/w composer %s and %s\n", |
| 2448 | hwc.initCheck()==NO_ERROR ? "present" : "not present", |
| 2449 | (mDebugDisableHWC || mDebugRegion) ? "disabled" : "enabled"); |
| 2450 | result.append(buffer); |
Mathias Agopian | cb55857 | 2012-10-04 15:58:54 -0700 | [diff] [blame] | 2451 | hwc.dump(result, buffer, SIZE); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2452 | |
| 2453 | /* |
| 2454 | * Dump gralloc state |
| 2455 | */ |
| 2456 | const GraphicBufferAllocator& alloc(GraphicBufferAllocator::get()); |
| 2457 | alloc.dump(result); |
Mathias Agopian | 82d7ab6 | 2012-01-19 18:34:40 -0800 | [diff] [blame] | 2458 | } |
| 2459 | |
Mathias Agopian | cb55857 | 2012-10-04 15:58:54 -0700 | [diff] [blame] | 2460 | const Vector< sp<LayerBase> >& |
| 2461 | SurfaceFlinger::getLayerSortedByZForHwcDisplay(int disp) { |
Mathias Agopian | db9b41f | 2012-10-15 16:51:41 -0700 | [diff] [blame] | 2462 | // Note: mStateLock is held here |
Mathias Agopian | cb55857 | 2012-10-04 15:58:54 -0700 | [diff] [blame] | 2463 | return getDisplayDevice( getBuiltInDisplay(disp) )->getVisibleLayersSortedByZ(); |
| 2464 | } |
| 2465 | |
Keun young Park | 63f165f | 2012-08-31 10:53:36 -0700 | [diff] [blame] | 2466 | bool SurfaceFlinger::startDdmConnection() |
| 2467 | { |
| 2468 | void* libddmconnection_dso = |
| 2469 | dlopen("libsurfaceflinger_ddmconnection.so", RTLD_NOW); |
| 2470 | if (!libddmconnection_dso) { |
| 2471 | return false; |
| 2472 | } |
| 2473 | void (*DdmConnection_start)(const char* name); |
| 2474 | DdmConnection_start = |
| 2475 | (typeof DdmConnection_start)dlsym(libddmconnection_dso, "DdmConnection_start"); |
| 2476 | if (!DdmConnection_start) { |
| 2477 | dlclose(libddmconnection_dso); |
| 2478 | return false; |
| 2479 | } |
| 2480 | (*DdmConnection_start)(getServiceName()); |
| 2481 | return true; |
| 2482 | } |
| 2483 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2484 | status_t SurfaceFlinger::onTransact( |
| 2485 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) |
| 2486 | { |
| 2487 | switch (code) { |
| 2488 | case CREATE_CONNECTION: |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 2489 | case SET_TRANSACTION_STATE: |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2490 | case BOOT_FINISHED: |
Colin Cross | 8e53306 | 2012-06-07 13:17:52 -0700 | [diff] [blame] | 2491 | case BLANK: |
| 2492 | case UNBLANK: |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2493 | { |
| 2494 | // codes that require permission check |
| 2495 | IPCThreadState* ipc = IPCThreadState::self(); |
| 2496 | const int pid = ipc->getCallingPid(); |
Mathias Agopian | a1ecca9 | 2009-05-21 19:21:59 -0700 | [diff] [blame] | 2497 | const int uid = ipc->getCallingUid(); |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 2498 | if ((uid != AID_GRAPHICS) && |
| 2499 | !PermissionCache::checkPermission(sAccessSurfaceFlinger, pid, uid)) { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 2500 | ALOGE("Permission Denial: " |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 2501 | "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid); |
| 2502 | return PERMISSION_DENIED; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2503 | } |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2504 | break; |
| 2505 | } |
| 2506 | case CAPTURE_SCREEN: |
| 2507 | { |
| 2508 | // codes that require permission check |
| 2509 | IPCThreadState* ipc = IPCThreadState::self(); |
| 2510 | const int pid = ipc->getCallingPid(); |
| 2511 | const int uid = ipc->getCallingUid(); |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 2512 | if ((uid != AID_GRAPHICS) && |
| 2513 | !PermissionCache::checkPermission(sReadFramebuffer, pid, uid)) { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 2514 | ALOGE("Permission Denial: " |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2515 | "can't read framebuffer pid=%d, uid=%d", pid, uid); |
| 2516 | return PERMISSION_DENIED; |
| 2517 | } |
| 2518 | break; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2519 | } |
| 2520 | } |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2521 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2522 | status_t err = BnSurfaceComposer::onTransact(code, data, reply, flags); |
| 2523 | if (err == UNKNOWN_TRANSACTION || err == PERMISSION_DENIED) { |
Mathias Agopian | b8a5560 | 2009-06-26 19:06:36 -0700 | [diff] [blame] | 2524 | CHECK_INTERFACE(ISurfaceComposer, data, reply); |
Glenn Kasten | 99ed224 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 2525 | if (CC_UNLIKELY(!PermissionCache::checkCallingPermission(sHardwareTest))) { |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 2526 | IPCThreadState* ipc = IPCThreadState::self(); |
| 2527 | const int pid = ipc->getCallingPid(); |
| 2528 | const int uid = ipc->getCallingUid(); |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 2529 | ALOGE("Permission Denial: " |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 2530 | "can't access SurfaceFlinger pid=%d, uid=%d", pid, uid); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2531 | return PERMISSION_DENIED; |
| 2532 | } |
| 2533 | int n; |
| 2534 | switch (code) { |
Mathias Agopian | 01b7668 | 2009-04-16 20:04:08 -0700 | [diff] [blame] | 2535 | case 1000: // SHOW_CPU, NOT SUPPORTED ANYMORE |
Mathias Agopian | 35b48d1 | 2010-09-13 22:57:58 -0700 | [diff] [blame] | 2536 | case 1001: // SHOW_FPS, NOT SUPPORTED ANYMORE |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2537 | return NO_ERROR; |
| 2538 | case 1002: // SHOW_UPDATES |
| 2539 | n = data.readInt32(); |
| 2540 | mDebugRegion = n ? n : (mDebugRegion ? 0 : 1); |
Mathias Agopian | 53331da | 2011-08-22 21:44:41 -0700 | [diff] [blame] | 2541 | invalidateHwcGeometry(); |
| 2542 | repaintEverything(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2543 | return NO_ERROR; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2544 | case 1004:{ // repaint everything |
Mathias Agopian | 53331da | 2011-08-22 21:44:41 -0700 | [diff] [blame] | 2545 | repaintEverything(); |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 2546 | return NO_ERROR; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2547 | } |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 2548 | case 1005:{ // force transaction |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 2549 | setTransactionFlags( |
| 2550 | eTransactionNeeded| |
| 2551 | eDisplayTransactionNeeded| |
| 2552 | eTraversalNeeded); |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 2553 | return NO_ERROR; |
| 2554 | } |
Mathias Agopian | 4d143ee | 2012-02-23 20:05:39 -0800 | [diff] [blame] | 2555 | case 1006:{ // send empty update |
| 2556 | signalRefresh(); |
| 2557 | return NO_ERROR; |
| 2558 | } |
Mathias Agopian | 53331da | 2011-08-22 21:44:41 -0700 | [diff] [blame] | 2559 | case 1008: // toggle use of hw composer |
| 2560 | n = data.readInt32(); |
| 2561 | mDebugDisableHWC = n ? 1 : 0; |
| 2562 | invalidateHwcGeometry(); |
| 2563 | repaintEverything(); |
| 2564 | return NO_ERROR; |
Mathias Agopian | a458364 | 2011-08-23 18:03:18 -0700 | [diff] [blame] | 2565 | case 1009: // toggle use of transform hint |
| 2566 | n = data.readInt32(); |
| 2567 | mDebugDisableTransformHint = n ? 1 : 0; |
| 2568 | invalidateHwcGeometry(); |
| 2569 | repaintEverything(); |
| 2570 | return NO_ERROR; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2571 | case 1010: // interrogate. |
Mathias Agopian | 01b7668 | 2009-04-16 20:04:08 -0700 | [diff] [blame] | 2572 | reply->writeInt32(0); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2573 | reply->writeInt32(0); |
| 2574 | reply->writeInt32(mDebugRegion); |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 2575 | reply->writeInt32(0); |
Dianne Hackborn | 12839be | 2012-02-06 21:21:05 -0800 | [diff] [blame] | 2576 | reply->writeInt32(mDebugDisableHWC); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2577 | return NO_ERROR; |
| 2578 | case 1013: { |
| 2579 | Mutex::Autolock _l(mStateLock); |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2580 | sp<const DisplayDevice> hw(getDefaultDisplayDevice()); |
| 2581 | reply->writeInt32(hw->getPageFlipCount()); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2582 | } |
| 2583 | return NO_ERROR; |
| 2584 | } |
| 2585 | } |
| 2586 | return err; |
| 2587 | } |
| 2588 | |
Mathias Agopian | 53331da | 2011-08-22 21:44:41 -0700 | [diff] [blame] | 2589 | void SurfaceFlinger::repaintEverything() { |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 2590 | android_atomic_or(1, &mRepaintEverything); |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 2591 | signalTransaction(); |
Mathias Agopian | 53331da | 2011-08-22 21:44:41 -0700 | [diff] [blame] | 2592 | } |
| 2593 | |
Mathias Agopian | 59119e6 | 2010-10-11 12:37:43 -0700 | [diff] [blame] | 2594 | // --------------------------------------------------------------------------- |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2595 | // Capture screen into an IGraphiBufferProducer |
Mathias Agopian | 9daa5c9 | 2010-10-12 16:05:48 -0700 | [diff] [blame] | 2596 | // --------------------------------------------------------------------------- |
| 2597 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2598 | status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, |
| 2599 | const sp<IGraphicBufferProducer>& producer, |
| 2600 | uint32_t reqWidth, uint32_t reqHeight, |
| 2601 | uint32_t minLayerZ, uint32_t maxLayerZ) { |
| 2602 | |
| 2603 | if (CC_UNLIKELY(display == 0)) |
| 2604 | return BAD_VALUE; |
| 2605 | |
| 2606 | if (CC_UNLIKELY(producer == 0)) |
| 2607 | return BAD_VALUE; |
| 2608 | |
| 2609 | class MessageCaptureScreen : public MessageBase { |
| 2610 | SurfaceFlinger* flinger; |
| 2611 | sp<IBinder> display; |
| 2612 | sp<IGraphicBufferProducer> producer; |
| 2613 | uint32_t reqWidth, reqHeight; |
| 2614 | uint32_t minLayerZ,maxLayerZ; |
| 2615 | status_t result; |
| 2616 | public: |
| 2617 | MessageCaptureScreen(SurfaceFlinger* flinger, |
| 2618 | const sp<IBinder>& display, |
| 2619 | const sp<IGraphicBufferProducer>& producer, |
| 2620 | uint32_t reqWidth, uint32_t reqHeight, |
| 2621 | uint32_t minLayerZ, uint32_t maxLayerZ) |
| 2622 | : flinger(flinger), display(display), producer(producer), |
| 2623 | reqWidth(reqWidth), reqHeight(reqHeight), |
| 2624 | minLayerZ(minLayerZ), maxLayerZ(maxLayerZ), |
| 2625 | result(PERMISSION_DENIED) |
| 2626 | { |
| 2627 | } |
| 2628 | status_t getResult() const { |
| 2629 | return result; |
| 2630 | } |
| 2631 | virtual bool handler() { |
| 2632 | Mutex::Autolock _l(flinger->mStateLock); |
| 2633 | sp<const DisplayDevice> hw(flinger->getDisplayDevice(display)); |
| 2634 | result = flinger->captureScreenImplLocked(hw, producer, |
| 2635 | reqWidth, reqHeight, minLayerZ, maxLayerZ); |
| 2636 | return true; |
| 2637 | } |
| 2638 | }; |
| 2639 | |
| 2640 | sp<MessageBase> msg = new MessageCaptureScreen(this, |
| 2641 | display, producer, reqWidth, reqHeight, minLayerZ, maxLayerZ); |
| 2642 | status_t res = postMessageSync(msg); |
| 2643 | if (res == NO_ERROR) { |
| 2644 | res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult(); |
| 2645 | } |
| 2646 | return res; |
| 2647 | } |
| 2648 | |
| 2649 | status_t SurfaceFlinger::captureScreenImplLocked( |
| 2650 | const sp<const DisplayDevice>& hw, |
| 2651 | const sp<IGraphicBufferProducer>& producer, |
| 2652 | uint32_t reqWidth, uint32_t reqHeight, |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 2653 | uint32_t minLayerZ, uint32_t maxLayerZ) |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2654 | { |
Mathias Agopian | fddc28d | 2012-03-12 15:18:42 -0400 | [diff] [blame] | 2655 | ATRACE_CALL(); |
| 2656 | |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2657 | // get screen geometry |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2658 | const uint32_t hw_w = hw->getWidth(); |
| 2659 | const uint32_t hw_h = hw->getHeight(); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2660 | |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 2661 | // if we have secure windows on this display, never allow the screen capture |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 2662 | if (hw->getSecureLayerVisible()) { |
Mathias Agopian | ef7b9c7 | 2012-08-10 15:22:19 -0700 | [diff] [blame] | 2663 | ALOGW("FB is protected: PERMISSION_DENIED"); |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 2664 | return PERMISSION_DENIED; |
| 2665 | } |
| 2666 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2667 | if ((reqWidth > hw_w) || (reqHeight > hw_h)) { |
| 2668 | ALOGE("size mismatch (%d, %d) > (%d, %d)", |
| 2669 | reqWidth, reqHeight, hw_w, hw_h); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2670 | return BAD_VALUE; |
Mathias Agopian | 3b1d2b6 | 2012-07-11 13:48:17 -0700 | [diff] [blame] | 2671 | } |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2672 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2673 | reqWidth = (!reqWidth) ? hw_w : reqWidth; |
| 2674 | reqHeight = (!reqHeight) ? hw_h : reqHeight; |
| 2675 | const bool filtering = reqWidth != hw_w || reqWidth != hw_h; |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2676 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2677 | // Create a surface to render into |
| 2678 | sp<Surface> surface = new Surface(producer); |
| 2679 | ANativeWindow* const window = surface.get(); |
| 2680 | |
| 2681 | // set the buffer size to what the user requested |
| 2682 | native_window_set_buffers_user_dimensions(window, reqWidth, reqHeight); |
| 2683 | |
| 2684 | // and create the corresponding EGLSurface |
| 2685 | EGLSurface eglSurface = eglCreateWindowSurface( |
| 2686 | mEGLDisplay, mEGLConfig, window, NULL); |
| 2687 | if (eglSurface == EGL_NO_SURFACE) { |
| 2688 | ALOGE("captureScreenImplLocked: eglCreateWindowSurface() failed 0x%4x", |
| 2689 | eglGetError()); |
| 2690 | return BAD_VALUE; |
| 2691 | } |
| 2692 | |
| 2693 | if (!eglMakeCurrent(mEGLDisplay, eglSurface, eglSurface, mEGLContext)) { |
| 2694 | ALOGE("captureScreenImplLocked: eglMakeCurrent() failed 0x%4x", |
| 2695 | eglGetError()); |
| 2696 | eglDestroySurface(mEGLDisplay, eglSurface); |
| 2697 | return BAD_VALUE; |
| 2698 | } |
Mathias Agopian | c1d1b0d | 2011-01-16 14:05:02 -0800 | [diff] [blame] | 2699 | |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2700 | // make sure to clear all GL error flags |
| 2701 | while ( glGetError() != GL_NO_ERROR ) ; |
| 2702 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2703 | // set-up our viewport |
| 2704 | glViewport(0, 0, reqWidth, reqHeight); |
| 2705 | glMatrixMode(GL_PROJECTION); |
| 2706 | glLoadIdentity(); |
| 2707 | glOrthof(0, hw_w, 0, hw_h, 0, 1); |
| 2708 | glMatrixMode(GL_MODELVIEW); |
| 2709 | glLoadIdentity(); |
Mathias Agopian | fddc28d | 2012-03-12 15:18:42 -0400 | [diff] [blame] | 2710 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2711 | // redraw the screen entirely... |
| 2712 | glDisable(GL_TEXTURE_EXTERNAL_OES); |
| 2713 | glDisable(GL_TEXTURE_2D); |
| 2714 | glClearColor(0,0,0,1); |
| 2715 | glClear(GL_COLOR_BUFFER_BIT); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2716 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2717 | const Vector< sp<LayerBase> >& layers(hw->getVisibleLayersSortedByZ()); |
| 2718 | const size_t count = layers.size(); |
| 2719 | for (size_t i=0 ; i<count ; ++i) { |
| 2720 | const sp<LayerBase>& layer(layers[i]); |
| 2721 | const uint32_t z = layer->drawingState().z; |
| 2722 | if (z >= minLayerZ && z <= maxLayerZ) { |
| 2723 | if (filtering) layer->setFiltering(true); |
| 2724 | layer->draw(hw); |
| 2725 | if (filtering) layer->setFiltering(false); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2726 | } |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2727 | } |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2728 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2729 | // and finishing things up... |
| 2730 | if (eglSwapBuffers(mEGLDisplay, eglSurface) != EGL_TRUE) { |
| 2731 | ALOGE("captureScreenImplLocked: eglSwapBuffers() failed 0x%4x", |
| 2732 | eglGetError()); |
| 2733 | eglDestroySurface(mEGLDisplay, eglSurface); |
| 2734 | return BAD_VALUE; |
| 2735 | } |
| 2736 | |
| 2737 | eglDestroySurface(mEGLDisplay, eglSurface); |
| 2738 | return NO_ERROR; |
| 2739 | } |
| 2740 | |
| 2741 | // --------------------------------------------------------------------------- |
| 2742 | // Capture screen into an IMemoryHeap (legacy) |
| 2743 | // --------------------------------------------------------------------------- |
| 2744 | |
| 2745 | status_t SurfaceFlinger::captureScreenImplLocked( |
| 2746 | const sp<const DisplayDevice>& hw, |
| 2747 | sp<IMemoryHeap>* heap, |
| 2748 | uint32_t* w, uint32_t* h, PixelFormat* f, |
| 2749 | uint32_t sw, uint32_t sh, |
| 2750 | uint32_t minLayerZ, uint32_t maxLayerZ) |
| 2751 | { |
| 2752 | ATRACE_CALL(); |
| 2753 | |
| 2754 | if (!GLExtensions::getInstance().haveFramebufferObject()) { |
| 2755 | return INVALID_OPERATION; |
| 2756 | } |
| 2757 | |
| 2758 | // create the texture that will receive the screenshot, later we'll |
| 2759 | // attach a FBO to it so we can call glReadPixels(). |
| 2760 | GLuint tname; |
| 2761 | glGenTextures(1, &tname); |
| 2762 | glBindTexture(GL_TEXTURE_2D, tname); |
| 2763 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
| 2764 | glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); |
| 2765 | |
| 2766 | // the GLConsumer will provide the BufferQueue |
| 2767 | sp<GLConsumer> consumer = new GLConsumer(tname, true, GL_TEXTURE_2D); |
| 2768 | consumer->getBufferQueue()->setDefaultBufferFormat(HAL_PIXEL_FORMAT_RGBA_8888); |
| 2769 | |
| 2770 | // call the new screenshot taking code, passing a BufferQueue to it |
| 2771 | status_t result = captureScreenImplLocked(hw, |
| 2772 | consumer->getBufferQueue(), sw, sh, minLayerZ, maxLayerZ); |
| 2773 | |
| 2774 | if (result == NO_ERROR) { |
| 2775 | result = consumer->updateTexImage(); |
| 2776 | if (result == NO_ERROR) { |
| 2777 | // create a FBO |
| 2778 | GLuint name; |
| 2779 | glGenFramebuffersOES(1, &name); |
| 2780 | glBindFramebufferOES(GL_FRAMEBUFFER_OES, name); |
| 2781 | glFramebufferTexture2DOES(GL_FRAMEBUFFER_OES, |
| 2782 | GL_COLOR_ATTACHMENT0_OES, GL_TEXTURE_2D, tname, 0); |
| 2783 | |
| 2784 | sp<GraphicBuffer> buf(consumer->getCurrentBuffer()); |
| 2785 | sw = buf->getWidth(); |
| 2786 | sh = buf->getHeight(); |
| 2787 | size_t size = buf->getStride() * sh * 4; |
| 2788 | |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2789 | // allocate shared memory large enough to hold the |
| 2790 | // screen capture |
| 2791 | sp<MemoryHeapBase> base( |
| 2792 | new MemoryHeapBase(size, 0, "screen-capture") ); |
| 2793 | void* const ptr = base->getBase(); |
Mathias Agopian | 7b19051 | 2012-09-25 15:28:44 -0700 | [diff] [blame] | 2794 | if (ptr != MAP_FAILED) { |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2795 | // capture the screen with glReadPixels() |
Mathias Agopian | fddc28d | 2012-03-12 15:18:42 -0400 | [diff] [blame] | 2796 | ScopedTrace _t(ATRACE_TAG, "glReadPixels"); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2797 | glReadPixels(0, 0, sw, sh, GL_RGBA, GL_UNSIGNED_BYTE, ptr); |
| 2798 | if (glGetError() == GL_NO_ERROR) { |
| 2799 | *heap = base; |
| 2800 | *w = sw; |
| 2801 | *h = sh; |
| 2802 | *f = PIXEL_FORMAT_RGBA_8888; |
| 2803 | result = NO_ERROR; |
| 2804 | } |
| 2805 | } else { |
| 2806 | result = NO_MEMORY; |
| 2807 | } |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2808 | |
| 2809 | // back to main framebuffer |
| 2810 | glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0); |
| 2811 | glDeleteFramebuffersOES(1, &name); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2812 | } |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2813 | } |
| 2814 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2815 | glDeleteTextures(1, &tname); |
Mathias Agopian | c1d1b0d | 2011-01-16 14:05:02 -0800 | [diff] [blame] | 2816 | |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 2817 | return result; |
| 2818 | } |
| 2819 | |
Jeff Brown | 9d4e3d2 | 2012-08-24 20:00:51 -0700 | [diff] [blame] | 2820 | status_t SurfaceFlinger::captureScreen(const sp<IBinder>& display, |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2821 | sp<IMemoryHeap>* heap, |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2822 | uint32_t* outWidth, uint32_t* outHeight, PixelFormat* outFormat, |
| 2823 | uint32_t reqWidth, uint32_t reqHeight, |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 2824 | uint32_t minLayerZ, uint32_t maxLayerZ) |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2825 | { |
Jeff Brown | 9d4e3d2 | 2012-08-24 20:00:51 -0700 | [diff] [blame] | 2826 | if (CC_UNLIKELY(display == 0)) |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2827 | return BAD_VALUE; |
| 2828 | |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2829 | class MessageCaptureScreen : public MessageBase { |
| 2830 | SurfaceFlinger* flinger; |
Jeff Brown | 9d4e3d2 | 2012-08-24 20:00:51 -0700 | [diff] [blame] | 2831 | sp<IBinder> display; |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2832 | sp<IMemoryHeap>* heap; |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2833 | uint32_t* outWidth; |
| 2834 | uint32_t* outHeight; |
| 2835 | PixelFormat* outFormat; |
| 2836 | uint32_t reqWidth; |
| 2837 | uint32_t reqHeight; |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 2838 | uint32_t minLayerZ; |
| 2839 | uint32_t maxLayerZ; |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2840 | status_t result; |
| 2841 | public: |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2842 | MessageCaptureScreen(SurfaceFlinger* flinger, |
| 2843 | const sp<IBinder>& display, sp<IMemoryHeap>* heap, |
| 2844 | uint32_t* outWidth, uint32_t* outHeight, PixelFormat* outFormat, |
| 2845 | uint32_t reqWidth, uint32_t reqHeight, |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 2846 | uint32_t minLayerZ, uint32_t maxLayerZ) |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2847 | : flinger(flinger), display(display), heap(heap), |
| 2848 | outWidth(outWidth), outHeight(outHeight), outFormat(outFormat), |
| 2849 | reqWidth(reqWidth), reqHeight(reqHeight), |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 2850 | minLayerZ(minLayerZ), maxLayerZ(maxLayerZ), |
| 2851 | result(PERMISSION_DENIED) |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2852 | { |
| 2853 | } |
| 2854 | status_t getResult() const { |
| 2855 | return result; |
| 2856 | } |
| 2857 | virtual bool handler() { |
| 2858 | Mutex::Autolock _l(flinger->mStateLock); |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2859 | sp<const DisplayDevice> hw(flinger->getDisplayDevice(display)); |
| 2860 | result = flinger->captureScreenImplLocked(hw, heap, |
| 2861 | outWidth, outHeight, outFormat, |
| 2862 | reqWidth, reqHeight, minLayerZ, maxLayerZ); |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2863 | return true; |
| 2864 | } |
| 2865 | }; |
| 2866 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 2867 | sp<MessageBase> msg = new MessageCaptureScreen(this, display, heap, |
| 2868 | outWidth, outHeight, outFormat, |
| 2869 | reqWidth, reqHeight, minLayerZ, maxLayerZ); |
Mathias Agopian | 1b0b30d | 2010-09-24 11:26:58 -0700 | [diff] [blame] | 2870 | status_t res = postMessageSync(msg); |
| 2871 | if (res == NO_ERROR) { |
| 2872 | res = static_cast<MessageCaptureScreen*>( msg.get() )->getResult(); |
| 2873 | } |
| 2874 | return res; |
| 2875 | } |
| 2876 | |
| 2877 | // --------------------------------------------------------------------------- |
| 2878 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2879 | SurfaceFlinger::LayerVector::LayerVector() { |
| 2880 | } |
| 2881 | |
| 2882 | SurfaceFlinger::LayerVector::LayerVector(const LayerVector& rhs) |
| 2883 | : SortedVector<sp<LayerBase> >(rhs) { |
| 2884 | } |
| 2885 | |
| 2886 | int SurfaceFlinger::LayerVector::do_compare(const void* lhs, |
| 2887 | const void* rhs) const |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 2888 | { |
Mathias Agopian | be246f8 | 2012-07-31 22:59:38 -0700 | [diff] [blame] | 2889 | // sort layers per layer-stack, then by z-order and finally by sequence |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2890 | const sp<LayerBase>& l(*reinterpret_cast<const sp<LayerBase>*>(lhs)); |
| 2891 | const sp<LayerBase>& r(*reinterpret_cast<const sp<LayerBase>*>(rhs)); |
Mathias Agopian | be246f8 | 2012-07-31 22:59:38 -0700 | [diff] [blame] | 2892 | |
| 2893 | uint32_t ls = l->currentState().layerStack; |
| 2894 | uint32_t rs = r->currentState().layerStack; |
| 2895 | if (ls != rs) |
| 2896 | return ls - rs; |
| 2897 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2898 | uint32_t lz = l->currentState().z; |
| 2899 | uint32_t rz = r->currentState().z; |
Mathias Agopian | be246f8 | 2012-07-31 22:59:38 -0700 | [diff] [blame] | 2900 | if (lz != rz) |
| 2901 | return lz - rz; |
| 2902 | |
| 2903 | return l->sequence - r->sequence; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 2904 | } |
| 2905 | |
| 2906 | // --------------------------------------------------------------------------- |
| 2907 | |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 2908 | SurfaceFlinger::DisplayDeviceState::DisplayDeviceState() |
| 2909 | : type(DisplayDevice::DISPLAY_ID_INVALID) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 2910 | } |
| 2911 | |
Mathias Agopian | 3ee454a | 2012-08-27 16:28:24 -0700 | [diff] [blame] | 2912 | SurfaceFlinger::DisplayDeviceState::DisplayDeviceState(DisplayDevice::DisplayType type) |
Jesse Hall | 01e2905 | 2013-02-19 16:13:35 -0800 | [diff] [blame] | 2913 | : type(type), layerStack(DisplayDevice::NO_LAYER_STACK), orientation(0) { |
Mathias Agopian | da8d0a5 | 2012-09-04 15:05:38 -0700 | [diff] [blame] | 2914 | viewport.makeInvalid(); |
| 2915 | frame.makeInvalid(); |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 2916 | } |
| 2917 | |
| 2918 | // --------------------------------------------------------------------------- |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2919 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 2920 | }; // namespace android |