blob: 5593140cfb443a853d2bb37453025255c843b17d [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 Agopian5b287a62011-05-16 18:58:55 -0700190egl_connection_t* validate_display_config(EGLDisplay dpy, EGLConfig config,
191 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 Agopiancee79392010-07-26 21:14:59 -0700196 if (intptr_t(config) >= dp->numTotalConfigs) {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800197 return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL);
198 }
Mathias Agopianada798b2012-02-13 17:09:30 -0800199 egl_connection_t* const cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800200 if (cnx->dso == 0) {
201 return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL);
202 }
203 return cnx;
204}
205
Mathias Agopian518ec112011-05-13 16:21:08 -0700206// ----------------------------------------------------------------------------
207
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700208EGLImageKHR egl_get_image_for_current_context(EGLImageKHR image)
209{
Mathias Agopian518ec112011-05-13 16:21:08 -0700210 EGLContext context = egl_tls_t::getContext();
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700211 if (context == EGL_NO_CONTEXT || image == EGL_NO_IMAGE_KHR)
212 return EGL_NO_IMAGE_KHR;
Mathias Agopian5b287a62011-05-16 18:58:55 -0700213
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700214 egl_context_t const * const c = get_context(context);
Mathias Agopianf0480de2011-11-13 20:50:07 -0800215 if (c == NULL) // this should never happen, by construction
216 return EGL_NO_IMAGE_KHR;
217
218 egl_display_t* display = egl_display_t::get(c->dpy);
219 if (display == NULL) // this should never happen, by construction
220 return EGL_NO_IMAGE_KHR;
221
222 ImageRef _i(display, image);
223 if (!_i.get())
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700224 return EGL_NO_IMAGE_KHR;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800225
Mathias Agopian5b287a62011-05-16 18:58:55 -0700226 // here we don't validate the context because if it's been marked for
227 // termination, this call should still succeed since it's internal to
228 // EGL.
229
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700230 egl_image_t const * const i = get_image(image);
Mathias Agopianada798b2012-02-13 17:09:30 -0800231 return i->image;
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700232}
233
Mathias Agopian923c6612009-08-17 18:07:06 -0700234// ----------------------------------------------------------------------------
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700235
Mathias Agopian48d438d2012-01-28 21:44:00 -0800236const GLubyte * egl_get_string_for_current_context(GLenum name) {
237 // NOTE: returning NULL here will fall-back to the default
238 // implementation.
239
240 EGLContext context = egl_tls_t::getContext();
241 if (context == EGL_NO_CONTEXT)
242 return NULL;
243
244 egl_context_t const * const c = get_context(context);
245 if (c == NULL) // this should never happen, by construction
246 return NULL;
247
248 if (name != GL_EXTENSIONS)
249 return NULL;
250
251 return (const GLubyte *)c->gl_extensions.string();
252}
253
254// ----------------------------------------------------------------------------
255
Mathias Agopian923c6612009-08-17 18:07:06 -0700256// this mutex protects:
Mathias Agopiana69e0ed2009-08-24 21:47:13 -0700257// d->disp[]
Mathias Agopian923c6612009-08-17 18:07:06 -0700258// egl_init_drivers_locked()
259//
Mathias Agopian518ec112011-05-13 16:21:08 -0700260static EGLBoolean egl_init_drivers_locked() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800261 if (sEarlyInitState) {
Mathias Agopian923c6612009-08-17 18:07:06 -0700262 // initialized by static ctor. should be set here.
263 return EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800264 }
265
Mathias Agopiande586972009-05-28 17:39:03 -0700266 // get our driver loader
Mathias Agopian923c6612009-08-17 18:07:06 -0700267 Loader& loader(Loader::getInstance());
Mathias Agopian518ec112011-05-13 16:21:08 -0700268
Mathias Agopianada798b2012-02-13 17:09:30 -0800269 // dynamically load our EGL implementation
270 egl_connection_t* cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800271 if (cnx->dso == 0) {
Mathias Agopianada798b2012-02-13 17:09:30 -0800272 cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX];
273 cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX];
274 cnx->dso = loader.open(cnx);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800275 }
276
Mathias Agopianada798b2012-02-13 17:09:30 -0800277 return cnx->dso ? EGL_TRUE : EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800278}
279
Mathias Agopian518ec112011-05-13 16:21:08 -0700280static pthread_mutex_t sInitDriverMutex = PTHREAD_MUTEX_INITIALIZER;
281
282EGLBoolean egl_init_drivers() {
Mathias Agopian923c6612009-08-17 18:07:06 -0700283 EGLBoolean res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700284 pthread_mutex_lock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700285 res = egl_init_drivers_locked();
Mathias Agopian518ec112011-05-13 16:21:08 -0700286 pthread_mutex_unlock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700287 return res;
288}
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700289
Mathias Agopian1cadb252011-05-23 17:26:14 -0700290void gl_unimplemented() {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000291 ALOGE("called unimplemented OpenGL ES API");
Mathias Agopian1cadb252011-05-23 17:26:14 -0700292}
293
Mathias Agopian48d438d2012-01-28 21:44:00 -0800294void gl_noop() {
295}
296
Mathias Agopian1cadb252011-05-23 17:26:14 -0700297// ----------------------------------------------------------------------------
298
299#if USE_FAST_TLS_KEY
300
301// We have a dedicated TLS slot in bionic
302static inline gl_hooks_t const * volatile * get_tls_hooks() {
303 volatile void *tls_base = __get_tls();
304 gl_hooks_t const * volatile * tls_hooks =
305 reinterpret_cast<gl_hooks_t const * volatile *>(tls_base);
306 return tls_hooks;
307}
308
309void setGlThreadSpecific(gl_hooks_t const *value) {
310 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
311 tls_hooks[TLS_SLOT_OPENGL_API] = value;
312}
313
314gl_hooks_t const* getGlThreadSpecific() {
315 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
316 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API];
317 if (hooks) return hooks;
318 return &gHooksNoContext;
319}
320
321#else
322
323void setGlThreadSpecific(gl_hooks_t const *value) {
324 pthread_setspecific(gGLWrapperKey, value);
325}
326
327gl_hooks_t const* getGlThreadSpecific() {
328 gl_hooks_t const* hooks = static_cast<gl_hooks_t*>(pthread_getspecific(gGLWrapperKey));
329 if (hooks) return hooks;
330 return &gHooksNoContext;
331}
332
333#endif
334
335// ----------------------------------------------------------------------------
336// GL / EGL hooks
337// ----------------------------------------------------------------------------
338
339#undef GL_ENTRY
340#undef EGL_ENTRY
341#define GL_ENTRY(_r, _api, ...) #_api,
342#define EGL_ENTRY(_r, _api, ...) #_api,
343
344char const * const gl_names[] = {
345 #include "entries.in"
346 NULL
347};
348
349char const * const egl_names[] = {
350 #include "egl_entries.in"
351 NULL
352};
353
354#undef GL_ENTRY
355#undef EGL_ENTRY
356
357
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700358// ----------------------------------------------------------------------------
359}; // namespace android
360// ----------------------------------------------------------------------------
361