Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 1 | /* |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 2 | ** Copyright 2007, The Android Open Source Project |
| 3 | ** |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 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 |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 7 | ** |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 8 | ** http://www.apache.org/licenses/LICENSE-2.0 |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 9 | ** |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 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 |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 14 | ** limitations under the License. |
| 15 | */ |
| 16 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 17 | #define __STDC_LIMIT_MACROS 1 |
Jesse Hall | 1508ae6 | 2017-01-19 17:43:26 -0800 | [diff] [blame] | 18 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 19 | |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 20 | #include <string.h> |
| 21 | |
Mathias Agopian | 39c24a2 | 2013-04-04 23:17:56 -0700 | [diff] [blame] | 22 | #include "../egl_impl.h" |
| 23 | |
Jamie Gennis | aca51c0 | 2011-11-03 17:42:43 -0700 | [diff] [blame] | 24 | #include "egl_cache.h" |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 25 | #include "egl_display.h" |
| 26 | #include "egl_object.h" |
| 27 | #include "egl_tls.h" |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 28 | #include "Loader.h" |
Mathias Agopian | 7db993a | 2012-03-25 00:49:46 -0700 | [diff] [blame] | 29 | #include <cutils/properties.h> |
Jesse Hall | 1508ae6 | 2017-01-19 17:43:26 -0800 | [diff] [blame] | 30 | #include <utils/Trace.h> |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 31 | |
| 32 | // ---------------------------------------------------------------------------- |
| 33 | namespace android { |
| 34 | // ---------------------------------------------------------------------------- |
| 35 | |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 36 | static char const * const sVendorString = "Android"; |
| 37 | static char const * const sVersionString = "1.4 Android META-EGL"; |
Mathias Agopian | cc2b156 | 2012-05-21 14:01:37 -0700 | [diff] [blame] | 38 | static char const * const sClientApiString = "OpenGL_ES"; |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 39 | |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 40 | extern char const * const gBuiltinExtensionString; |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 41 | extern char const * const gExtensionString; |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 42 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 43 | extern void setGLHooksThreadSpecific(gl_hooks_t const *value); |
| 44 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 45 | // ---------------------------------------------------------------------------- |
| 46 | |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 47 | static bool findExtension(const char* exts, const char* name, size_t nameLen) { |
| 48 | if (exts) { |
Kalle Raita | 7804aa2 | 2016-04-18 16:03:37 -0700 | [diff] [blame] | 49 | for (const char* match = strstr(exts, name); match; match = strstr(match + nameLen, name)) { |
| 50 | if (match[nameLen] == '\0' || match[nameLen] == ' ') { |
| 51 | return true; |
| 52 | } |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | return false; |
| 56 | } |
| 57 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 58 | egl_display_t egl_display_t::sDisplay[NUM_DISPLAYS]; |
| 59 | |
| 60 | egl_display_t::egl_display_t() : |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 61 | magic('_dpy'), finishOnSwap(false), traceGpuCompletion(false), refs(0), eglIsInitialized(false) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | egl_display_t::~egl_display_t() { |
| 65 | magic = 0; |
Jamie Gennis | 7660108 | 2011-11-06 14:14:33 -0800 | [diff] [blame] | 66 | egl_cache_t::get()->terminate(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | egl_display_t* egl_display_t::get(EGLDisplay dpy) { |
| 70 | uintptr_t index = uintptr_t(dpy)-1U; |
Jesse Hall | d6e9946 | 2016-09-28 11:26:57 -0700 | [diff] [blame] | 71 | if (index >= NUM_DISPLAYS || !sDisplay[index].isValid()) { |
| 72 | return nullptr; |
| 73 | } |
| 74 | return &sDisplay[index]; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | void egl_display_t::addObject(egl_object_t* object) { |
| 78 | Mutex::Autolock _l(lock); |
| 79 | objects.add(object); |
| 80 | } |
| 81 | |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 82 | void egl_display_t::removeObject(egl_object_t* object) { |
| 83 | Mutex::Autolock _l(lock); |
| 84 | objects.remove(object); |
| 85 | } |
| 86 | |
Mathias Agopian | f0480de | 2011-11-13 20:50:07 -0800 | [diff] [blame] | 87 | bool egl_display_t::getObject(egl_object_t* object) const { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 88 | Mutex::Autolock _l(lock); |
| 89 | if (objects.indexOf(object) >= 0) { |
Mathias Agopian | f0480de | 2011-11-13 20:50:07 -0800 | [diff] [blame] | 90 | if (object->getDisplay() == this) { |
| 91 | object->incRef(); |
| 92 | return true; |
| 93 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 94 | } |
| 95 | return false; |
| 96 | } |
| 97 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 98 | EGLDisplay egl_display_t::getFromNativeDisplay(EGLNativeDisplayType disp) { |
| 99 | if (uintptr_t(disp) >= NUM_DISPLAYS) |
| 100 | return NULL; |
| 101 | |
| 102 | return sDisplay[uintptr_t(disp)].getDisplay(disp); |
| 103 | } |
| 104 | |
| 105 | EGLDisplay egl_display_t::getDisplay(EGLNativeDisplayType display) { |
| 106 | |
| 107 | Mutex::Autolock _l(lock); |
Jesse Hall | 1508ae6 | 2017-01-19 17:43:26 -0800 | [diff] [blame] | 108 | ATRACE_CALL(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 109 | |
| 110 | // get our driver loader |
| 111 | Loader& loader(Loader::getInstance()); |
| 112 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 113 | egl_connection_t* const cnx = &gEGLImpl; |
| 114 | if (cnx->dso && disp.dpy == EGL_NO_DISPLAY) { |
| 115 | EGLDisplay dpy = cnx->egl.eglGetDisplay(display); |
| 116 | disp.dpy = dpy; |
| 117 | if (dpy == EGL_NO_DISPLAY) { |
| 118 | loader.close(cnx->dso); |
| 119 | cnx->dso = NULL; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | |
| 123 | return EGLDisplay(uintptr_t(display) + 1U); |
| 124 | } |
| 125 | |
| 126 | EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { |
| 127 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 128 | { |
| 129 | Mutex::Autolock _rf(refLock); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 130 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 131 | refs++; |
| 132 | if (refs > 1) { |
| 133 | if (major != NULL) |
| 134 | *major = VERSION_MAJOR; |
| 135 | if (minor != NULL) |
| 136 | *minor = VERSION_MINOR; |
| 137 | while(!eglIsInitialized) refCond.wait(refLock); |
| 138 | return EGL_TRUE; |
| 139 | } |
| 140 | |
| 141 | while(eglIsInitialized) refCond.wait(refLock); |
| 142 | } |
| 143 | |
| 144 | { |
| 145 | Mutex::Autolock _l(lock); |
| 146 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 147 | setGLHooksThreadSpecific(&gHooksNoContext); |
| 148 | |
| 149 | // initialize each EGL and |
| 150 | // build our own extension string first, based on the extension we know |
| 151 | // and the extension supported by our client implementation |
| 152 | |
| 153 | egl_connection_t* const cnx = &gEGLImpl; |
| 154 | cnx->major = -1; |
| 155 | cnx->minor = -1; |
| 156 | if (cnx->dso) { |
| 157 | EGLDisplay idpy = disp.dpy; |
| 158 | if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) { |
| 159 | //ALOGD("initialized dpy=%p, ver=%d.%d, cnx=%p", |
| 160 | // idpy, cnx->major, cnx->minor, cnx); |
| 161 | |
| 162 | // display is now initialized |
| 163 | disp.state = egl_display_t::INITIALIZED; |
| 164 | |
| 165 | // get the query-strings for this display for each implementation |
| 166 | disp.queryString.vendor = cnx->egl.eglQueryString(idpy, |
| 167 | EGL_VENDOR); |
| 168 | disp.queryString.version = cnx->egl.eglQueryString(idpy, |
| 169 | EGL_VERSION); |
| 170 | disp.queryString.extensions = cnx->egl.eglQueryString(idpy, |
| 171 | EGL_EXTENSIONS); |
| 172 | disp.queryString.clientApi = cnx->egl.eglQueryString(idpy, |
| 173 | EGL_CLIENT_APIS); |
| 174 | |
| 175 | } else { |
| 176 | ALOGW("eglInitialize(%p) failed (%s)", idpy, |
| 177 | egl_tls_t::egl_strerror(cnx->egl.eglGetError())); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | // the query strings are per-display |
| 182 | mVendorString.setTo(sVendorString); |
| 183 | mVersionString.setTo(sVersionString); |
| 184 | mClientApiString.setTo(sClientApiString); |
| 185 | |
| 186 | mExtensionString.setTo(gBuiltinExtensionString); |
| 187 | char const* start = gExtensionString; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 188 | do { |
Nicolas Capens | ecc0c9a | 2015-10-30 12:55:21 -0400 | [diff] [blame] | 189 | // length of the extension name |
| 190 | size_t len = strcspn(start, " "); |
| 191 | if (len) { |
| 192 | // NOTE: we could avoid the copy if we had strnstr. |
| 193 | const String8 ext(start, len); |
| 194 | if (findExtension(disp.queryString.extensions, ext.string(), |
| 195 | len)) { |
| 196 | mExtensionString.append(ext + " "); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 197 | } |
Nicolas Capens | ecc0c9a | 2015-10-30 12:55:21 -0400 | [diff] [blame] | 198 | // advance to the next extension name, skipping the space. |
| 199 | start += len; |
| 200 | start += (*start == ' ') ? 1 : 0; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 201 | } |
Nicolas Capens | ecc0c9a | 2015-10-30 12:55:21 -0400 | [diff] [blame] | 202 | } while (*start != '\0'); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 203 | |
| 204 | egl_cache_t::get()->initialize(this); |
| 205 | |
| 206 | char value[PROPERTY_VALUE_MAX]; |
| 207 | property_get("debug.egl.finish", value, "0"); |
| 208 | if (atoi(value)) { |
| 209 | finishOnSwap = true; |
| 210 | } |
| 211 | |
| 212 | property_get("debug.egl.traceGpuCompletion", value, "0"); |
| 213 | if (atoi(value)) { |
| 214 | traceGpuCompletion = true; |
| 215 | } |
| 216 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 217 | if (major != NULL) |
| 218 | *major = VERSION_MAJOR; |
| 219 | if (minor != NULL) |
| 220 | *minor = VERSION_MINOR; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 223 | { |
| 224 | Mutex::Autolock _rf(refLock); |
| 225 | eglIsInitialized = true; |
| 226 | refCond.broadcast(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 229 | return EGL_TRUE; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | EGLBoolean egl_display_t::terminate() { |
| 233 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 234 | { |
| 235 | Mutex::Autolock _rl(refLock); |
| 236 | if (refs == 0) { |
| 237 | /* |
| 238 | * From the EGL spec (3.2): |
| 239 | * "Termination of a display that has already been terminated, |
| 240 | * (...), is allowed, but the only effect of such a call is |
| 241 | * to return EGL_TRUE (...) |
| 242 | */ |
| 243 | return EGL_TRUE; |
| 244 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 245 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 246 | // this is specific to Android, display termination is ref-counted. |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 247 | refs--; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 248 | if (refs > 0) { |
| 249 | return EGL_TRUE; |
| 250 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | EGLBoolean res = EGL_FALSE; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 254 | |
| 255 | { |
| 256 | Mutex::Autolock _l(lock); |
| 257 | |
| 258 | egl_connection_t* const cnx = &gEGLImpl; |
| 259 | if (cnx->dso && disp.state == egl_display_t::INITIALIZED) { |
| 260 | if (cnx->egl.eglTerminate(disp.dpy) == EGL_FALSE) { |
| 261 | ALOGW("eglTerminate(%p) failed (%s)", disp.dpy, |
| 262 | egl_tls_t::egl_strerror(cnx->egl.eglGetError())); |
| 263 | } |
| 264 | // REVISIT: it's unclear what to do if eglTerminate() fails |
| 265 | disp.state = egl_display_t::TERMINATED; |
| 266 | res = EGL_TRUE; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 267 | } |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 268 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 269 | // Reset the extension string since it will be regenerated if we get |
| 270 | // reinitialized. |
| 271 | mExtensionString.setTo(""); |
| 272 | |
| 273 | // Mark all objects remaining in the list as terminated, unless |
| 274 | // there are no reference to them, it which case, we're free to |
| 275 | // delete them. |
| 276 | size_t count = objects.size(); |
Dan Albert | eacd31f | 2016-02-02 15:08:34 -0800 | [diff] [blame] | 277 | ALOGW_IF(count, "eglTerminate() called w/ %zu objects remaining", count); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 278 | for (size_t i=0 ; i<count ; i++) { |
| 279 | egl_object_t* o = objects.itemAt(i); |
| 280 | o->destroy(); |
| 281 | } |
| 282 | |
| 283 | // this marks all object handles are "terminated" |
| 284 | objects.clear(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 287 | { |
| 288 | Mutex::Autolock _rl(refLock); |
| 289 | eglIsInitialized = false; |
| 290 | refCond.broadcast(); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 293 | return res; |
| 294 | } |
| 295 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 296 | void egl_display_t::loseCurrent(egl_context_t * cur_c) |
| 297 | { |
| 298 | if (cur_c) { |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 299 | egl_display_t* display = cur_c->getDisplay(); |
| 300 | if (display) { |
| 301 | display->loseCurrentImpl(cur_c); |
| 302 | } |
| 303 | } |
| 304 | } |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 305 | |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 306 | void egl_display_t::loseCurrentImpl(egl_context_t * cur_c) |
| 307 | { |
| 308 | // by construction, these are either 0 or valid (possibly terminated) |
| 309 | // it should be impossible for these to be invalid |
| 310 | ContextRef _cur_c(cur_c); |
| 311 | SurfaceRef _cur_r(cur_c ? get_surface(cur_c->read) : NULL); |
| 312 | SurfaceRef _cur_d(cur_c ? get_surface(cur_c->draw) : NULL); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 313 | |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 314 | { // scope for the lock |
| 315 | Mutex::Autolock _l(lock); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 316 | cur_c->onLooseCurrent(); |
| 317 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 318 | } |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 319 | |
| 320 | // This cannot be called with the lock held because it might end-up |
| 321 | // calling back into EGL (in particular when a surface is destroyed |
| 322 | // it calls ANativeWindow::disconnect |
| 323 | _cur_c.release(); |
| 324 | _cur_r.release(); |
| 325 | _cur_d.release(); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | EGLBoolean egl_display_t::makeCurrent(egl_context_t* c, egl_context_t* cur_c, |
Mark Salyzyn | 92dc3fc | 2014-03-12 13:12:44 -0700 | [diff] [blame] | 329 | EGLSurface draw, EGLSurface read, EGLContext /*ctx*/, |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 330 | EGLSurface impl_draw, EGLSurface impl_read, EGLContext impl_ctx) |
| 331 | { |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 332 | EGLBoolean result; |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 333 | |
| 334 | // by construction, these are either 0 or valid (possibly terminated) |
| 335 | // it should be impossible for these to be invalid |
| 336 | ContextRef _cur_c(cur_c); |
| 337 | SurfaceRef _cur_r(cur_c ? get_surface(cur_c->read) : NULL); |
| 338 | SurfaceRef _cur_d(cur_c ? get_surface(cur_c->draw) : NULL); |
| 339 | |
| 340 | { // scope for the lock |
| 341 | Mutex::Autolock _l(lock); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 342 | if (c) { |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 343 | result = c->cnx->egl.eglMakeCurrent( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 344 | disp.dpy, impl_draw, impl_read, impl_ctx); |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 345 | if (result == EGL_TRUE) { |
| 346 | c->onMakeCurrent(draw, read); |
| 347 | } |
| 348 | } else { |
| 349 | result = cur_c->cnx->egl.eglMakeCurrent( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 350 | disp.dpy, impl_draw, impl_read, impl_ctx); |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 351 | if (result == EGL_TRUE) { |
| 352 | cur_c->onLooseCurrent(); |
| 353 | } |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 354 | } |
| 355 | } |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 356 | |
| 357 | if (result == EGL_TRUE) { |
| 358 | // This cannot be called with the lock held because it might end-up |
| 359 | // calling back into EGL (in particular when a surface is destroyed |
| 360 | // it calls ANativeWindow::disconnect |
| 361 | _cur_c.release(); |
| 362 | _cur_r.release(); |
| 363 | _cur_d.release(); |
| 364 | } |
| 365 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 366 | return result; |
| 367 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 368 | |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 369 | bool egl_display_t::haveExtension(const char* name, size_t nameLen) const { |
| 370 | if (!nameLen) { |
| 371 | nameLen = strlen(name); |
| 372 | } |
| 373 | return findExtension(mExtensionString.string(), name, nameLen); |
| 374 | } |
| 375 | |
Jesse Hall | a0fef1c | 2012-04-17 12:02:26 -0700 | [diff] [blame] | 376 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 377 | }; // namespace android |
| 378 | // ---------------------------------------------------------------------------- |