blob: eec5ce1a0677e4878b178e68eb0f51534ace1adc [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
2 ** Copyright 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
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080017#include <ctype.h>
Mathias Agopiand8fb7b52009-05-17 18:50:16 -070018#include <stdlib.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080019#include <string.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080020
Mathias Agopian518ec112011-05-13 16:21:08 -070021#include <hardware/gralloc.h>
22#include <system/window.h>
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080023
24#include <EGL/egl.h>
25#include <EGL/eglext.h>
26#include <GLES/gl.h>
27#include <GLES/glext.h>
28
29#include <cutils/log.h>
30#include <cutils/atomic.h>
31#include <cutils/properties.h>
32#include <cutils/memory.h>
33
Romain Guye03de932011-07-11 15:33:51 -070034#include <utils/CallStack.h>
Mathias Agopian24035332010-08-02 17:34:32 -070035#include <utils/String8.h>
Mathias Agopian9429e9c2009-08-21 02:18:25 -070036
Mathias Agopian1cadb252011-05-23 17:26:14 -070037#include "egldefs.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080038#include "egl_impl.h"
David Li864f8392011-03-28 10:39:28 -070039#include "egl_tls.h"
Siva Velusamy0469dd62011-11-30 15:05:37 -080040#include "glestrace.h"
Mathias Agopian518ec112011-05-13 16:21:08 -070041#include "hooks.h"
42#include "Loader.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080043
Mathias Agopian518ec112011-05-13 16:21:08 -070044#include "egl_display.h"
45#include "egl_object.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080046
47// ----------------------------------------------------------------------------
48namespace android {
49// ----------------------------------------------------------------------------
50
Mathias Agopianada798b2012-02-13 17:09:30 -080051egl_connection_t gEGLImpl;
52gl_hooks_t gHooks[2];
Mathias Agopian518ec112011-05-13 16:21:08 -070053gl_hooks_t gHooksNoContext;
54pthread_key_t gGLWrapperKey = -1;
Mathias Agopian076b1cc2009-04-10 14:24:30 -070055
56// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080057
Jack Palevicha2dd6cf2010-10-26 15:21:24 -070058#if EGL_TRACE
59
60EGLAPI pthread_key_t gGLTraceKey = -1;
61
62// ----------------------------------------------------------------------------
63
Mathias Agopian518ec112011-05-13 16:21:08 -070064int gEGLDebugLevel;
65
66static int sEGLTraceLevel;
67static int sEGLApplicationTraceLevel;
68
69extern gl_hooks_t gHooksTrace;
Jack Palevicha2dd6cf2010-10-26 15:21:24 -070070
71static inline void setGlTraceThreadSpecific(gl_hooks_t const *value) {
72 pthread_setspecific(gGLTraceKey, value);
73}
74
75gl_hooks_t const* getGLTraceThreadSpecific() {
76 return static_cast<gl_hooks_t*>(pthread_getspecific(gGLTraceKey));
77}
78
Mathias Agopian518ec112011-05-13 16:21:08 -070079void initEglTraceLevel() {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -070080 char value[PROPERTY_VALUE_MAX];
81 property_get("debug.egl.trace", value, "0");
82 int propertyLevel = atoi(value);
Mathias Agopian518ec112011-05-13 16:21:08 -070083 int applicationLevel = sEGLApplicationTraceLevel;
84 sEGLTraceLevel = propertyLevel > applicationLevel ? propertyLevel : applicationLevel;
David Li499c6f02011-04-08 18:43:16 -070085
David Li2f5a6552011-03-01 16:08:10 -080086 property_get("debug.egl.debug_proc", value, "");
Siva Velusamy93a826f2011-12-14 12:19:56 -080087 if (strlen(value) == 0)
88 return;
89
David Li2f5a6552011-03-01 16:08:10 -080090 long pid = getpid();
91 char procPath[128] = {};
92 sprintf(procPath, "/proc/%ld/cmdline", pid);
93 FILE * file = fopen(procPath, "r");
Siva Velusamy0469dd62011-11-30 15:05:37 -080094 if (file) {
David Li2f5a6552011-03-01 16:08:10 -080095 char cmdline[256] = {};
Siva Velusamy0469dd62011-11-30 15:05:37 -080096 if (fgets(cmdline, sizeof(cmdline) - 1, file)) {
Siva Velusamy93a826f2011-12-14 12:19:56 -080097 if (!strncmp(value, cmdline, strlen(value))) {
98 // set EGL debug if the "debug.egl.debug_proc" property
99 // matches the prefix of this application's command line
Mathias Agopianccfa5c32011-09-01 14:55:00 -0700100 gEGLDebugLevel = 1;
Siva Velusamy93a826f2011-12-14 12:19:56 -0800101 }
David Li499c6f02011-04-08 18:43:16 -0700102 }
David Li2f5a6552011-03-01 16:08:10 -0800103 fclose(file);
104 }
David Li499c6f02011-04-08 18:43:16 -0700105
Siva Velusamy0469dd62011-11-30 15:05:37 -0800106 if (gEGLDebugLevel > 0) {
107 GLTrace_start();
David Li85f33a72011-03-10 19:07:42 -0800108 }
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700109}
110
Mathias Agopian518ec112011-05-13 16:21:08 -0700111void setGLHooksThreadSpecific(gl_hooks_t const *value) {
112 if (sEGLTraceLevel > 0) {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700113 setGlTraceThreadSpecific(value);
114 setGlThreadSpecific(&gHooksTrace);
Mathias Agopianccfa5c32011-09-01 14:55:00 -0700115 } else if (gEGLDebugLevel > 0 && value != &gHooksNoContext) {
David Li2f5a6552011-03-01 16:08:10 -0800116 setGlTraceThreadSpecific(value);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800117 setGlThreadSpecific(GLTrace_getGLHooks());
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700118 } else {
119 setGlThreadSpecific(value);
120 }
121}
122
123/*
124 * Global entry point to allow applications to modify their own trace level.
125 * The effective trace level is the max of this level and the value of debug.egl.trace.
126 */
127extern "C"
128void setGLTraceLevel(int level) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700129 sEGLApplicationTraceLevel = level;
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700130}
131
132#else
133
Mathias Agopian518ec112011-05-13 16:21:08 -0700134void setGLHooksThreadSpecific(gl_hooks_t const *value) {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700135 setGlThreadSpecific(value);
136}
137
138#endif
139
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800140/*****************************************************************************/
141
Mathias Agopian6f087122010-09-23 16:38:38 -0700142static int gl_no_context() {
Mathias Agopian518ec112011-05-13 16:21:08 -0700143 if (egl_tls_t::logNoContextCall()) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000144 ALOGE("call to OpenGL ES API with no current context "
Mathias Agopiand274eae2009-07-31 16:21:17 -0700145 "(logged once per thread)");
Mathias Agopianecfe0912011-09-06 17:24:05 -0700146 char value[PROPERTY_VALUE_MAX];
147 property_get("debug.egl.callstack", value, "0");
148 if (atoi(value)) {
149 CallStack stack;
150 stack.update();
151 stack.dump();
152 }
Mathias Agopiand274eae2009-07-31 16:21:17 -0700153 }
Mathias Agopian6f087122010-09-23 16:38:38 -0700154 return 0;
Mathias Agopian05c53112010-09-23 11:32:52 -0700155}
156
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800157static void early_egl_init(void)
158{
159#if !USE_FAST_TLS_KEY
160 pthread_key_create(&gGLWrapperKey, NULL);
161#endif
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700162#if EGL_TRACE
163 pthread_key_create(&gGLTraceKey, NULL);
164 initEglTraceLevel();
165#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800166 uint32_t addr = (uint32_t)((void*)gl_no_context);
167 android_memset32(
Mathias Agopian618fa102009-10-14 02:06:37 -0700168 (uint32_t*)(void*)&gHooksNoContext,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800169 addr,
Mathias Agopian618fa102009-10-14 02:06:37 -0700170 sizeof(gHooksNoContext));
Mathias Agopian05c53112010-09-23 11:32:52 -0700171
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700172 setGLHooksThreadSpecific(&gHooksNoContext);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800173}
174
175static pthread_once_t once_control = PTHREAD_ONCE_INIT;
176static int sEarlyInitState = pthread_once(&once_control, &early_egl_init);
177
Mathias Agopian518ec112011-05-13 16:21:08 -0700178// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800179
Mathias Agopian5b287a62011-05-16 18:58:55 -0700180egl_display_t* validate_display(EGLDisplay dpy) {
Eric Hassold3ede7c12011-03-23 15:59:00 -0700181 egl_display_t * const dp = get_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700182 if (!dp)
183 return setError(EGL_BAD_DISPLAY, (egl_display_t*)NULL);
184 if (!dp->isReady())
185 return setError(EGL_NOT_INITIALIZED, (egl_display_t*)NULL);
Eric Hassold3ede7c12011-03-23 15:59:00 -0700186
187 return dp;
188}
189
Mathias Agopian7773c432012-02-13 20:06:08 -0800190egl_connection_t* validate_display_config(EGLDisplay dpy, EGLConfig,
Mathias Agopian5b287a62011-05-16 18:58:55 -0700191 egl_display_t const*& dp) {
Eric Hassold3ede7c12011-03-23 15:59:00 -0700192 dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700193 if (!dp)
194 return (egl_connection_t*) NULL;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195
Mathias Agopianada798b2012-02-13 17:09:30 -0800196 egl_connection_t* const cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197 if (cnx->dso == 0) {
198 return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL);
199 }
200 return cnx;
201}
202
Mathias Agopian518ec112011-05-13 16:21:08 -0700203// ----------------------------------------------------------------------------
204
Mathias Agopian48d438d2012-01-28 21:44:00 -0800205const GLubyte * egl_get_string_for_current_context(GLenum name) {
206 // NOTE: returning NULL here will fall-back to the default
207 // implementation.
208
209 EGLContext context = egl_tls_t::getContext();
210 if (context == EGL_NO_CONTEXT)
211 return NULL;
212
213 egl_context_t const * const c = get_context(context);
214 if (c == NULL) // this should never happen, by construction
215 return NULL;
216
217 if (name != GL_EXTENSIONS)
218 return NULL;
219
220 return (const GLubyte *)c->gl_extensions.string();
221}
222
223// ----------------------------------------------------------------------------
224
Mathias Agopian923c6612009-08-17 18:07:06 -0700225// this mutex protects:
Mathias Agopiana69e0ed2009-08-24 21:47:13 -0700226// d->disp[]
Mathias Agopian923c6612009-08-17 18:07:06 -0700227// egl_init_drivers_locked()
228//
Mathias Agopian518ec112011-05-13 16:21:08 -0700229static EGLBoolean egl_init_drivers_locked() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800230 if (sEarlyInitState) {
Mathias Agopian923c6612009-08-17 18:07:06 -0700231 // initialized by static ctor. should be set here.
232 return EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800233 }
234
Mathias Agopiande586972009-05-28 17:39:03 -0700235 // get our driver loader
Mathias Agopian923c6612009-08-17 18:07:06 -0700236 Loader& loader(Loader::getInstance());
Mathias Agopian518ec112011-05-13 16:21:08 -0700237
Mathias Agopianada798b2012-02-13 17:09:30 -0800238 // dynamically load our EGL implementation
239 egl_connection_t* cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800240 if (cnx->dso == 0) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800241 cnx->hooks[egl_connection_t::GLESv1_INDEX] =
242 &gHooks[egl_connection_t::GLESv1_INDEX];
243 cnx->hooks[egl_connection_t::GLESv2_INDEX] =
244 &gHooks[egl_connection_t::GLESv2_INDEX];
Mathias Agopianada798b2012-02-13 17:09:30 -0800245 cnx->dso = loader.open(cnx);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800246 }
247
Mathias Agopianada798b2012-02-13 17:09:30 -0800248 return cnx->dso ? EGL_TRUE : EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800249}
250
Mathias Agopian518ec112011-05-13 16:21:08 -0700251static pthread_mutex_t sInitDriverMutex = PTHREAD_MUTEX_INITIALIZER;
252
253EGLBoolean egl_init_drivers() {
Mathias Agopian923c6612009-08-17 18:07:06 -0700254 EGLBoolean res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700255 pthread_mutex_lock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700256 res = egl_init_drivers_locked();
Mathias Agopian518ec112011-05-13 16:21:08 -0700257 pthread_mutex_unlock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700258 return res;
259}
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700260
Mathias Agopian1cadb252011-05-23 17:26:14 -0700261void gl_unimplemented() {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000262 ALOGE("called unimplemented OpenGL ES API");
Mathias Agopian1cadb252011-05-23 17:26:14 -0700263}
264
Mathias Agopian48d438d2012-01-28 21:44:00 -0800265void gl_noop() {
266}
267
Mathias Agopian1cadb252011-05-23 17:26:14 -0700268// ----------------------------------------------------------------------------
269
270#if USE_FAST_TLS_KEY
271
272// We have a dedicated TLS slot in bionic
273static inline gl_hooks_t const * volatile * get_tls_hooks() {
274 volatile void *tls_base = __get_tls();
275 gl_hooks_t const * volatile * tls_hooks =
276 reinterpret_cast<gl_hooks_t const * volatile *>(tls_base);
277 return tls_hooks;
278}
279
280void setGlThreadSpecific(gl_hooks_t const *value) {
281 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
282 tls_hooks[TLS_SLOT_OPENGL_API] = value;
283}
284
285gl_hooks_t const* getGlThreadSpecific() {
286 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
287 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API];
288 if (hooks) return hooks;
289 return &gHooksNoContext;
290}
291
292#else
293
294void setGlThreadSpecific(gl_hooks_t const *value) {
295 pthread_setspecific(gGLWrapperKey, value);
296}
297
298gl_hooks_t const* getGlThreadSpecific() {
299 gl_hooks_t const* hooks = static_cast<gl_hooks_t*>(pthread_getspecific(gGLWrapperKey));
300 if (hooks) return hooks;
301 return &gHooksNoContext;
302}
303
304#endif
305
306// ----------------------------------------------------------------------------
307// GL / EGL hooks
308// ----------------------------------------------------------------------------
309
310#undef GL_ENTRY
311#undef EGL_ENTRY
312#define GL_ENTRY(_r, _api, ...) #_api,
313#define EGL_ENTRY(_r, _api, ...) #_api,
314
315char const * const gl_names[] = {
316 #include "entries.in"
317 NULL
318};
319
320char const * const egl_names[] = {
321 #include "egl_entries.in"
322 NULL
323};
324
325#undef GL_ENTRY
326#undef EGL_ENTRY
327
328
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700329// ----------------------------------------------------------------------------
330}; // namespace android
331// ----------------------------------------------------------------------------
332