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 | |
| 17 | #ifndef ANDROID_SURFACE_FLINGER_H |
| 18 | #define ANDROID_SURFACE_FLINGER_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 23 | #include <EGL/egl.h> |
| 24 | #include <GLES/gl.h> |
| 25 | |
Glenn Kasten | 99ed224 | 2011-12-15 09:51:17 -0800 | [diff] [blame] | 26 | #include <cutils/compiler.h> |
| 27 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | #include <utils/Atomic.h> |
| 29 | #include <utils/Errors.h> |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 30 | #include <utils/KeyedVector.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 31 | #include <utils/RefBase.h> |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 32 | #include <utils/SortedVector.h> |
| 33 | #include <utils/threads.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | |
Mathias Agopian | a1e6bc8 | 2010-07-14 18:41:18 -0700 | [diff] [blame] | 35 | #include <binder/BinderService.h> |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 36 | #include <binder/IMemory.h> |
Mathias Agopian | 375f563 | 2009-06-15 18:24:59 -0700 | [diff] [blame] | 37 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | #include <ui/PixelFormat.h> |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 39 | |
Mathias Agopian | 90ac799 | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 40 | #include <gui/IGraphicBufferAlloc.h> |
| 41 | #include <gui/ISurfaceComposer.h> |
| 42 | #include <gui/ISurfaceComposerClient.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 43 | |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 44 | #include <hardware/hwcomposer_defs.h> |
| 45 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 46 | #include <private/gui/LayerState.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 47 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 48 | #include "Barrier.h" |
Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 49 | #include "MessageQueue.h" |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 50 | #include "DisplayDevice.h" |
Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 51 | |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 52 | #include "DisplayHardware/HWComposer.h" |
| 53 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 54 | namespace android { |
| 55 | |
| 56 | // --------------------------------------------------------------------------- |
| 57 | |
| 58 | class Client; |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 59 | class DisplayEventConnection; |
| 60 | class EventThread; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 61 | class Layer; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 62 | class LayerBase; |
| 63 | class LayerBaseClient; |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 64 | class LayerDim; |
Mathias Agopian | 118d024 | 2011-10-13 16:02:48 -0700 | [diff] [blame] | 65 | class LayerScreenshot; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 66 | class SurfaceTextureClient; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 67 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 68 | // --------------------------------------------------------------------------- |
| 69 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 70 | class GraphicBufferAlloc : public BnGraphicBufferAlloc { |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 71 | public: |
| 72 | GraphicBufferAlloc(); |
| 73 | virtual ~GraphicBufferAlloc(); |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 74 | virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t w, uint32_t h, |
Mathias Agopian | d9e8c64 | 2011-07-01 14:53:49 -0700 | [diff] [blame] | 75 | PixelFormat format, uint32_t usage, status_t* error); |
Jamie Gennis | 9a78c90 | 2011-01-12 18:30:40 -0800 | [diff] [blame] | 76 | }; |
| 77 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 78 | // --------------------------------------------------------------------------- |
| 79 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 80 | enum { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 81 | eTransactionNeeded = 0x01, |
| 82 | eTraversalNeeded = 0x02, |
| 83 | eDisplayTransactionNeeded = 0x04, |
| 84 | eTransactionMask = 0x07 |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 85 | }; |
| 86 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 87 | class SurfaceFlinger : public BinderService<SurfaceFlinger>, |
| 88 | public BnSurfaceComposer, |
| 89 | private IBinder::DeathRecipient, |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 90 | private Thread, |
| 91 | private HWComposer::EventHandler |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 92 | { |
| 93 | public: |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 94 | static char const* getServiceName() { |
| 95 | return "SurfaceFlinger"; |
| 96 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 97 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 98 | SurfaceFlinger(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 99 | |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 100 | enum { |
| 101 | EVENT_VSYNC = HWC_EVENT_VSYNC |
| 102 | }; |
| 103 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 104 | // post an asynchronous message to the main thread |
| 105 | status_t postMessageAsync(const sp<MessageBase>& msg, nsecs_t reltime = 0, |
| 106 | uint32_t flags = 0); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 107 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 108 | // post a synchronous message to the main thread |
| 109 | status_t postMessageSync(const sp<MessageBase>& msg, nsecs_t reltime = 0, |
| 110 | uint32_t flags = 0); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 111 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 112 | // force full composition on all displays |
| 113 | void repaintEverything(); |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 114 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 115 | // renders content on given display to a texture. thread-safe version. |
| 116 | status_t renderScreenToTexture(DisplayID dpy, GLuint* textureName, |
| 117 | GLfloat* uOut, GLfloat* vOut); |
Mathias Agopian | bf2c6a6 | 2010-12-10 16:22:31 -0800 | [diff] [blame] | 118 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 119 | // renders content on given display to a texture, w/o acquiring main lock |
| 120 | status_t renderScreenToTextureLocked(DisplayID dpy, GLuint* textureName, |
| 121 | GLfloat* uOut, GLfloat* vOut); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 122 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 123 | // returns the default Display |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 124 | sp<const DisplayDevice> getDefaultDisplayDevice() const { |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 125 | return getDisplayDevice(DisplayDevice::DISPLAY_ID_MAIN); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 126 | } |
Mathias Agopian | b60314a | 2012-04-10 22:09:54 -0700 | [diff] [blame] | 127 | |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 128 | // utility function to delete a texture on the main thread |
| 129 | void deleteTextureAsync(GLuint texture); |
| 130 | |
| 131 | |
| 132 | // enable/disable h/w composer event |
| 133 | // TODO: this should be made accessible only to EventThread |
| 134 | void eventControl(int event, int enabled); |
| 135 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 136 | // called on the main thread by MessageQueue when an internal message |
| 137 | // is received |
| 138 | // TODO: this should be made accessible only to MessageQueue |
| 139 | void onMessageReceived(int32_t what); |
Mathias Agopian | 3094df3 | 2012-06-18 18:06:45 -0700 | [diff] [blame] | 140 | |
Mathias Agopian | 1f339ff | 2011-07-01 17:08:43 -0700 | [diff] [blame] | 141 | private: |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 142 | friend class Client; |
Mathias Agopian | d0566bc | 2011-11-17 17:49:17 -0800 | [diff] [blame] | 143 | friend class DisplayEventConnection; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 144 | friend class LayerBase; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 145 | friend class LayerBaseClient; |
| 146 | friend class Layer; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 147 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 148 | // We're reference counted, never destroy SurfaceFlinger directly |
| 149 | virtual ~SurfaceFlinger(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 150 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 151 | /* ------------------------------------------------------------------------ |
| 152 | * Internal data structures |
| 153 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 154 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 155 | class LayerVector : public SortedVector<sp<LayerBase> > { |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 156 | public: |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 157 | LayerVector(); |
| 158 | LayerVector(const LayerVector& rhs); |
| 159 | virtual int do_compare(const void* lhs, const void* rhs) const; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 160 | }; |
| 161 | |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 162 | struct DisplayDeviceState { |
| 163 | DisplayDeviceState(); |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 164 | DisplayDeviceState(int32_t id); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 165 | int32_t id; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 166 | sp<ISurfaceTexture> surface; |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 167 | uint32_t layerStack; |
| 168 | Rect viewport; |
| 169 | Rect frame; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 170 | uint8_t orientation; |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | struct State { |
| 174 | LayerVector layersSortedByZ; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 175 | DefaultKeyedVector< wp<IBinder>, DisplayDeviceState> displays; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 176 | }; |
| 177 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 178 | /* ------------------------------------------------------------------------ |
| 179 | * IBinder interface |
| 180 | */ |
| 181 | virtual status_t onTransact(uint32_t code, const Parcel& data, |
| 182 | Parcel* reply, uint32_t flags); |
| 183 | virtual status_t dump(int fd, const Vector<String16>& args); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 184 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 185 | /* ------------------------------------------------------------------------ |
| 186 | * ISurfaceComposer interface |
| 187 | */ |
| 188 | virtual sp<ISurfaceComposerClient> createConnection(); |
| 189 | virtual sp<IGraphicBufferAlloc> createGraphicBufferAlloc(); |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 190 | virtual sp<IBinder> createDisplay(); |
| 191 | virtual sp<IBinder> getBuiltInDisplay(int32_t id); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 192 | virtual void setTransactionState(const Vector<ComposerState>& state, |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 193 | const Vector<DisplayState>& displays, uint32_t flags); |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 194 | virtual void bootFinished(); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 195 | virtual bool authenticateSurfaceTexture( |
| 196 | const sp<ISurfaceTexture>& surface) const; |
| 197 | virtual sp<IDisplayEventConnection> createDisplayEventConnection(); |
| 198 | virtual status_t captureScreen(DisplayID dpy, sp<IMemoryHeap>* heap, |
| 199 | uint32_t* width, uint32_t* height, PixelFormat* format, |
| 200 | uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, |
| 201 | uint32_t maxLayerZ); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 202 | // called when screen needs to turn off |
| 203 | virtual void blank(); |
| 204 | // called when screen is turning back on |
| 205 | virtual void unblank(); |
Mathias Agopian | c666cae | 2012-07-25 18:56:13 -0700 | [diff] [blame] | 206 | virtual status_t getDisplayInfo(DisplayID dpy, DisplayInfo* info); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 207 | virtual void connectDisplay(const sp<ISurfaceTexture> display); |
Mathias Agopian | 1b03149 | 2012-06-20 17:51:20 -0700 | [diff] [blame] | 208 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 209 | /* ------------------------------------------------------------------------ |
| 210 | * DeathRecipient interface |
| 211 | */ |
| 212 | virtual void binderDied(const wp<IBinder>& who); |
Mathias Agopian | 99ce5cd | 2012-01-31 18:24:27 -0800 | [diff] [blame] | 213 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 214 | /* ------------------------------------------------------------------------ |
| 215 | * Thread interface |
| 216 | */ |
| 217 | virtual bool threadLoop(); |
| 218 | virtual status_t readyToRun(); |
| 219 | virtual void onFirstRef(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 220 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 221 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 222 | * HWComposer::EventHandler interface |
| 223 | */ |
| 224 | virtual void onVSyncReceived(int dpy, nsecs_t timestamp); |
| 225 | |
| 226 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 227 | * Message handling |
| 228 | */ |
| 229 | void waitForEvent(); |
| 230 | void signalTransaction(); |
| 231 | void signalLayerUpdate(); |
| 232 | void signalRefresh(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 233 | |
Andy McFadden | 9b6a395 | 2012-08-24 10:12:22 -0700 | [diff] [blame] | 234 | // called on the main thread in response to screenReleased() |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 235 | void onScreenReleased(); |
Andy McFadden | 9b6a395 | 2012-08-24 10:12:22 -0700 | [diff] [blame] | 236 | // called on the main thread in response to screenAcquired() |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 237 | void onScreenAcquired(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 238 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 239 | void handleMessageTransaction(); |
| 240 | void handleMessageInvalidate(); |
| 241 | void handleMessageRefresh(); |
Mathias Agopian | 4fec873 | 2012-06-29 14:12:52 -0700 | [diff] [blame] | 242 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 243 | void handleTransaction(uint32_t transactionFlags); |
| 244 | void handleTransactionLocked(uint32_t transactionFlags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 246 | /* handlePageFilp: this is were we latch a new buffer |
| 247 | * if available and compute the dirty region. |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 248 | */ |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 249 | void handlePageFlip(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 250 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 251 | /* ------------------------------------------------------------------------ |
| 252 | * Transactions |
| 253 | */ |
| 254 | uint32_t getTransactionFlags(uint32_t flags); |
| 255 | uint32_t peekTransactionFlags(uint32_t flags); |
| 256 | uint32_t setTransactionFlags(uint32_t flags); |
| 257 | void commitTransaction(); |
| 258 | uint32_t setClientStateLocked(const sp<Client>& client, |
| 259 | const layer_state_t& s); |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 260 | uint32_t setDisplayStateLocked(const DisplayState& s); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 261 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 262 | /* ------------------------------------------------------------------------ |
| 263 | * Layer management |
| 264 | */ |
| 265 | sp<ISurface> createLayer(ISurfaceComposerClient::surface_data_t* params, |
| 266 | const String8& name, const sp<Client>& client, DisplayID display, |
| 267 | uint32_t w, uint32_t h, PixelFormat format, uint32_t flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 269 | sp<Layer> createNormalLayer(const sp<Client>& client, DisplayID display, |
| 270 | uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 271 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 272 | sp<LayerDim> createDimLayer(const sp<Client>& client, DisplayID display, |
| 273 | uint32_t w, uint32_t h, uint32_t flags); |
Mathias Agopian | 74c40c0 | 2010-09-29 13:02:36 -0700 | [diff] [blame] | 274 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 275 | sp<LayerScreenshot> createScreenshotLayer(const sp<Client>& client, |
| 276 | DisplayID display, uint32_t w, uint32_t h, uint32_t flags); |
Mathias Agopian | 59119e6 | 2010-10-11 12:37:43 -0700 | [diff] [blame] | 277 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 278 | // called in response to the window-manager calling |
| 279 | // ISurfaceComposerClient::destroySurface() |
| 280 | // The specified layer is first placed in a purgatory list |
| 281 | // until all references from the client are released. |
| 282 | status_t onLayerRemoved(const sp<Client>& client, SurfaceID sid); |
Mathias Agopian | b9494d5 | 2012-04-18 02:28:45 -0700 | [diff] [blame] | 283 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 284 | // called when all clients have released all their references to |
| 285 | // this layer meaning it is entirely safe to destroy all |
| 286 | // resources associated to this layer. |
| 287 | status_t onLayerDestroyed(const wp<LayerBaseClient>& layer); |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 288 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 289 | // remove a layer from SurfaceFlinger immediately |
| 290 | status_t removeLayer(const sp<LayerBase>& layer); |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 291 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 292 | // add a layer to SurfaceFlinger |
| 293 | ssize_t addClientLayer(const sp<Client>& client, |
| 294 | const sp<LayerBaseClient>& lbc); |
Mathias Agopian | a67e418 | 2012-06-19 17:26:12 -0700 | [diff] [blame] | 295 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 296 | status_t removeLayer_l(const sp<LayerBase>& layer); |
| 297 | status_t purgatorizeLayer_l(const sp<LayerBase>& layer); |
Mathias Agopian | f1d8e87 | 2009-04-20 19:39:12 -0700 | [diff] [blame] | 298 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 299 | /* ------------------------------------------------------------------------ |
| 300 | * Boot animation, on/off animations and screen capture |
| 301 | */ |
Mathias Agopian | bb64124 | 2010-05-18 17:06:55 -0700 | [diff] [blame] | 302 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 303 | void startBootAnim(); |
Mathias Agopian | 96f0819 | 2010-06-02 23:28:45 -0700 | [diff] [blame] | 304 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 305 | status_t captureScreenImplLocked(DisplayID dpy, sp<IMemoryHeap>* heap, |
| 306 | uint32_t* width, uint32_t* height, PixelFormat* format, |
| 307 | uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, |
| 308 | uint32_t maxLayerZ); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 309 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 310 | /* ------------------------------------------------------------------------ |
| 311 | * EGL |
| 312 | */ |
| 313 | static status_t selectConfigForPixelFormat(EGLDisplay dpy, |
| 314 | EGLint const* attrs, PixelFormat format, EGLConfig* outConfig); |
| 315 | static EGLConfig selectEGLConfig(EGLDisplay disp, EGLint visualId); |
| 316 | static EGLContext createGLContext(EGLDisplay disp, EGLConfig config); |
| 317 | void initializeGL(EGLDisplay display, EGLSurface surface); |
| 318 | uint32_t getMaxTextureSize() const; |
| 319 | uint32_t getMaxViewportDims() const; |
Mathias Agopian | a491260 | 2012-07-12 14:25:33 -0700 | [diff] [blame] | 320 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 321 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 322 | * Display and layer stack management |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 323 | */ |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 324 | sp<const DisplayDevice> getDisplayDevice(DisplayID dpy) const { |
Mathias Agopian | 92a979a | 2012-08-02 18:32:23 -0700 | [diff] [blame] | 325 | return mDisplays.valueFor(dpy); |
| 326 | } |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 327 | const sp<DisplayDevice>& getDisplayDevice(DisplayID dpy) { |
| 328 | return mDisplays.valueFor(dpy); |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 329 | } |
Mathias Agopian | 99b4984 | 2011-06-27 16:05:52 -0700 | [diff] [blame] | 330 | |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 331 | // mark a region of a layer stack dirty. this updates the dirty |
| 332 | // region of all screens presenting this layer stack. |
| 333 | void invalidateLayerStack(uint32_t layerStack, const Region& dirty); |
| 334 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 335 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 336 | * H/W composer |
| 337 | */ |
| 338 | |
| 339 | HWComposer& getHwComposer() const { return *mHwc; } |
| 340 | |
Mathias Agopian | 888c822 | 2012-08-04 21:10:38 -0700 | [diff] [blame] | 341 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 342 | * Compositing |
| 343 | */ |
| 344 | void invalidateHwcGeometry(); |
| 345 | void computeVisibleRegions(const LayerVector& currentLayers, |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 346 | uint32_t layerStack, |
| 347 | Region& dirtyRegion, Region& opaqueRegion); |
Mathias Agopian | cd60f99 | 2012-08-16 16:28:27 -0700 | [diff] [blame] | 348 | |
| 349 | void preComposition(); |
| 350 | void postComposition(); |
| 351 | void rebuildLayerStacks(); |
| 352 | void setUpHWComposer(); |
| 353 | void doComposition(); |
| 354 | void doDebugFlashRegions(); |
| 355 | void doDisplayComposition(const sp<const DisplayDevice>& hw, |
| 356 | const Region& dirtyRegion); |
| 357 | void doComposeSurfaces(const sp<const DisplayDevice>& hw, |
| 358 | const Region& dirty); |
| 359 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 360 | void postFramebuffer(); |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 361 | void drawWormhole(const Region& region) const; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 362 | GLuint getProtectedTexName() const { |
| 363 | return mProtectedTexName; |
| 364 | } |
Mathias Agopian | 4da7519 | 2010-08-10 17:19:56 -0700 | [diff] [blame] | 365 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 366 | /* ------------------------------------------------------------------------ |
Jamie Gennis | 0bceb84 | 2012-08-23 20:19:38 -0700 | [diff] [blame^] | 367 | * Display management |
| 368 | */ |
| 369 | int32_t chooseNewDisplayIdLocked() const; |
| 370 | |
| 371 | /* ------------------------------------------------------------------------ |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 372 | * Debugging & dumpsys |
| 373 | */ |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 374 | void listLayersLocked(const Vector<String16>& args, size_t& index, |
| 375 | String8& result, char* buffer, size_t SIZE) const; |
| 376 | void dumpStatsLocked(const Vector<String16>& args, size_t& index, |
| 377 | String8& result, char* buffer, size_t SIZE) const; |
| 378 | void clearStatsLocked(const Vector<String16>& args, size_t& index, |
| 379 | String8& result, char* buffer, size_t SIZE) const; |
| 380 | void dumpAllLocked(String8& result, char* buffer, size_t SIZE) const; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 381 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 382 | /* ------------------------------------------------------------------------ |
| 383 | * Attributes |
| 384 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 385 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 386 | // access must be protected by mStateLock |
| 387 | mutable Mutex mStateLock; |
| 388 | State mCurrentState; |
| 389 | volatile int32_t mTransactionFlags; |
| 390 | Condition mTransactionCV; |
| 391 | SortedVector<sp<LayerBase> > mLayerPurgatory; |
| 392 | bool mTransationPending; |
| 393 | Vector<sp<LayerBase> > mLayersPendingRemoval; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 394 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 395 | // protected by mStateLock (but we could use another lock) |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 396 | bool mLayersRemoved; |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 397 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 398 | // access must be protected by mInvalidateLock |
Mathias Agopian | 87baae1 | 2012-07-31 12:38:26 -0700 | [diff] [blame] | 399 | volatile int32_t mRepaintEverything; |
Mathias Agopian | ca4d360 | 2011-05-19 15:38:14 -0700 | [diff] [blame] | 400 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 401 | // constant members (no synchronization needed for access) |
Mathias Agopian | 8630320 | 2012-07-24 22:46:10 -0700 | [diff] [blame] | 402 | HWComposer* mHwc; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 403 | GLuint mProtectedTexName; |
| 404 | nsecs_t mBootTime; |
| 405 | sp<EventThread> mEventThread; |
| 406 | GLint mMaxViewportDims[2]; |
| 407 | GLint mMaxTextureSize; |
| 408 | EGLContext mEGLContext; |
| 409 | EGLConfig mEGLConfig; |
Jesse Hall | 34a09ba | 2012-07-29 22:35:34 -0700 | [diff] [blame] | 410 | EGLDisplay mEGLDisplay; |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 411 | sp<IBinder> mDefaultDisplays[DisplayDevice::DISPLAY_ID_COUNT]; |
Mathias Agopian | 3094df3 | 2012-06-18 18:06:45 -0700 | [diff] [blame] | 412 | |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 413 | // Can only accessed from the main thread, these members |
| 414 | // don't need synchronization |
| 415 | State mDrawingState; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 416 | bool mVisibleRegionsDirty; |
| 417 | bool mHwWorkListDirty; |
Mathias Agopian | 4297734 | 2012-08-05 00:40:46 -0700 | [diff] [blame] | 418 | DefaultKeyedVector<int32_t, sp<DisplayDevice> > mDisplays; |
Mathias Agopian | 921e6ac | 2012-07-23 23:11:29 -0700 | [diff] [blame] | 419 | |
| 420 | // don't use a lock for these, we don't care |
| 421 | int mDebugRegion; |
| 422 | int mDebugDDMS; |
| 423 | int mDebugDisableHWC; |
| 424 | int mDebugDisableTransformHint; |
| 425 | volatile nsecs_t mDebugInSwapBuffers; |
| 426 | nsecs_t mLastSwapBufferTime; |
| 427 | volatile nsecs_t mDebugInTransaction; |
| 428 | nsecs_t mLastTransactionTime; |
| 429 | bool mBootFinished; |
| 430 | |
| 431 | // these are thread safe |
| 432 | mutable MessageQueue mEventQueue; |
| 433 | mutable Barrier mReadyToRunBarrier; |
| 434 | |
| 435 | // protected by mDestroyedLayerLock; |
| 436 | mutable Mutex mDestroyedLayerLock; |
| 437 | Vector<LayerBase const *> mDestroyedLayers; |
| 438 | |
| 439 | /* ------------------------------------------------------------------------ |
| 440 | * Feature prototyping |
| 441 | */ |
| 442 | |
Mathias Agopian | 5f20e2d | 2012-08-10 18:50:38 -0700 | [diff] [blame] | 443 | sp<IBinder> mExtDisplayToken; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 444 | }; |
| 445 | |
| 446 | // --------------------------------------------------------------------------- |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 447 | }; // namespace android |
| 448 | |
| 449 | #endif // ANDROID_SURFACE_FLINGER_H |