blob: 128f93d848ce50adab1ee2d5b3322273c694f3d0 [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_LAYER_H
18#define ANDROID_LAYER_H
19
20#include <stdint.h>
21#include <sys/types.h>
22
Mathias Agopian3330b202009-10-05 17:07:12 -070023#include <ui/GraphicBuffer.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080024#include <ui/PixelFormat.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080025#include <pixelflinger/pixelflinger.h>
26
Mathias Agopian076b1cc2009-04-10 14:24:30 -070027#include <EGL/egl.h>
28#include <EGL/eglext.h>
29#include <GLES/gl.h>
30#include <GLES/glext.h>
31
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080032#include "LayerBase.h"
33#include "Transform.h"
Mathias Agopiand606de62010-05-10 20:06:11 -070034#include "TextureManager.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080035
36namespace android {
37
38// ---------------------------------------------------------------------------
39
Andreas Hubere049a952010-06-25 09:25:19 -070040class FreezeLock;
Mathias Agopian1f7bec62010-06-25 18:02:21 -070041class Client;
42class GLExtensions;
43class UserClient;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080044
45// ---------------------------------------------------------------------------
46
47class Layer : public LayerBaseClient
48{
Mathias Agopiand606de62010-05-10 20:06:11 -070049public:
Mathias Agopianb7e930d2010-06-01 15:12:58 -070050 Layer(SurfaceFlinger* flinger, DisplayID display,
51 const sp<Client>& client);
Mathias Agopiand606de62010-05-10 20:06:11 -070052
Mathias Agopianb7e930d2010-06-01 15:12:58 -070053 virtual ~Layer();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080054
Mathias Agopianb7e930d2010-06-01 15:12:58 -070055 virtual const char* getTypeId() const { return "Layer"; }
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080056
Mathias Agopianb7e930d2010-06-01 15:12:58 -070057 // the this layer's size and format
Mathias Agopiancbb288b2009-09-07 16:32:45 -070058 status_t setBuffers(uint32_t w, uint32_t h,
59 PixelFormat format, uint32_t flags=0);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080060
Mathias Agopianb7e930d2010-06-01 15:12:58 -070061 // associate a UserClient to this Layer
62 status_t setToken(const sp<UserClient>& uc, SharedClient* sc, int32_t idx);
63 int32_t getToken() const;
Mathias Agopian579b3f82010-06-08 19:54:15 -070064 sp<UserClient> getClient() const;
Mathias Agopianb7e930d2010-06-01 15:12:58 -070065
66 // Set this Layer's buffers size
Mathias Agopiana138f892010-05-21 17:24:35 -070067 void setBufferSize(uint32_t w, uint32_t h);
68 bool isFixedSize() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080069
Mathias Agopianb7e930d2010-06-01 15:12:58 -070070 // LayerBase interface
Mathias Agopiana350ff92010-08-10 17:14:02 -070071 virtual void setGeometry(hwc_layer_t* hwcl);
72 virtual void setPerFrameData(hwc_layer_t* hwcl);
Mathias Agopian74c40c02010-09-29 13:02:36 -070073 virtual void drawForSreenShot() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080074 virtual void onDraw(const Region& clip) const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080075 virtual uint32_t doTransaction(uint32_t transactionFlags);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080076 virtual void lockPageFlip(bool& recomputeVisibleRegions);
77 virtual void unlockPageFlip(const Transform& planeTransform, Region& outDirtyRegion);
Eric Hassoldac45e6b2011-02-10 14:41:26 -080078 virtual bool needsBlending(const sp<GraphicBuffer>& buffer) const;
79 virtual bool needsBlending() const;
Mathias Agopian401c2572009-09-23 19:16:27 -070080 virtual bool needsDithering() const { return mNeedsDithering; }
Mathias Agopiana7f66922010-05-26 22:08:52 -070081 virtual bool needsFiltering() const;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080082 virtual bool isSecure() const { return mSecure; }
Jamie Gennis7a4d0df2011-03-09 17:05:02 -080083 virtual bool isProtected() const;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070084 virtual sp<Surface> createSurface() const;
Mathias Agopian9a112062009-04-17 19:36:26 -070085 virtual status_t ditch();
Mathias Agopiand606de62010-05-10 20:06:11 -070086 virtual void onRemoved();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080087
Mathias Agopianb7e930d2010-06-01 15:12:58 -070088 // only for debugging
89 inline sp<GraphicBuffer> getBuffer(int i) const {
90 return mBufferManager.getBuffer(i); }
91 // only for debugging
92 inline const sp<FreezeLock>& getFreezeLock() const {
93 return mFreezeLock; }
Mathias Agopian1b5e1022010-04-20 17:55:49 -070094
95protected:
96 virtual void dump(String8& result, char* scratch, size_t size) const;
97
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080098private:
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080099 void reloadTexture(const Region& dirty);
Mathias Agopian3330b202009-10-05 17:07:12 -0700100 uint32_t getEffectiveUsage(uint32_t usage) const;
Mathias Agopiana138f892010-05-21 17:24:35 -0700101 sp<GraphicBuffer> requestBuffer(int bufferIdx,
102 uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700103 status_t setBufferCount(int bufferCount);
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700104
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700105 // -----------------------------------------------------------------------
106
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700107 class SurfaceLayer : public LayerBaseClient::Surface {
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700108 public:
Mathias Agopian96f08192010-06-02 23:28:45 -0700109 SurfaceLayer(const sp<SurfaceFlinger>& flinger, const sp<Layer>& owner);
Mathias Agopiancbb288b2009-09-07 16:32:45 -0700110 ~SurfaceLayer();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700111 private:
Mathias Agopiana138f892010-05-21 17:24:35 -0700112 virtual sp<GraphicBuffer> requestBuffer(int bufferIdx,
113 uint32_t w, uint32_t h, uint32_t format, uint32_t usage);
Mathias Agopianb5b7f262010-05-07 15:58:44 -0700114 virtual status_t setBufferCount(int bufferCount);
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700115 sp<Layer> getOwner() const {
116 return static_cast<Layer*>(Surface::getOwner().get());
117 }
118 };
119 friend class SurfaceLayer;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800120
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700121 // -----------------------------------------------------------------------
Mathias Agopiand606de62010-05-10 20:06:11 -0700122
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700123 class ClientRef {
124 ClientRef(const ClientRef& rhs);
125 ClientRef& operator = (const ClientRef& rhs);
126 mutable Mutex mLock;
127 // binder thread, page-flip thread
Mathias Agopian579b3f82010-06-08 19:54:15 -0700128 sp<SharedBufferServer> mControlBlock;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700129 wp<UserClient> mUserClient;
130 int32_t mToken;
131 public:
132 ClientRef();
133 ~ClientRef();
134 int32_t getToken() const;
Mathias Agopian579b3f82010-06-08 19:54:15 -0700135 sp<UserClient> getClient() const;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700136 status_t setToken(const sp<UserClient>& uc,
Mathias Agopian579b3f82010-06-08 19:54:15 -0700137 const sp<SharedBufferServer>& sharedClient, int32_t token);
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700138 sp<UserClient> getUserClientUnsafe() const;
139 class Access {
140 Access(const Access& rhs);
141 Access& operator = (const Access& rhs);
142 sp<UserClient> mUserClientStrongRef;
Mathias Agopian579b3f82010-06-08 19:54:15 -0700143 sp<SharedBufferServer> mControlBlock;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700144 public:
145 Access(const ClientRef& ref);
Mathias Agopian579b3f82010-06-08 19:54:15 -0700146 ~Access();
147 inline SharedBufferServer* get() const { return mControlBlock.get(); }
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700148 };
149 friend class Access;
150 };
Mathias Agopiand606de62010-05-10 20:06:11 -0700151
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700152 // -----------------------------------------------------------------------
Mathias Agopiand606de62010-05-10 20:06:11 -0700153
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700154 class BufferManager {
155 static const size_t NUM_BUFFERS = 2;
156 struct BufferData {
157 sp<GraphicBuffer> buffer;
158 Image texture;
159 };
160 // this lock protect mBufferData[].buffer but since there
161 // is very little contention, we have only one like for
162 // the whole array, we also use it to protect mNumBuffers.
163 mutable Mutex mLock;
164 BufferData mBufferData[SharedBufferStack::NUM_BUFFER_MAX];
165 size_t mNumBuffers;
166 Texture mFailoverTexture;
167 TextureManager& mTextureManager;
Mathias Agopian420a2832010-12-14 20:30:37 -0800168 ssize_t mActiveBufferIndex;
169 sp<GraphicBuffer> mActiveBuffer;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700170 bool mFailover;
171 static status_t destroyTexture(Image* tex, EGLDisplay dpy);
Mathias Agopiand606de62010-05-10 20:06:11 -0700172
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700173 public:
174 static size_t getDefaultBufferCount() { return NUM_BUFFERS; }
175 BufferManager(TextureManager& tm);
176 ~BufferManager();
Mathias Agopianbb641242010-05-18 17:06:55 -0700177
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700178 // detach/attach buffer from/to given index
179 sp<GraphicBuffer> detachBuffer(size_t index);
180 status_t attachBuffer(size_t index, const sp<GraphicBuffer>& buffer);
181 // resize the number of active buffers
Jamie Gennis54cc83e2010-11-02 11:51:32 -0700182 status_t resize(size_t size, const sp<SurfaceFlinger>& flinger,
183 EGLDisplay dpy);
Mathias Agopiand606de62010-05-10 20:06:11 -0700184
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700185 // ----------------------------------------------
186 // must be called from GL thread
Mathias Agopiand606de62010-05-10 20:06:11 -0700187
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700188 // set/get active buffer index
189 status_t setActiveBufferIndex(size_t index);
190 size_t getActiveBufferIndex() const;
191 // return the active buffer
192 sp<GraphicBuffer> getActiveBuffer() const;
Mathias Agopianda9584d2010-12-13 18:51:59 -0800193 // return wether we have an active buffer
194 bool hasActiveBuffer() const;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700195 // return the active texture (or fail-over)
196 Texture getActiveTexture() const;
197 // frees resources associated with all buffers
198 status_t destroy(EGLDisplay dpy);
199 // load bitmap data into the active buffer
200 status_t loadTexture(const Region& dirty, const GGLSurface& t);
201 // make active buffer an EGLImage if needed
202 status_t initEglImage(EGLDisplay dpy,
203 const sp<GraphicBuffer>& buffer);
Mathias Agopiand606de62010-05-10 20:06:11 -0700204
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700205 // ----------------------------------------------
206 // only for debugging
207 sp<GraphicBuffer> getBuffer(size_t index) const;
208 };
Mathias Agopiand606de62010-05-10 20:06:11 -0700209
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700210 // -----------------------------------------------------------------------
Mathias Agopiand606de62010-05-10 20:06:11 -0700211
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700212 // thread-safe
213 ClientRef mUserClientRef;
Mathias Agopiand606de62010-05-10 20:06:11 -0700214
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700215 // constants
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700216 PixelFormat mFormat;
Mathias Agopian1f7bec62010-06-25 18:02:21 -0700217 const GLExtensions& mGLExtensions;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700218 bool mNeedsBlending;
219 bool mNeedsDithering;
Mathias Agopiand606de62010-05-10 20:06:11 -0700220
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700221 // page-flip thread (currently main thread)
Glenn Kasten16f04532011-01-19 15:27:27 -0800222 bool mSecure; // no screenshots
223 bool mProtectedByApp; // application requires protected path to external sink
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700224 Region mPostedDirtyRegion;
Mathias Agopiand606de62010-05-10 20:06:11 -0700225
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700226 // page-flip thread and transaction thread (currently main thread)
227 sp<FreezeLock> mFreezeLock;
Mathias Agopiand606de62010-05-10 20:06:11 -0700228
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700229 // see threading usage in declaration
230 TextureManager mTextureManager;
231 BufferManager mBufferManager;
Mathias Agopian96f08192010-06-02 23:28:45 -0700232
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700233 // binder thread, transaction thread
234 mutable Mutex mLock;
235 uint32_t mWidth;
236 uint32_t mHeight;
237 uint32_t mReqWidth;
238 uint32_t mReqHeight;
239 uint32_t mReqFormat;
Mathias Agopian733189d2010-12-02 21:32:29 -0800240 bool mNeedsScaling;
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700241 bool mFixedSize;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800242};
243
244// ---------------------------------------------------------------------------
245
246}; // namespace android
247
248#endif // ANDROID_LAYER_H