blob: e8a14d8a7b92b17207ec32045158a036dc88865f [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
Siva Velusamyb13c78f2012-03-09 14:51:28 -080064/**
65 * There are two different tracing methods:
66 * 1. libs/EGL/trace.cpp: Traces all functions to logcat.
67 * To enable:
68 * - set system property "debug.egl.trace" to 1 to trace all apps.
69 * - or call setGLTraceLevel(1) from an app to enable tracing for that app.
70 * 2. libs/GLES_trace: Traces all functions via protobuf to host.
71 * To enable:
72 * - set system property "debug.egl.debug_proc" to the application name.
73 * - or call setGLDebugLevel(1) from the app.
74 */
Mathias Agopian518ec112011-05-13 16:21:08 -070075static int sEGLTraceLevel;
76static int sEGLApplicationTraceLevel;
77
Siva Velusamyb13c78f2012-03-09 14:51:28 -080078int gEGLDebugLevel;
79static int sEGLApplicationDebugLevel;
80
Mathias Agopian518ec112011-05-13 16:21:08 -070081extern gl_hooks_t gHooksTrace;
Jack Palevicha2dd6cf2010-10-26 15:21:24 -070082
83static inline void setGlTraceThreadSpecific(gl_hooks_t const *value) {
84 pthread_setspecific(gGLTraceKey, value);
85}
86
87gl_hooks_t const* getGLTraceThreadSpecific() {
88 return static_cast<gl_hooks_t*>(pthread_getspecific(gGLTraceKey));
89}
90
Mathias Agopian518ec112011-05-13 16:21:08 -070091void initEglTraceLevel() {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -070092 char value[PROPERTY_VALUE_MAX];
93 property_get("debug.egl.trace", value, "0");
94 int propertyLevel = atoi(value);
Mathias Agopian518ec112011-05-13 16:21:08 -070095 int applicationLevel = sEGLApplicationTraceLevel;
96 sEGLTraceLevel = propertyLevel > applicationLevel ? propertyLevel : applicationLevel;
Siva Velusamyb13c78f2012-03-09 14:51:28 -080097}
David Li499c6f02011-04-08 18:43:16 -070098
Siva Velusamyb13c78f2012-03-09 14:51:28 -080099void initEglDebugLevel() {
100 int propertyLevel = 0;
101 char value[PROPERTY_VALUE_MAX];
David Li2f5a6552011-03-01 16:08:10 -0800102 property_get("debug.egl.debug_proc", value, "");
Siva Velusamyb13c78f2012-03-09 14:51:28 -0800103 if (strlen(value) > 0) {
104 long pid = getpid();
105 char procPath[128] = {};
106 sprintf(procPath, "/proc/%ld/cmdline", pid);
107 FILE * file = fopen(procPath, "r");
108 if (file) {
109 char cmdline[256] = {};
110 if (fgets(cmdline, sizeof(cmdline) - 1, file)) {
111 if (!strncmp(value, cmdline, strlen(value))) {
112 // set EGL debug if the "debug.egl.debug_proc" property
113 // matches the prefix of this application's command line
114 propertyLevel = 1;
115 }
Siva Velusamy93a826f2011-12-14 12:19:56 -0800116 }
Siva Velusamyb13c78f2012-03-09 14:51:28 -0800117 fclose(file);
David Li499c6f02011-04-08 18:43:16 -0700118 }
David Li2f5a6552011-03-01 16:08:10 -0800119 }
David Li499c6f02011-04-08 18:43:16 -0700120
Siva Velusamyb13c78f2012-03-09 14:51:28 -0800121 gEGLDebugLevel = propertyLevel || sEGLApplicationDebugLevel;
Siva Velusamy0469dd62011-11-30 15:05:37 -0800122 if (gEGLDebugLevel > 0) {
123 GLTrace_start();
David Li85f33a72011-03-10 19:07:42 -0800124 }
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700125}
126
Mathias Agopian518ec112011-05-13 16:21:08 -0700127void setGLHooksThreadSpecific(gl_hooks_t const *value) {
128 if (sEGLTraceLevel > 0) {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700129 setGlTraceThreadSpecific(value);
130 setGlThreadSpecific(&gHooksTrace);
Mathias Agopianccfa5c32011-09-01 14:55:00 -0700131 } else if (gEGLDebugLevel > 0 && value != &gHooksNoContext) {
David Li2f5a6552011-03-01 16:08:10 -0800132 setGlTraceThreadSpecific(value);
Siva Velusamy0469dd62011-11-30 15:05:37 -0800133 setGlThreadSpecific(GLTrace_getGLHooks());
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700134 } else {
135 setGlThreadSpecific(value);
136 }
137}
138
139/*
140 * Global entry point to allow applications to modify their own trace level.
141 * The effective trace level is the max of this level and the value of debug.egl.trace.
142 */
143extern "C"
144void setGLTraceLevel(int level) {
Mathias Agopian518ec112011-05-13 16:21:08 -0700145 sEGLApplicationTraceLevel = level;
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700146}
147
Siva Velusamyb13c78f2012-03-09 14:51:28 -0800148/*
149 * Global entry point to allow applications to modify their own debug level.
150 * Debugging is enabled if either the application requested it, or if the system property
151 * matches the application's name.
152 */
153void EGLAPI setGLDebugLevel(int level) {
154 sEGLApplicationDebugLevel = level;
155}
156
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700157#else
158
Mathias Agopian518ec112011-05-13 16:21:08 -0700159void setGLHooksThreadSpecific(gl_hooks_t const *value) {
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700160 setGlThreadSpecific(value);
161}
162
163#endif
164
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800165/*****************************************************************************/
166
Mathias Agopian6f087122010-09-23 16:38:38 -0700167static int gl_no_context() {
Mathias Agopian518ec112011-05-13 16:21:08 -0700168 if (egl_tls_t::logNoContextCall()) {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000169 ALOGE("call to OpenGL ES API with no current context "
Mathias Agopiand274eae2009-07-31 16:21:17 -0700170 "(logged once per thread)");
Mathias Agopianecfe0912011-09-06 17:24:05 -0700171 char value[PROPERTY_VALUE_MAX];
172 property_get("debug.egl.callstack", value, "0");
173 if (atoi(value)) {
174 CallStack stack;
175 stack.update();
176 stack.dump();
177 }
Mathias Agopiand274eae2009-07-31 16:21:17 -0700178 }
Mathias Agopian6f087122010-09-23 16:38:38 -0700179 return 0;
Mathias Agopian05c53112010-09-23 11:32:52 -0700180}
181
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800182static void early_egl_init(void)
183{
184#if !USE_FAST_TLS_KEY
185 pthread_key_create(&gGLWrapperKey, NULL);
186#endif
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700187#if EGL_TRACE
188 pthread_key_create(&gGLTraceKey, NULL);
189 initEglTraceLevel();
Siva Velusamyb13c78f2012-03-09 14:51:28 -0800190 initEglDebugLevel();
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700191#endif
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800192 uint32_t addr = (uint32_t)((void*)gl_no_context);
193 android_memset32(
Mathias Agopian618fa102009-10-14 02:06:37 -0700194 (uint32_t*)(void*)&gHooksNoContext,
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195 addr,
Mathias Agopian618fa102009-10-14 02:06:37 -0700196 sizeof(gHooksNoContext));
Mathias Agopian05c53112010-09-23 11:32:52 -0700197
Jack Palevicha2dd6cf2010-10-26 15:21:24 -0700198 setGLHooksThreadSpecific(&gHooksNoContext);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800199}
200
201static pthread_once_t once_control = PTHREAD_ONCE_INIT;
202static int sEarlyInitState = pthread_once(&once_control, &early_egl_init);
203
Mathias Agopian518ec112011-05-13 16:21:08 -0700204// ----------------------------------------------------------------------------
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800205
Mathias Agopian5b287a62011-05-16 18:58:55 -0700206egl_display_t* validate_display(EGLDisplay dpy) {
Eric Hassold3ede7c12011-03-23 15:59:00 -0700207 egl_display_t * const dp = get_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700208 if (!dp)
209 return setError(EGL_BAD_DISPLAY, (egl_display_t*)NULL);
210 if (!dp->isReady())
211 return setError(EGL_NOT_INITIALIZED, (egl_display_t*)NULL);
Eric Hassold3ede7c12011-03-23 15:59:00 -0700212
213 return dp;
214}
215
Mathias Agopian7773c432012-02-13 20:06:08 -0800216egl_connection_t* validate_display_config(EGLDisplay dpy, EGLConfig,
Mathias Agopian5b287a62011-05-16 18:58:55 -0700217 egl_display_t const*& dp) {
Eric Hassold3ede7c12011-03-23 15:59:00 -0700218 dp = validate_display(dpy);
Mathias Agopian5b287a62011-05-16 18:58:55 -0700219 if (!dp)
220 return (egl_connection_t*) NULL;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800221
Mathias Agopianada798b2012-02-13 17:09:30 -0800222 egl_connection_t* const cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800223 if (cnx->dso == 0) {
224 return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL);
225 }
226 return cnx;
227}
228
Mathias Agopian518ec112011-05-13 16:21:08 -0700229// ----------------------------------------------------------------------------
230
Mathias Agopian48d438d2012-01-28 21:44:00 -0800231const GLubyte * egl_get_string_for_current_context(GLenum name) {
232 // NOTE: returning NULL here will fall-back to the default
233 // implementation.
234
235 EGLContext context = egl_tls_t::getContext();
236 if (context == EGL_NO_CONTEXT)
237 return NULL;
238
239 egl_context_t const * const c = get_context(context);
240 if (c == NULL) // this should never happen, by construction
241 return NULL;
242
243 if (name != GL_EXTENSIONS)
244 return NULL;
245
246 return (const GLubyte *)c->gl_extensions.string();
247}
248
249// ----------------------------------------------------------------------------
250
Mathias Agopian923c6612009-08-17 18:07:06 -0700251// this mutex protects:
Mathias Agopiana69e0ed2009-08-24 21:47:13 -0700252// d->disp[]
Mathias Agopian923c6612009-08-17 18:07:06 -0700253// egl_init_drivers_locked()
254//
Mathias Agopian518ec112011-05-13 16:21:08 -0700255static EGLBoolean egl_init_drivers_locked() {
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800256 if (sEarlyInitState) {
Mathias Agopian923c6612009-08-17 18:07:06 -0700257 // initialized by static ctor. should be set here.
258 return EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800259 }
260
Mathias Agopiande586972009-05-28 17:39:03 -0700261 // get our driver loader
Mathias Agopian923c6612009-08-17 18:07:06 -0700262 Loader& loader(Loader::getInstance());
Mathias Agopian518ec112011-05-13 16:21:08 -0700263
Mathias Agopianada798b2012-02-13 17:09:30 -0800264 // dynamically load our EGL implementation
265 egl_connection_t* cnx = &gEGLImpl;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800266 if (cnx->dso == 0) {
Mathias Agopian7773c432012-02-13 20:06:08 -0800267 cnx->hooks[egl_connection_t::GLESv1_INDEX] =
268 &gHooks[egl_connection_t::GLESv1_INDEX];
269 cnx->hooks[egl_connection_t::GLESv2_INDEX] =
270 &gHooks[egl_connection_t::GLESv2_INDEX];
Mathias Agopianada798b2012-02-13 17:09:30 -0800271 cnx->dso = loader.open(cnx);
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800272 }
273
Mathias Agopianada798b2012-02-13 17:09:30 -0800274 return cnx->dso ? EGL_TRUE : EGL_FALSE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800275}
276
Mathias Agopian518ec112011-05-13 16:21:08 -0700277static pthread_mutex_t sInitDriverMutex = PTHREAD_MUTEX_INITIALIZER;
278
279EGLBoolean egl_init_drivers() {
Mathias Agopian923c6612009-08-17 18:07:06 -0700280 EGLBoolean res;
Mathias Agopian518ec112011-05-13 16:21:08 -0700281 pthread_mutex_lock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700282 res = egl_init_drivers_locked();
Mathias Agopian518ec112011-05-13 16:21:08 -0700283 pthread_mutex_unlock(&sInitDriverMutex);
Mathias Agopian923c6612009-08-17 18:07:06 -0700284 return res;
285}
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700286
Mathias Agopian1cadb252011-05-23 17:26:14 -0700287void gl_unimplemented() {
Steve Blocke6f43dd2012-01-06 19:20:56 +0000288 ALOGE("called unimplemented OpenGL ES API");
Mathias Agopian1cadb252011-05-23 17:26:14 -0700289}
290
Mathias Agopian48d438d2012-01-28 21:44:00 -0800291void gl_noop() {
292}
293
Mathias Agopian1cadb252011-05-23 17:26:14 -0700294// ----------------------------------------------------------------------------
295
296#if USE_FAST_TLS_KEY
297
298// We have a dedicated TLS slot in bionic
299static inline gl_hooks_t const * volatile * get_tls_hooks() {
300 volatile void *tls_base = __get_tls();
301 gl_hooks_t const * volatile * tls_hooks =
302 reinterpret_cast<gl_hooks_t const * volatile *>(tls_base);
303 return tls_hooks;
304}
305
306void setGlThreadSpecific(gl_hooks_t const *value) {
307 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
308 tls_hooks[TLS_SLOT_OPENGL_API] = value;
309}
310
311gl_hooks_t const* getGlThreadSpecific() {
312 gl_hooks_t const * volatile * tls_hooks = get_tls_hooks();
313 gl_hooks_t const* hooks = tls_hooks[TLS_SLOT_OPENGL_API];
314 if (hooks) return hooks;
315 return &gHooksNoContext;
316}
317
318#else
319
320void setGlThreadSpecific(gl_hooks_t const *value) {
321 pthread_setspecific(gGLWrapperKey, value);
322}
323
324gl_hooks_t const* getGlThreadSpecific() {
325 gl_hooks_t const* hooks = static_cast<gl_hooks_t*>(pthread_getspecific(gGLWrapperKey));
326 if (hooks) return hooks;
327 return &gHooksNoContext;
328}
329
330#endif
331
332// ----------------------------------------------------------------------------
333// GL / EGL hooks
334// ----------------------------------------------------------------------------
335
336#undef GL_ENTRY
337#undef EGL_ENTRY
338#define GL_ENTRY(_r, _api, ...) #_api,
339#define EGL_ENTRY(_r, _api, ...) #_api,
340
341char const * const gl_names[] = {
342 #include "entries.in"
343 NULL
344};
345
346char const * const egl_names[] = {
347 #include "egl_entries.in"
348 NULL
349};
350
351#undef GL_ENTRY
352#undef EGL_ENTRY
353
354
Mathias Agopian076b1cc2009-04-10 14:24:30 -0700355// ----------------------------------------------------------------------------
356}; // namespace android
357// ----------------------------------------------------------------------------
358