blob: f0e6deb1a6e1582e844ff8b6a60610d18f004386 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SURFACE_FLINGER_H
18#define ANDROID_SURFACE_FLINGER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopian921e6ac2012-07-23 23:11:29 -070023#include <EGL/egl.h>
24#include <GLES/gl.h>
25
Glenn Kasten99ed2242011-12-15 09:51:17 -080026#include <cutils/compiler.h>
27
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080028#include <utils/Atomic.h>
29#include <utils/Errors.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070030#include <utils/KeyedVector.h>
Mathias Agopian076b1cc2009-04-10 14:24:30 -070031#include <utils/RefBase.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070032#include <utils/SortedVector.h>
33#include <utils/threads.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080034
Mathias Agopiana1e6bc82010-07-14 18:41:18 -070035#include <binder/BinderService.h>
Mathias Agopian99b49842011-06-27 16:05:52 -070036#include <binder/IMemory.h>
Mathias Agopian375f5632009-06-15 18:24:59 -070037
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038#include <ui/PixelFormat.h>
Mathias Agopian921e6ac2012-07-23 23:11:29 -070039
Mathias Agopian90ac7992012-02-25 18:48:35 -080040#include <gui/ISurfaceComposer.h>
41#include <gui/ISurfaceComposerClient.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042
Mathias Agopian86303202012-07-24 22:46:10 -070043#include <hardware/hwcomposer_defs.h>
44
Mathias Agopian921e6ac2012-07-23 23:11:29 -070045#include <private/gui/LayerState.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080046
Mathias Agopian921e6ac2012-07-23 23:11:29 -070047#include "Barrier.h"
Mathias Agopian92a979a2012-08-02 18:32:23 -070048#include "DisplayDevice.h"
Jamie Gennis4b0eba92013-02-05 13:30:24 -080049#include "FrameTracker.h"
50#include "MessageQueue.h"
Mathias Agopianf1d8e872009-04-20 19:39:12 -070051
Mathias Agopian86303202012-07-24 22:46:10 -070052#include "DisplayHardware/HWComposer.h"
53
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054namespace android {
55
56// ---------------------------------------------------------------------------
57
58class Client;
Mathias Agopiand0566bc2011-11-17 17:49:17 -080059class DisplayEventConnection;
60class EventThread;
Mathias Agopianf33e4b62012-09-20 16:54:14 -070061class IGraphicBufferAlloc;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080062class Layer;
Mathias Agopianb7e930d2010-06-01 15:12:58 -070063class LayerDim;
Mathias Agopiane3c697f2013-02-14 17:11:02 -080064class Surface;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080065
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066// ---------------------------------------------------------------------------
67
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080068enum {
Mathias Agopiane57f2922012-08-09 16:29:12 -070069 eTransactionNeeded = 0x01,
70 eTraversalNeeded = 0x02,
71 eDisplayTransactionNeeded = 0x04,
72 eTransactionMask = 0x07
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080073};
74
Mathias Agopian921e6ac2012-07-23 23:11:29 -070075class SurfaceFlinger : public BinderService<SurfaceFlinger>,
76 public BnSurfaceComposer,
77 private IBinder::DeathRecipient,
Mathias Agopian86303202012-07-24 22:46:10 -070078 private Thread,
79 private HWComposer::EventHandler
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080080{
81public:
Mathias Agopian921e6ac2012-07-23 23:11:29 -070082 static char const* getServiceName() {
83 return "SurfaceFlinger";
84 }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080085
Mathias Agopian921e6ac2012-07-23 23:11:29 -070086 SurfaceFlinger();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080087
Mathias Agopian86303202012-07-24 22:46:10 -070088 enum {
89 EVENT_VSYNC = HWC_EVENT_VSYNC
90 };
91
Mathias Agopian921e6ac2012-07-23 23:11:29 -070092 // post an asynchronous message to the main thread
93 status_t postMessageAsync(const sp<MessageBase>& msg, nsecs_t reltime = 0,
94 uint32_t flags = 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080095
Mathias Agopian921e6ac2012-07-23 23:11:29 -070096 // post a synchronous message to the main thread
97 status_t postMessageSync(const sp<MessageBase>& msg, nsecs_t reltime = 0,
98 uint32_t flags = 0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080099
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700100 // force full composition on all displays
101 void repaintEverything();
Mathias Agopianbf2c6a62010-12-10 16:22:31 -0800102
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700103 // returns the default Display
Mathias Agopian42977342012-08-05 00:40:46 -0700104 sp<const DisplayDevice> getDefaultDisplayDevice() const {
Jesse Hall692c7232012-11-08 15:41:56 -0800105 return getDisplayDevice(mBuiltinDisplays[DisplayDevice::DISPLAY_PRIMARY]);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700106 }
Mathias Agopianb60314a2012-04-10 22:09:54 -0700107
Mathias Agopian86303202012-07-24 22:46:10 -0700108 // utility function to delete a texture on the main thread
109 void deleteTextureAsync(GLuint texture);
110
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700111 // allocate a h/w composer display id
112 int32_t allocateHwcDisplayId(DisplayDevice::DisplayType type);
Mathias Agopian86303202012-07-24 22:46:10 -0700113
114 // enable/disable h/w composer event
115 // TODO: this should be made accessible only to EventThread
Mathias Agopian81cd5d32012-10-04 02:34:38 -0700116 void eventControl(int disp, int event, int enabled);
Mathias Agopian86303202012-07-24 22:46:10 -0700117
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700118 // called on the main thread by MessageQueue when an internal message
119 // is received
120 // TODO: this should be made accessible only to MessageQueue
121 void onMessageReceived(int32_t what);
Mathias Agopian3094df32012-06-18 18:06:45 -0700122
Mathias Agopiancb558572012-10-04 15:58:54 -0700123 // for debugging only
124 // TODO: this should be made accessible only to HWComposer
Jesse Hall48bc05b2013-03-21 14:06:52 -0700125 const Vector< sp<Layer> >& getLayerSortedByZForHwcDisplay(int id);
Mathias Agopiancb558572012-10-04 15:58:54 -0700126
Mathias Agopian1f339ff2011-07-01 17:08:43 -0700127private:
Mathias Agopian96f08192010-06-02 23:28:45 -0700128 friend class Client;
Mathias Agopiand0566bc2011-11-17 17:49:17 -0800129 friend class DisplayEventConnection;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800130 friend class Layer;
Mathias Agopian67106042013-03-14 19:18:13 -0700131 friend class SurfaceTextureLayer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800132
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700133 // We're reference counted, never destroy SurfaceFlinger directly
134 virtual ~SurfaceFlinger();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800135
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700136 /* ------------------------------------------------------------------------
137 * Internal data structures
138 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800139
Mathias Agopian13127d82013-03-05 17:47:11 -0800140 class LayerVector : public SortedVector< sp<Layer> > {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800141 public:
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700142 LayerVector();
143 LayerVector(const LayerVector& rhs);
144 virtual int do_compare(const void* lhs, const void* rhs) const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800145 };
146
Mathias Agopian92a979a2012-08-02 18:32:23 -0700147 struct DisplayDeviceState {
148 DisplayDeviceState();
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700149 DisplayDeviceState(DisplayDevice::DisplayType type);
150 bool isValid() const { return type >= 0; }
151 bool isMainDisplay() const { return type == DisplayDevice::DISPLAY_PRIMARY; }
Mathias Agopiancde87a32012-09-13 14:09:01 -0700152 bool isVirtualDisplay() const { return type >= DisplayDevice::DISPLAY_VIRTUAL; }
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700153 DisplayDevice::DisplayType type;
Andy McFadden2adaf042012-12-18 09:49:45 -0800154 sp<IGraphicBufferProducer> surface;
Mathias Agopian92a979a2012-08-02 18:32:23 -0700155 uint32_t layerStack;
156 Rect viewport;
157 Rect frame;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700158 uint8_t orientation;
Andy McFadden8dfa92f2012-09-17 18:27:17 -0700159 String8 displayName;
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700160 bool isSecure;
Mathias Agopian92a979a2012-08-02 18:32:23 -0700161 };
162
163 struct State {
164 LayerVector layersSortedByZ;
Mathias Agopiane57f2922012-08-09 16:29:12 -0700165 DefaultKeyedVector< wp<IBinder>, DisplayDeviceState> displays;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166 };
167
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700168 /* ------------------------------------------------------------------------
169 * IBinder interface
170 */
171 virtual status_t onTransact(uint32_t code, const Parcel& data,
172 Parcel* reply, uint32_t flags);
173 virtual status_t dump(int fd, const Vector<String16>& args);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800174
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700175 /* ------------------------------------------------------------------------
176 * ISurfaceComposer interface
177 */
178 virtual sp<ISurfaceComposerClient> createConnection();
179 virtual sp<IGraphicBufferAlloc> createGraphicBufferAlloc();
Jamie Gennisdd3cb842012-10-19 18:19:11 -0700180 virtual sp<IBinder> createDisplay(const String8& displayName, bool secure);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700181 virtual sp<IBinder> getBuiltInDisplay(int32_t id);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700182 virtual void setTransactionState(const Vector<ComposerState>& state,
Mathias Agopian8b33f032012-07-24 20:43:54 -0700183 const Vector<DisplayState>& displays, uint32_t flags);
Mathias Agopian92a979a2012-08-02 18:32:23 -0700184 virtual void bootFinished();
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700185 virtual bool authenticateSurfaceTexture(
Andy McFadden2adaf042012-12-18 09:49:45 -0800186 const sp<IGraphicBufferProducer>& bufferProducer) const;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700187 virtual sp<IDisplayEventConnection> createDisplayEventConnection();
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800188 virtual status_t captureScreen(const sp<IBinder>& display,
189 const sp<IGraphicBufferProducer>& producer,
190 uint32_t reqWidth, uint32_t reqHeight,
Mathias Agopianabe815d2013-03-19 22:22:21 -0700191 uint32_t minLayerZ, uint32_t maxLayerZ, bool isCpuConsumer);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700192 // called when screen needs to turn off
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700193 virtual void blank(const sp<IBinder>& display);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700194 // called when screen is turning back on
Andy McFaddenc01a79d2012-09-27 16:02:06 -0700195 virtual void unblank(const sp<IBinder>& display);
Jeff Brown9d4e3d22012-08-24 20:00:51 -0700196 virtual status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info);
Mathias Agopian1b031492012-06-20 17:51:20 -0700197
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700198 /* ------------------------------------------------------------------------
199 * DeathRecipient interface
200 */
201 virtual void binderDied(const wp<IBinder>& who);
Mathias Agopian99ce5cd2012-01-31 18:24:27 -0800202
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700203 /* ------------------------------------------------------------------------
204 * Thread interface
205 */
206 virtual bool threadLoop();
207 virtual status_t readyToRun();
208 virtual void onFirstRef();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800209
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700210 /* ------------------------------------------------------------------------
Mathias Agopian86303202012-07-24 22:46:10 -0700211 * HWComposer::EventHandler interface
212 */
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700213 virtual void onVSyncReceived(int type, nsecs_t timestamp);
Mathias Agopian148994e2012-09-19 17:31:36 -0700214 virtual void onHotplugReceived(int disp, bool connected);
Mathias Agopian86303202012-07-24 22:46:10 -0700215
216 /* ------------------------------------------------------------------------
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700217 * Message handling
218 */
219 void waitForEvent();
220 void signalTransaction();
221 void signalLayerUpdate();
222 void signalRefresh();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800223
Andy McFadden13a082e2012-08-24 10:16:42 -0700224 // called on the main thread in response to initializeDisplays()
225 void onInitializeDisplays();
226 // called on the main thread in response to blank()
Mathias Agopiancde87a32012-09-13 14:09:01 -0700227 void onScreenReleased(const sp<const DisplayDevice>& hw);
Andy McFadden13a082e2012-08-24 10:16:42 -0700228 // called on the main thread in response to unblank()
Mathias Agopiancde87a32012-09-13 14:09:01 -0700229 void onScreenAcquired(const sp<const DisplayDevice>& hw);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700231 void handleMessageTransaction();
232 void handleMessageInvalidate();
233 void handleMessageRefresh();
Mathias Agopian4fec8732012-06-29 14:12:52 -0700234
Mathias Agopian87baae12012-07-31 12:38:26 -0700235 void handleTransaction(uint32_t transactionFlags);
236 void handleTransactionLocked(uint32_t transactionFlags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800237
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700238 /* handlePageFilp: this is were we latch a new buffer
239 * if available and compute the dirty region.
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700240 */
Mathias Agopian87baae12012-07-31 12:38:26 -0700241 void handlePageFlip();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800242
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700243 /* ------------------------------------------------------------------------
244 * Transactions
245 */
246 uint32_t getTransactionFlags(uint32_t flags);
247 uint32_t peekTransactionFlags(uint32_t flags);
248 uint32_t setTransactionFlags(uint32_t flags);
249 void commitTransaction();
250 uint32_t setClientStateLocked(const sp<Client>& client,
251 const layer_state_t& s);
Mathias Agopiane57f2922012-08-09 16:29:12 -0700252 uint32_t setDisplayStateLocked(const DisplayState& s);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800253
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700254 /* ------------------------------------------------------------------------
255 * Layer management
256 */
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700257 status_t createLayer(const String8& name, const sp<Client>& client,
258 uint32_t w, uint32_t h, PixelFormat format, uint32_t flags,
259 sp<IBinder>* handle, sp<IGraphicBufferProducer>* gbp);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800260
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700261 status_t createNormalLayer(const sp<Client>& client, const String8& name,
262 uint32_t w, uint32_t h, uint32_t flags, PixelFormat& format,
263 sp<IBinder>* outHandle, sp<IGraphicBufferProducer>* outGbp,
264 sp<Layer>* outLayer);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800265
Mathias Agopian4d9b8222013-03-12 17:11:48 -0700266 status_t createDimLayer(const sp<Client>& client, const String8& name,
267 uint32_t w, uint32_t h, uint32_t flags, sp<IBinder>* outHandle,
268 sp<IGraphicBufferProducer>* outGbp, sp<Layer>* outLayer);
Mathias Agopian74c40c02010-09-29 13:02:36 -0700269
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700270 // called in response to the window-manager calling
271 // ISurfaceComposerClient::destroySurface()
Mathias Agopianac9fa422013-02-11 16:40:36 -0800272 status_t onLayerRemoved(const sp<Client>& client, const sp<IBinder>& handle);
Mathias Agopianb9494d52012-04-18 02:28:45 -0700273
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700274 // called when all clients have released all their references to
275 // this layer meaning it is entirely safe to destroy all
276 // resources associated to this layer.
Mathias Agopian13127d82013-03-05 17:47:11 -0800277 status_t onLayerDestroyed(const wp<Layer>& layer);
Mathias Agopiana4912602012-07-12 14:25:33 -0700278
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700279 // remove a layer from SurfaceFlinger immediately
Mathias Agopian13127d82013-03-05 17:47:11 -0800280 status_t removeLayer(const sp<Layer>& layer);
Mathias Agopiana4912602012-07-12 14:25:33 -0700281
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700282 // add a layer to SurfaceFlinger
Mathias Agopian67106042013-03-14 19:18:13 -0700283 void addClientLayer(const sp<Client>& client,
284 const sp<IBinder>& handle,
285 const sp<IGraphicBufferProducer>& gbc,
286 const sp<Layer>& lbc);
Mathias Agopianf1d8e872009-04-20 19:39:12 -0700287
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700288 /* ------------------------------------------------------------------------
289 * Boot animation, on/off animations and screen capture
290 */
Mathias Agopianbb641242010-05-18 17:06:55 -0700291
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700292 void startBootAnim();
Mathias Agopian96f08192010-06-02 23:28:45 -0700293
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800294 status_t captureScreenImplLocked(
295 const sp<const DisplayDevice>& hw,
Mathias Agopianabe815d2013-03-19 22:22:21 -0700296 const sp<IGraphicBufferProducer>& producer,
297 uint32_t reqWidth, uint32_t reqHeight,
298 uint32_t minLayerZ, uint32_t maxLayerZ);
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800299
Mathias Agopianabe815d2013-03-19 22:22:21 -0700300 status_t captureScreenImplCpuConsumerLocked(
Mathias Agopian2a9fc492013-03-01 13:42:57 -0800301 const sp<const DisplayDevice>& hw,
302 const sp<IGraphicBufferProducer>& producer,
303 uint32_t reqWidth, uint32_t reqHeight,
304 uint32_t minLayerZ, uint32_t maxLayerZ);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800305
Mathias Agopianabe815d2013-03-19 22:22:21 -0700306
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700307 /* ------------------------------------------------------------------------
308 * EGL
309 */
Mathias Agopian722b98f2012-09-25 18:24:31 -0700310 static status_t selectConfigForAttribute(EGLDisplay dpy,
311 EGLint const* attrs, EGLint attribute, EGLint value, EGLConfig* outConfig);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700312 static EGLConfig selectEGLConfig(EGLDisplay disp, EGLint visualId);
313 static EGLContext createGLContext(EGLDisplay disp, EGLConfig config);
Mathias Agopiancde87a32012-09-13 14:09:01 -0700314 void initializeGL(EGLDisplay display);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700315 uint32_t getMaxTextureSize() const;
316 uint32_t getMaxViewportDims() const;
Mathias Agopiana4912602012-07-12 14:25:33 -0700317
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700318 /* ------------------------------------------------------------------------
Mathias Agopian87baae12012-07-31 12:38:26 -0700319 * Display and layer stack management
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700320 */
Andy McFadden13a082e2012-08-24 10:16:42 -0700321 // called when starting, or restarting after system_server death
322 void initializeDisplays();
323
Jesse Hall692c7232012-11-08 15:41:56 -0800324 // Create an IBinder for a builtin display and add it to current state
325 void createBuiltinDisplayLocked(DisplayDevice::DisplayType type);
326
Mathias Agopiandb9b41f2012-10-15 16:51:41 -0700327 // NOTE: can only be called from the main thread or with mStateLock held
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700328 sp<const DisplayDevice> getDisplayDevice(const wp<IBinder>& dpy) const {
Mathias Agopian92a979a2012-08-02 18:32:23 -0700329 return mDisplays.valueFor(dpy);
330 }
Mathias Agopiandb9b41f2012-10-15 16:51:41 -0700331
332 // NOTE: can only be called from the main thread or with mStateLock held
333 sp<DisplayDevice> getDisplayDevice(const wp<IBinder>& dpy) {
Mathias Agopian42977342012-08-05 00:40:46 -0700334 return mDisplays.valueFor(dpy);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700335 }
Mathias Agopian99b49842011-06-27 16:05:52 -0700336
Mathias Agopian87baae12012-07-31 12:38:26 -0700337 // mark a region of a layer stack dirty. this updates the dirty
338 // region of all screens presenting this layer stack.
339 void invalidateLayerStack(uint32_t layerStack, const Region& dirty);
340
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700341 /* ------------------------------------------------------------------------
Mathias Agopian86303202012-07-24 22:46:10 -0700342 * H/W composer
343 */
344
345 HWComposer& getHwComposer() const { return *mHwc; }
346
Mathias Agopian888c8222012-08-04 21:10:38 -0700347 /* ------------------------------------------------------------------------
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700348 * Compositing
349 */
350 void invalidateHwcGeometry();
Mathias Agopiance3a0a52012-09-12 15:34:57 -0700351 static void computeVisibleRegions(
352 const LayerVector& currentLayers, uint32_t layerStack,
Mathias Agopian87baae12012-07-31 12:38:26 -0700353 Region& dirtyRegion, Region& opaqueRegion);
Mathias Agopiancd60f992012-08-16 16:28:27 -0700354
355 void preComposition();
356 void postComposition();
357 void rebuildLayerStacks();
358 void setUpHWComposer();
359 void doComposition();
360 void doDebugFlashRegions();
361 void doDisplayComposition(const sp<const DisplayDevice>& hw,
362 const Region& dirtyRegion);
363 void doComposeSurfaces(const sp<const DisplayDevice>& hw,
364 const Region& dirty);
365
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700366 void postFramebuffer();
Mathias Agopian55801e42012-08-27 18:54:24 -0700367 void drawWormhole(const sp<const DisplayDevice>& hw,
368 const Region& region) const;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700369 GLuint getProtectedTexName() const {
370 return mProtectedTexName;
371 }
Mathias Agopian4da75192010-08-10 17:19:56 -0700372
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700373 /* ------------------------------------------------------------------------
Jamie Gennis0bceb842012-08-23 20:19:38 -0700374 * Display management
375 */
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700376
Jamie Gennis0bceb842012-08-23 20:19:38 -0700377
378 /* ------------------------------------------------------------------------
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700379 * Debugging & dumpsys
380 */
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700381 void listLayersLocked(const Vector<String16>& args, size_t& index,
382 String8& result, char* buffer, size_t SIZE) const;
383 void dumpStatsLocked(const Vector<String16>& args, size_t& index,
384 String8& result, char* buffer, size_t SIZE) const;
385 void clearStatsLocked(const Vector<String16>& args, size_t& index,
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800386 String8& result, char* buffer, size_t SIZE);
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700387 void dumpAllLocked(String8& result, char* buffer, size_t SIZE) const;
Keun young Park63f165f2012-08-31 10:53:36 -0700388 bool startDdmConnection();
Andy McFadden4803b742012-09-24 19:07:20 -0700389 static void appendSfConfigString(String8& result);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800390
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700391 /* ------------------------------------------------------------------------
392 * Attributes
393 */
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800394
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700395 // access must be protected by mStateLock
396 mutable Mutex mStateLock;
397 State mCurrentState;
398 volatile int32_t mTransactionFlags;
399 Condition mTransactionCV;
Jamie Gennis2d5e2302012-10-15 18:24:43 -0700400 bool mTransactionPending;
401 bool mAnimTransactionPending;
Mathias Agopian13127d82013-03-05 17:47:11 -0800402 Vector< sp<Layer> > mLayersPendingRemoval;
Mathias Agopian67106042013-03-14 19:18:13 -0700403 SortedVector< wp<IBinder> > mGraphicBufferProducerList;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800404
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700405 // protected by mStateLock (but we could use another lock)
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700406 bool mLayersRemoved;
Mathias Agopianca4d3602011-05-19 15:38:14 -0700407
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700408 // access must be protected by mInvalidateLock
Mathias Agopian87baae12012-07-31 12:38:26 -0700409 volatile int32_t mRepaintEverything;
Mathias Agopianca4d3602011-05-19 15:38:14 -0700410
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700411 // constant members (no synchronization needed for access)
Mathias Agopian86303202012-07-24 22:46:10 -0700412 HWComposer* mHwc;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700413 GLuint mProtectedTexName;
414 nsecs_t mBootTime;
Mathias Agopianb4b17302013-03-20 18:36:41 -0700415 bool mGpuToCpuSupported;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700416 sp<EventThread> mEventThread;
417 GLint mMaxViewportDims[2];
418 GLint mMaxTextureSize;
419 EGLContext mEGLContext;
420 EGLConfig mEGLConfig;
Jesse Hall34a09ba2012-07-29 22:35:34 -0700421 EGLDisplay mEGLDisplay;
Mathias Agopianed985572013-03-22 00:24:39 -0700422 EGLint mEGLNativeVisualId;
Jesse Hall692c7232012-11-08 15:41:56 -0800423 sp<IBinder> mBuiltinDisplays[DisplayDevice::NUM_DISPLAY_TYPES];
Mathias Agopian3094df32012-06-18 18:06:45 -0700424
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700425 // Can only accessed from the main thread, these members
426 // don't need synchronization
427 State mDrawingState;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700428 bool mVisibleRegionsDirty;
429 bool mHwWorkListDirty;
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800430 bool mAnimCompositionPending;
Mathias Agopiandb9b41f2012-10-15 16:51:41 -0700431
432 // this may only be written from the main thread with mStateLock held
433 // it may be read from other threads with mStateLock held
Mathias Agopian3ee454a2012-08-27 16:28:24 -0700434 DefaultKeyedVector< wp<IBinder>, sp<DisplayDevice> > mDisplays;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700435
436 // don't use a lock for these, we don't care
437 int mDebugRegion;
438 int mDebugDDMS;
439 int mDebugDisableHWC;
440 int mDebugDisableTransformHint;
441 volatile nsecs_t mDebugInSwapBuffers;
442 nsecs_t mLastSwapBufferTime;
443 volatile nsecs_t mDebugInTransaction;
444 nsecs_t mLastTransactionTime;
445 bool mBootFinished;
446
447 // these are thread safe
448 mutable MessageQueue mEventQueue;
449 mutable Barrier mReadyToRunBarrier;
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800450 FrameTracker mAnimFrameTracker;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700451
452 // protected by mDestroyedLayerLock;
453 mutable Mutex mDestroyedLayerLock;
Mathias Agopian13127d82013-03-05 17:47:11 -0800454 Vector<Layer const *> mDestroyedLayers;
Mathias Agopian921e6ac2012-07-23 23:11:29 -0700455
456 /* ------------------------------------------------------------------------
457 * Feature prototyping
458 */
459
Mathias Agopian5f20e2d2012-08-10 18:50:38 -0700460 sp<IBinder> mExtDisplayToken;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800461};
462
463// ---------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800464}; // namespace android
465
466#endif // ANDROID_SURFACE_FLINGER_H