The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 17 | #include <ctype.h> |
Mathias Agopian | 11be99d | 2009-05-17 18:50:16 -0700 | [diff] [blame] | 18 | #include <stdlib.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | #include <string.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 20 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 21 | #include <hardware/gralloc.h> |
| 22 | #include <system/window.h> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | |
| 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 Guy | 0398575 | 2011-07-11 15:33:51 -0700 | [diff] [blame] | 34 | #include <utils/CallStack.h> |
Mathias Agopian | 3944eab | 2010-08-02 17:34:32 -0700 | [diff] [blame] | 35 | #include <utils/String8.h> |
Mathias Agopian | 4a34e88 | 2009-08-21 02:18:25 -0700 | [diff] [blame] | 36 | |
Mathias Agopian | f56a960 | 2011-05-23 17:26:14 -0700 | [diff] [blame] | 37 | #include "egldefs.h" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 38 | #include "egl_impl.h" |
David Li | ce30eb8 | 2011-03-28 10:39:28 -0700 | [diff] [blame] | 39 | #include "egl_tls.h" |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 40 | #include "glesv2dbg.h" |
| 41 | #include "hooks.h" |
| 42 | #include "Loader.h" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 43 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 44 | #include "egl_display.h" |
| 45 | #include "egl_object.h" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 46 | |
| 47 | // ---------------------------------------------------------------------------- |
| 48 | namespace android { |
| 49 | // ---------------------------------------------------------------------------- |
| 50 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 51 | egl_connection_t gEGLImpl[IMPL_NUM_IMPLEMENTATIONS]; |
| 52 | gl_hooks_t gHooks[2][IMPL_NUM_IMPLEMENTATIONS]; |
| 53 | gl_hooks_t gHooksNoContext; |
| 54 | pthread_key_t gGLWrapperKey = -1; |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 55 | |
| 56 | // ---------------------------------------------------------------------------- |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 57 | |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 58 | #if EGL_TRACE |
| 59 | |
| 60 | EGLAPI pthread_key_t gGLTraceKey = -1; |
| 61 | |
| 62 | // ---------------------------------------------------------------------------- |
| 63 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 64 | int gEGLDebugLevel; |
| 65 | |
| 66 | static int sEGLTraceLevel; |
| 67 | static int sEGLApplicationTraceLevel; |
| 68 | |
| 69 | extern gl_hooks_t gHooksTrace; |
| 70 | extern gl_hooks_t gHooksDebug; |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 71 | |
| 72 | static inline void setGlTraceThreadSpecific(gl_hooks_t const *value) { |
| 73 | pthread_setspecific(gGLTraceKey, value); |
| 74 | } |
| 75 | |
| 76 | gl_hooks_t const* getGLTraceThreadSpecific() { |
| 77 | return static_cast<gl_hooks_t*>(pthread_getspecific(gGLTraceKey)); |
| 78 | } |
| 79 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 80 | void initEglTraceLevel() { |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 81 | char value[PROPERTY_VALUE_MAX]; |
| 82 | property_get("debug.egl.trace", value, "0"); |
| 83 | int propertyLevel = atoi(value); |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 84 | int applicationLevel = sEGLApplicationTraceLevel; |
| 85 | sEGLTraceLevel = propertyLevel > applicationLevel ? propertyLevel : applicationLevel; |
David Li | 27f130a | 2011-04-08 18:43:16 -0700 | [diff] [blame] | 86 | |
David Li | 28ca2ab | 2011-03-01 16:08:10 -0800 | [diff] [blame] | 87 | property_get("debug.egl.debug_proc", value, ""); |
| 88 | long pid = getpid(); |
| 89 | char procPath[128] = {}; |
| 90 | sprintf(procPath, "/proc/%ld/cmdline", pid); |
| 91 | FILE * file = fopen(procPath, "r"); |
| 92 | if (file) |
| 93 | { |
| 94 | char cmdline[256] = {}; |
| 95 | if (fgets(cmdline, sizeof(cmdline) - 1, file)) |
| 96 | { |
David Li | 28ca2ab | 2011-03-01 16:08:10 -0800 | [diff] [blame] | 97 | if (!strcmp(value, cmdline)) |
Mathias Agopian | 3b58322 | 2011-09-01 14:55:00 -0700 | [diff] [blame] | 98 | gEGLDebugLevel = 1; |
David Li | 27f130a | 2011-04-08 18:43:16 -0700 | [diff] [blame] | 99 | } |
David Li | 28ca2ab | 2011-03-01 16:08:10 -0800 | [diff] [blame] | 100 | fclose(file); |
| 101 | } |
David Li | 27f130a | 2011-04-08 18:43:16 -0700 | [diff] [blame] | 102 | |
Mathias Agopian | 3b58322 | 2011-09-01 14:55:00 -0700 | [diff] [blame] | 103 | if (gEGLDebugLevel > 0) |
David Li | 940c3f8 | 2011-03-10 19:07:42 -0800 | [diff] [blame] | 104 | { |
| 105 | property_get("debug.egl.debug_port", value, "5039"); |
David Li | 27f130a | 2011-04-08 18:43:16 -0700 | [diff] [blame] | 106 | const unsigned short port = (unsigned short)atoi(value); |
| 107 | property_get("debug.egl.debug_forceUseFile", value, "0"); |
| 108 | const bool forceUseFile = (bool)atoi(value); |
| 109 | property_get("debug.egl.debug_maxFileSize", value, "8"); |
| 110 | const unsigned int maxFileSize = atoi(value) << 20; |
| 111 | property_get("debug.egl.debug_filePath", value, "/data/local/tmp/dump.gles2dbg"); |
| 112 | StartDebugServer(port, forceUseFile, maxFileSize, value); |
David Li | 940c3f8 | 2011-03-10 19:07:42 -0800 | [diff] [blame] | 113 | } |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 116 | void setGLHooksThreadSpecific(gl_hooks_t const *value) { |
| 117 | if (sEGLTraceLevel > 0) { |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 118 | setGlTraceThreadSpecific(value); |
| 119 | setGlThreadSpecific(&gHooksTrace); |
Mathias Agopian | 3b58322 | 2011-09-01 14:55:00 -0700 | [diff] [blame] | 120 | } else if (gEGLDebugLevel > 0 && value != &gHooksNoContext) { |
David Li | 28ca2ab | 2011-03-01 16:08:10 -0800 | [diff] [blame] | 121 | setGlTraceThreadSpecific(value); |
| 122 | setGlThreadSpecific(&gHooksDebug); |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 123 | } else { |
| 124 | setGlThreadSpecific(value); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * Global entry point to allow applications to modify their own trace level. |
| 130 | * The effective trace level is the max of this level and the value of debug.egl.trace. |
| 131 | */ |
| 132 | extern "C" |
| 133 | void setGLTraceLevel(int level) { |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 134 | sEGLApplicationTraceLevel = level; |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | #else |
| 138 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 139 | void setGLHooksThreadSpecific(gl_hooks_t const *value) { |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 140 | setGlThreadSpecific(value); |
| 141 | } |
| 142 | |
| 143 | #endif |
| 144 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 145 | /*****************************************************************************/ |
| 146 | |
Mathias Agopian | 25b388c | 2010-09-23 16:38:38 -0700 | [diff] [blame] | 147 | static int gl_no_context() { |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 148 | if (egl_tls_t::logNoContextCall()) { |
Mathias Agopian | 997d107 | 2009-07-31 16:21:17 -0700 | [diff] [blame] | 149 | LOGE("call to OpenGL ES API with no current context " |
| 150 | "(logged once per thread)"); |
Mathias Agopian | 8ec2ff6 | 2011-09-06 17:24:05 -0700 | [diff] [blame] | 151 | char value[PROPERTY_VALUE_MAX]; |
| 152 | property_get("debug.egl.callstack", value, "0"); |
| 153 | if (atoi(value)) { |
| 154 | CallStack stack; |
| 155 | stack.update(); |
| 156 | stack.dump(); |
| 157 | } |
Mathias Agopian | 997d107 | 2009-07-31 16:21:17 -0700 | [diff] [blame] | 158 | } |
Mathias Agopian | 25b388c | 2010-09-23 16:38:38 -0700 | [diff] [blame] | 159 | return 0; |
Mathias Agopian | 5c6c5c7 | 2010-09-23 11:32:52 -0700 | [diff] [blame] | 160 | } |
| 161 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 162 | static void early_egl_init(void) |
| 163 | { |
| 164 | #if !USE_FAST_TLS_KEY |
| 165 | pthread_key_create(&gGLWrapperKey, NULL); |
| 166 | #endif |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 167 | #if EGL_TRACE |
| 168 | pthread_key_create(&gGLTraceKey, NULL); |
| 169 | initEglTraceLevel(); |
| 170 | #endif |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 171 | uint32_t addr = (uint32_t)((void*)gl_no_context); |
| 172 | android_memset32( |
Mathias Agopian | 6fc5699 | 2009-10-14 02:06:37 -0700 | [diff] [blame] | 173 | (uint32_t*)(void*)&gHooksNoContext, |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 174 | addr, |
Mathias Agopian | 6fc5699 | 2009-10-14 02:06:37 -0700 | [diff] [blame] | 175 | sizeof(gHooksNoContext)); |
Mathias Agopian | 5c6c5c7 | 2010-09-23 11:32:52 -0700 | [diff] [blame] | 176 | |
Jack Palevich | d4d0fb9 | 2010-10-26 15:21:24 -0700 | [diff] [blame] | 177 | setGLHooksThreadSpecific(&gHooksNoContext); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | static pthread_once_t once_control = PTHREAD_ONCE_INIT; |
| 181 | static int sEarlyInitState = pthread_once(&once_control, &early_egl_init); |
| 182 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 183 | // ---------------------------------------------------------------------------- |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 184 | |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 185 | egl_display_t* validate_display(EGLDisplay dpy) { |
Eric Hassold | 2a790ac | 2011-03-23 15:59:00 -0700 | [diff] [blame] | 186 | egl_display_t * const dp = get_display(dpy); |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 187 | if (!dp) |
| 188 | return setError(EGL_BAD_DISPLAY, (egl_display_t*)NULL); |
| 189 | if (!dp->isReady()) |
| 190 | return setError(EGL_NOT_INITIALIZED, (egl_display_t*)NULL); |
Eric Hassold | 2a790ac | 2011-03-23 15:59:00 -0700 | [diff] [blame] | 191 | |
| 192 | return dp; |
| 193 | } |
| 194 | |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 195 | egl_connection_t* validate_display_config(EGLDisplay dpy, EGLConfig config, |
| 196 | egl_display_t const*& dp) { |
Eric Hassold | 2a790ac | 2011-03-23 15:59:00 -0700 | [diff] [blame] | 197 | dp = validate_display(dpy); |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 198 | if (!dp) |
| 199 | return (egl_connection_t*) NULL; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 200 | |
Mathias Agopian | 3ad6c44 | 2010-07-26 21:14:59 -0700 | [diff] [blame] | 201 | if (intptr_t(config) >= dp->numTotalConfigs) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 202 | return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL); |
| 203 | } |
Mathias Agopian | 3ad6c44 | 2010-07-26 21:14:59 -0700 | [diff] [blame] | 204 | egl_connection_t* const cnx = &gEGLImpl[dp->configs[intptr_t(config)].impl]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 205 | if (cnx->dso == 0) { |
| 206 | return setError(EGL_BAD_CONFIG, (egl_connection_t*)NULL); |
| 207 | } |
| 208 | return cnx; |
| 209 | } |
| 210 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 211 | // ---------------------------------------------------------------------------- |
| 212 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 213 | EGLImageKHR egl_get_image_for_current_context(EGLImageKHR image) |
| 214 | { |
Mathias Agopian | 4a34e88 | 2009-08-21 02:18:25 -0700 | [diff] [blame] | 215 | ImageRef _i(image); |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 216 | if (!_i.get()) |
| 217 | return EGL_NO_IMAGE_KHR; |
| 218 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 219 | EGLContext context = egl_tls_t::getContext(); |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 220 | if (context == EGL_NO_CONTEXT || image == EGL_NO_IMAGE_KHR) |
| 221 | return EGL_NO_IMAGE_KHR; |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 222 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 223 | egl_context_t const * const c = get_context(context); |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 224 | if (c == NULL) // this should never happen |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 225 | return EGL_NO_IMAGE_KHR; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 226 | |
Mathias Agopian | f1e4e06 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 227 | // here we don't validate the context because if it's been marked for |
| 228 | // termination, this call should still succeed since it's internal to |
| 229 | // EGL. |
| 230 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 231 | egl_image_t const * const i = get_image(image); |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 232 | return i->images[c->impl]; |
| 233 | } |
| 234 | |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 235 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 236 | |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 237 | // this mutex protects: |
Mathias Agopian | 94263d7 | 2009-08-24 21:47:13 -0700 | [diff] [blame] | 238 | // d->disp[] |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 239 | // egl_init_drivers_locked() |
| 240 | // |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 241 | static EGLBoolean egl_init_drivers_locked() { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 242 | if (sEarlyInitState) { |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 243 | // initialized by static ctor. should be set here. |
| 244 | return EGL_FALSE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 245 | } |
| 246 | |
Mathias Agopian | 9d17c05 | 2009-05-28 17:39:03 -0700 | [diff] [blame] | 247 | // get our driver loader |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 248 | Loader& loader(Loader::getInstance()); |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 249 | |
| 250 | // dynamically load all our EGL implementations |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 251 | egl_connection_t* cnx; |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 252 | |
| 253 | cnx = &gEGLImpl[IMPL_SOFTWARE]; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 254 | if (cnx->dso == 0) { |
Mathias Agopian | 6fc5699 | 2009-10-14 02:06:37 -0700 | [diff] [blame] | 255 | cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_SOFTWARE]; |
| 256 | cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_SOFTWARE]; |
| 257 | cnx->dso = loader.open(EGL_DEFAULT_DISPLAY, 0, cnx); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | cnx = &gEGLImpl[IMPL_HARDWARE]; |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 261 | if (cnx->dso == 0) { |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 262 | char value[PROPERTY_VALUE_MAX]; |
| 263 | property_get("debug.egl.hw", value, "1"); |
| 264 | if (atoi(value) != 0) { |
Mathias Agopian | 6fc5699 | 2009-10-14 02:06:37 -0700 | [diff] [blame] | 265 | cnx->hooks[GLESv1_INDEX] = &gHooks[GLESv1_INDEX][IMPL_HARDWARE]; |
| 266 | cnx->hooks[GLESv2_INDEX] = &gHooks[GLESv2_INDEX][IMPL_HARDWARE]; |
| 267 | cnx->dso = loader.open(EGL_DEFAULT_DISPLAY, 1, cnx); |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 268 | } else { |
| 269 | LOGD("3D hardware acceleration is disabled"); |
| 270 | } |
| 271 | } |
Mathias Agopian | 94263d7 | 2009-08-24 21:47:13 -0700 | [diff] [blame] | 272 | |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 273 | if (!gEGLImpl[IMPL_SOFTWARE].dso && !gEGLImpl[IMPL_HARDWARE].dso) { |
| 274 | return EGL_FALSE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 277 | return EGL_TRUE; |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 278 | } |
| 279 | |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 280 | static pthread_mutex_t sInitDriverMutex = PTHREAD_MUTEX_INITIALIZER; |
| 281 | |
| 282 | EGLBoolean egl_init_drivers() { |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 283 | EGLBoolean res; |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 284 | pthread_mutex_lock(&sInitDriverMutex); |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 285 | res = egl_init_drivers_locked(); |
Mathias Agopian | 7adf4ef | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 286 | pthread_mutex_unlock(&sInitDriverMutex); |
Mathias Agopian | dcebf6f | 2009-08-17 18:07:06 -0700 | [diff] [blame] | 287 | return res; |
| 288 | } |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 289 | |
Mathias Agopian | f56a960 | 2011-05-23 17:26:14 -0700 | [diff] [blame] | 290 | void gl_unimplemented() { |
| 291 | LOGE("called unimplemented OpenGL ES API"); |
| 292 | } |
| 293 | |
| 294 | // ---------------------------------------------------------------------------- |
| 295 | |
| 296 | #if USE_FAST_TLS_KEY |
| 297 | |
| 298 | // We have a dedicated TLS slot in bionic |
| 299 | static 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 | |
| 306 | void 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 | |
| 311 | gl_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 | |
| 320 | void setGlThreadSpecific(gl_hooks_t const *value) { |
| 321 | pthread_setspecific(gGLWrapperKey, value); |
| 322 | } |
| 323 | |
| 324 | gl_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 | |
| 341 | char const * const gl_names[] = { |
| 342 | #include "entries.in" |
| 343 | NULL |
| 344 | }; |
| 345 | |
| 346 | char const * const egl_names[] = { |
| 347 | #include "egl_entries.in" |
| 348 | NULL |
| 349 | }; |
| 350 | |
| 351 | #undef GL_ENTRY |
| 352 | #undef EGL_ENTRY |
| 353 | |
| 354 | |
Mathias Agopian | 1473f46 | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 355 | // ---------------------------------------------------------------------------- |
| 356 | }; // namespace android |
| 357 | // ---------------------------------------------------------------------------- |
| 358 | |