blob: 0ede705b274cb2687f09d53ef83943dd7641cafe [file] [log] [blame]
Jesse Hall47743382013-02-08 11:13:46 -08001/*
Mathias Agopian518ec112011-05-13 16:21:08 -07002 ** Copyright 2007, The Android Open Source Project
3 **
Jesse Hall47743382013-02-08 11:13:46 -08004 ** 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
Mathias Agopian518ec112011-05-13 16:21:08 -07007 **
Jesse Hall47743382013-02-08 11:13:46 -08008 ** http://www.apache.org/licenses/LICENSE-2.0
Mathias Agopian518ec112011-05-13 16:21:08 -07009 **
Jesse Hall47743382013-02-08 11:13:46 -080010 ** 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
Mathias Agopian518ec112011-05-13 16:21:08 -070014 ** limitations under the License.
15 */
16
17#ifndef ANDROID_EGL_DISPLAY_H
18#define ANDROID_EGL_DISPLAY_H
19
20
21#include <ctype.h>
22#include <stdint.h>
23#include <stdlib.h>
24
25#include <EGL/egl.h>
26#include <EGL/eglext.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070027
Jesse Hallb29e5e82012-04-04 16:53:42 -070028#include <cutils/compiler.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070029#include <utils/SortedVector.h>
30#include <utils/threads.h>
Mathias Agopian4b9511c2011-11-13 23:52:47 -080031#include <utils/String8.h>
Mathias Agopian518ec112011-05-13 16:21:08 -070032
Mathias Agopian1cadb252011-05-23 17:26:14 -070033#include "egldefs.h"
Mathias Agopian39c24a22013-04-04 23:17:56 -070034#include "../hooks.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070035
36// ----------------------------------------------------------------------------
37namespace android {
38// ----------------------------------------------------------------------------
39
40class egl_object_t;
Mathias Agopianfb87e542012-01-30 18:20:52 -080041class egl_context_t;
Bernhard Rosenkränzer9f425912014-11-17 21:12:15 +010042struct egl_connection_t;
Mathias Agopian518ec112011-05-13 16:21:08 -070043
44// ----------------------------------------------------------------------------
45
Jamie Gennis98c63832011-11-07 17:03:54 -080046class EGLAPI egl_display_t { // marked as EGLAPI for testing purposes
Mathias Agopian518ec112011-05-13 16:21:08 -070047 static egl_display_t sDisplay[NUM_DISPLAYS];
48 EGLDisplay getDisplay(EGLNativeDisplayType display);
Mathias Agopiana4b2c042012-02-03 15:24:51 -080049 void loseCurrentImpl(egl_context_t * cur_c);
Mathias Agopian518ec112011-05-13 16:21:08 -070050
51public:
52 enum {
53 NOT_INITIALIZED = 0,
54 INITIALIZED = 1,
55 TERMINATED = 2
56 };
57
58 egl_display_t();
59 ~egl_display_t();
60
61 EGLBoolean initialize(EGLint *major, EGLint *minor);
62 EGLBoolean terminate();
63
64 // add object to this display's list
65 void addObject(egl_object_t* object);
Mathias Agopian5b287a62011-05-16 18:58:55 -070066 // remove object from this display's list
67 void removeObject(egl_object_t* object);
Mathias Agopian518ec112011-05-13 16:21:08 -070068 // add reference to this object. returns true if this is a valid object.
Mathias Agopianf0480de2011-11-13 20:50:07 -080069 bool getObject(egl_object_t* object) const;
Mathias Agopian518ec112011-05-13 16:21:08 -070070
Pablo Ceballos541de492016-04-09 15:56:12 -070071 // add context to this display's list
72 void addContext(egl_context_t* context);
73 // remove context from this display's list
74 void removeContext(egl_context_t* context);
75 // search for surface on all contexts and remove the references
76 void removeSurface(EGLSurface surface) const;
77
Jesse Hall25838592012-04-05 15:53:28 -070078 // These notifications allow the display to keep track of how many window
79 // surfaces exist, which it uses to decide whether to hibernate the
80 // underlying EGL implementation. They can be called by any thread without
81 // holding a lock, but must be called via egl_display_ptr to ensure
82 // proper hibernate/wakeup sequencing. If a surface destruction triggers
83 // hibernation, hibernation will be delayed at least until the calling
84 // thread's egl_display_ptr is destroyed.
Jesse Halla0fef1c2012-04-17 12:02:26 -070085 void onWindowSurfaceCreated() {
86 mHibernation.incWakeCount(HibernationMachine::STRONG);
87 }
88 void onWindowSurfaceDestroyed() {
89 mHibernation.decWakeCount(HibernationMachine::STRONG);
90 }
Jesse Hall25838592012-04-05 15:53:28 -070091
Mathias Agopian518ec112011-05-13 16:21:08 -070092 static egl_display_t* get(EGLDisplay dpy);
93 static EGLDisplay getFromNativeDisplay(EGLNativeDisplayType disp);
94
Mathias Agopianfb87e542012-01-30 18:20:52 -080095 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c,
96 EGLSurface draw, EGLSurface read, EGLContext ctx,
97 EGLSurface impl_draw, EGLSurface impl_read, EGLContext impl_ctx);
98 static void loseCurrent(egl_context_t * cur_c);
99
Mathias Agopian518ec112011-05-13 16:21:08 -0700100 inline bool isReady() const { return (refs > 0); }
101 inline bool isValid() const { return magic == '_dpy'; }
102 inline bool isAlive() const { return isValid(); }
103
Mathias Agopian4b9511c2011-11-13 23:52:47 -0800104 char const * getVendorString() const { return mVendorString.string(); }
105 char const * getVersionString() const { return mVersionString.string(); }
106 char const * getClientApiString() const { return mClientApiString.string(); }
107 char const * getExtensionString() const { return mExtensionString.string(); }
108
Jesse Hallc2e41222013-08-08 13:40:22 -0700109 bool haveExtension(const char* name, size_t nameLen = 0) const;
110
Romain Guy4725e2c2011-11-09 20:10:18 -0800111 inline uint32_t getRefsCount() const { return refs; }
112
Mathias Agopian518ec112011-05-13 16:21:08 -0700113 struct strings_t {
114 char const * vendor;
115 char const * version;
116 char const * clientApi;
117 char const * extensions;
118 };
119
120 struct DisplayImpl {
Mathias Agopian7773c432012-02-13 20:06:08 -0800121 DisplayImpl() : dpy(EGL_NO_DISPLAY), state(NOT_INITIALIZED) { }
Mathias Agopian518ec112011-05-13 16:21:08 -0700122 EGLDisplay dpy;
Mathias Agopian518ec112011-05-13 16:21:08 -0700123 EGLint state;
Mathias Agopian518ec112011-05-13 16:21:08 -0700124 strings_t queryString;
125 };
126
127private:
128 uint32_t magic;
129
130public:
Mathias Agopianada798b2012-02-13 17:09:30 -0800131 DisplayImpl disp;
Jamie Gennis28ef8d72012-04-05 20:34:54 -0700132 bool finishOnSwap; // property: debug.egl.finish
133 bool traceGpuCompletion; // property: debug.egl.traceGpuCompletion
Mathias Agopian518ec112011-05-13 16:21:08 -0700134
135private:
Jesse Hallb29e5e82012-04-04 16:53:42 -0700136 friend class egl_display_ptr;
Jesse Halla0fef1c2012-04-17 12:02:26 -0700137 bool enter() { return mHibernation.incWakeCount(HibernationMachine::WEAK); }
138 void leave() { return mHibernation.decWakeCount(HibernationMachine::WEAK); }
Jesse Hallb29e5e82012-04-04 16:53:42 -0700139
Mathias Agopianf0480de2011-11-13 20:50:07 -0800140 uint32_t refs;
Michael Lentine54466bc2015-01-27 09:01:03 -0800141 bool eglIsInitialized;
142 mutable Mutex lock, refLock;
143 mutable Condition refCond;
Mathias Agopianf0480de2011-11-13 20:50:07 -0800144 SortedVector<egl_object_t*> objects;
Pablo Ceballos541de492016-04-09 15:56:12 -0700145 SortedVector<egl_context_t*> contexts;
Mathias Agopian4b9511c2011-11-13 23:52:47 -0800146 String8 mVendorString;
147 String8 mVersionString;
148 String8 mClientApiString;
149 String8 mExtensionString;
Jesse Halla0fef1c2012-04-17 12:02:26 -0700150
151 // HibernationMachine uses its own internal mutex to protect its own data.
152 // The owning egl_display_t's lock may be but is not required to be held
153 // when calling HibernationMachine methods. As a result, nothing in this
154 // class may call back up to egl_display_t directly or indirectly.
155 class HibernationMachine {
156 public:
157 // STRONG refs cancel (inc) or initiate (dec) a hibernation attempt
158 // the next time the wakecount reaches zero. WEAK refs don't affect
159 // whether a hibernation attempt will be made. Use STRONG refs only
160 // for infrequent/heavy changes that are likely to indicate the
161 // EGLDisplay is entering or leaving a long-term idle state.
162 enum WakeRefStrength {
163 WEAK = 0,
164 STRONG = 1,
165 };
166
167 HibernationMachine(): mWakeCount(0), mHibernating(false),
Jesse Hall201f3b22012-05-04 14:52:40 -0700168 mAttemptHibernation(false), mDpyValid(false),
169#if BOARD_ALLOW_EGL_HIBERNATION
170 mAllowHibernation(true)
171#else
172 mAllowHibernation(false)
173#endif
Jesse Halla0fef1c2012-04-17 12:02:26 -0700174 {}
175 ~HibernationMachine() {}
176
177 bool incWakeCount(WakeRefStrength strenth);
178 void decWakeCount(WakeRefStrength strenth);
179
180 void setDisplayValid(bool valid);
181
182 private:
Jesse Hall201f3b22012-05-04 14:52:40 -0700183 Mutex mLock;
184 int32_t mWakeCount;
185 bool mHibernating;
186 bool mAttemptHibernation;
187 bool mDpyValid;
188 const bool mAllowHibernation;
Jesse Halla0fef1c2012-04-17 12:02:26 -0700189 };
190 HibernationMachine mHibernation;
Mathias Agopian518ec112011-05-13 16:21:08 -0700191};
192
193// ----------------------------------------------------------------------------
194
Jesse Hall25838592012-04-05 15:53:28 -0700195// An egl_display_ptr is a kind of smart pointer for egl_display_t objects.
196// It doesn't refcount the egl_display_t, but does ensure that the underlying
197// EGL implementation is "awake" (not hibernating) and ready for use as long
198// as the egl_display_ptr exists.
Jesse Hallb29e5e82012-04-04 16:53:42 -0700199class egl_display_ptr {
200public:
201 explicit egl_display_ptr(egl_display_t* dpy): mDpy(dpy) {
202 if (mDpy) {
203 if (CC_UNLIKELY(!mDpy->enter())) {
204 mDpy = NULL;
205 }
206 }
207 }
208
209 // We only really need a C++11 move constructor, not a copy constructor.
210 // A move constructor would save an enter()/leave() pair on every EGL API
211 // call. But enabling -std=c++0x causes lots of errors elsewhere, so I
Jesse Hall25838592012-04-05 15:53:28 -0700212 // can't use a move constructor until those are cleaned up.
Jesse Hallb29e5e82012-04-04 16:53:42 -0700213 //
214 // egl_display_ptr(egl_display_ptr&& other) {
215 // mDpy = other.mDpy;
216 // other.mDpy = NULL;
217 // }
Jesse Hall25838592012-04-05 15:53:28 -0700218 //
Jesse Hallb29e5e82012-04-04 16:53:42 -0700219 egl_display_ptr(const egl_display_ptr& other): mDpy(other.mDpy) {
220 if (mDpy) {
221 mDpy->enter();
222 }
223 }
224
225 ~egl_display_ptr() {
226 if (mDpy) {
227 mDpy->leave();
228 }
229 }
230
231 const egl_display_t* operator->() const { return mDpy; }
232 egl_display_t* operator->() { return mDpy; }
233
234 const egl_display_t* get() const { return mDpy; }
235 egl_display_t* get() { return mDpy; }
236
237 operator bool() const { return mDpy != NULL; }
238
239private:
240 egl_display_t* mDpy;
241
242 // non-assignable
243 egl_display_ptr& operator=(const egl_display_ptr&);
244};
245
246// ----------------------------------------------------------------------------
247
248inline egl_display_ptr get_display(EGLDisplay dpy) {
249 return egl_display_ptr(egl_display_t::get(dpy));
250}
251
252// Does not ensure EGL is unhibernated. Use with caution: calls into the
253// underlying EGL implementation are not safe.
254inline egl_display_t* get_display_nowake(EGLDisplay dpy) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700255 return egl_display_t::get(dpy);
256}
257
258// ----------------------------------------------------------------------------
259
Jesse Hallb29e5e82012-04-04 16:53:42 -0700260egl_display_ptr validate_display(EGLDisplay dpy);
261egl_display_ptr validate_display_connection(EGLDisplay dpy,
262 egl_connection_t*& cnx);
Mathias Agopian518ec112011-05-13 16:21:08 -0700263EGLBoolean validate_display_context(EGLDisplay dpy, EGLContext ctx);
264EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
265
266// ----------------------------------------------------------------------------
267}; // namespace android
268// ----------------------------------------------------------------------------
269
270#endif // ANDROID_EGL_DISPLAY_H