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 | 311b479 | 2017-02-28 15:00:49 -0800 | [diff] [blame] | 20 | #include "egl_display.h" |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 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_object.h" |
| 26 | #include "egl_tls.h" |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 27 | #include "egl_trace.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> |
Mathias Agopian | 311b479 | 2017-02-28 15:00:49 -0800 | [diff] [blame] | 30 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 31 | // ---------------------------------------------------------------------------- |
| 32 | namespace android { |
| 33 | // ---------------------------------------------------------------------------- |
| 34 | |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 35 | static char const * const sVendorString = "Android"; |
| 36 | static char const * const sVersionString = "1.4 Android META-EGL"; |
Mathias Agopian | cc2b156 | 2012-05-21 14:01:37 -0700 | [diff] [blame] | 37 | static char const * const sClientApiString = "OpenGL_ES"; |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 38 | |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame] | 39 | extern char const * const gBuiltinExtensionString; |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 40 | extern char const * const gExtensionString; |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 41 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 42 | extern void setGLHooksThreadSpecific(gl_hooks_t const *value); |
| 43 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 44 | // ---------------------------------------------------------------------------- |
| 45 | |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 46 | static bool findExtension(const char* exts, const char* name, size_t nameLen) { |
| 47 | if (exts) { |
Kalle Raita | 7804aa2 | 2016-04-18 16:03:37 -0700 | [diff] [blame] | 48 | for (const char* match = strstr(exts, name); match; match = strstr(match + nameLen, name)) { |
| 49 | if (match[nameLen] == '\0' || match[nameLen] == ' ') { |
| 50 | return true; |
| 51 | } |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 52 | } |
| 53 | } |
| 54 | return false; |
| 55 | } |
| 56 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 57 | egl_display_t egl_display_t::sDisplay[NUM_DISPLAYS]; |
| 58 | |
| 59 | egl_display_t::egl_display_t() : |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 60 | magic('_dpy'), finishOnSwap(false), traceGpuCompletion(false), refs(0), eglIsInitialized(false) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | egl_display_t::~egl_display_t() { |
| 64 | magic = 0; |
Jamie Gennis | 7660108 | 2011-11-06 14:14:33 -0800 | [diff] [blame] | 65 | egl_cache_t::get()->terminate(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | egl_display_t* egl_display_t::get(EGLDisplay dpy) { |
| 69 | uintptr_t index = uintptr_t(dpy)-1U; |
Jesse Hall | d6e9946 | 2016-09-28 11:26:57 -0700 | [diff] [blame] | 70 | if (index >= NUM_DISPLAYS || !sDisplay[index].isValid()) { |
| 71 | return nullptr; |
| 72 | } |
| 73 | return &sDisplay[index]; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | void egl_display_t::addObject(egl_object_t* object) { |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 77 | std::lock_guard<std::mutex> _l(lock); |
| 78 | objects.insert(object); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 81 | void egl_display_t::removeObject(egl_object_t* object) { |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 82 | std::lock_guard<std::mutex> _l(lock); |
| 83 | objects.erase(object); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Mathias Agopian | f0480de | 2011-11-13 20:50:07 -0800 | [diff] [blame] | 86 | bool egl_display_t::getObject(egl_object_t* object) const { |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 87 | std::lock_guard<std::mutex> _l(lock); |
| 88 | if (objects.find(object) != objects.end()) { |
Mathias Agopian | f0480de | 2011-11-13 20:50:07 -0800 | [diff] [blame] | 89 | if (object->getDisplay() == this) { |
| 90 | object->incRef(); |
| 91 | return true; |
| 92 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 93 | } |
| 94 | return false; |
| 95 | } |
| 96 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 97 | EGLDisplay egl_display_t::getFromNativeDisplay(EGLNativeDisplayType disp) { |
| 98 | if (uintptr_t(disp) >= NUM_DISPLAYS) |
| 99 | return NULL; |
| 100 | |
| 101 | return sDisplay[uintptr_t(disp)].getDisplay(disp); |
| 102 | } |
| 103 | |
| 104 | EGLDisplay egl_display_t::getDisplay(EGLNativeDisplayType display) { |
| 105 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 106 | std::lock_guard<std::mutex> _l(lock); |
Jesse Hall | 1508ae6 | 2017-01-19 17:43:26 -0800 | [diff] [blame] | 107 | ATRACE_CALL(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 108 | |
| 109 | // get our driver loader |
| 110 | Loader& loader(Loader::getInstance()); |
| 111 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 112 | egl_connection_t* const cnx = &gEGLImpl; |
| 113 | if (cnx->dso && disp.dpy == EGL_NO_DISPLAY) { |
| 114 | EGLDisplay dpy = cnx->egl.eglGetDisplay(display); |
| 115 | disp.dpy = dpy; |
| 116 | if (dpy == EGL_NO_DISPLAY) { |
| 117 | loader.close(cnx->dso); |
| 118 | cnx->dso = NULL; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 119 | } |
| 120 | } |
| 121 | |
| 122 | return EGLDisplay(uintptr_t(display) + 1U); |
| 123 | } |
| 124 | |
| 125 | EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { |
| 126 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 127 | { // scope for refLock |
| 128 | std::unique_lock<std::mutex> _l(refLock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 129 | refs++; |
| 130 | if (refs > 1) { |
| 131 | if (major != NULL) |
| 132 | *major = VERSION_MAJOR; |
| 133 | if (minor != NULL) |
| 134 | *minor = VERSION_MINOR; |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 135 | while(!eglIsInitialized) { |
| 136 | refCond.wait(_l); |
| 137 | } |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 138 | return EGL_TRUE; |
| 139 | } |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 140 | while(eglIsInitialized) { |
| 141 | refCond.wait(_l); |
| 142 | } |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 143 | } |
| 144 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 145 | { // scope for lock |
| 146 | std::lock_guard<std::mutex> _l(lock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 147 | |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 148 | setGLHooksThreadSpecific(&gHooksNoContext); |
| 149 | |
| 150 | // initialize each EGL and |
| 151 | // build our own extension string first, based on the extension we know |
| 152 | // and the extension supported by our client implementation |
| 153 | |
| 154 | egl_connection_t* const cnx = &gEGLImpl; |
| 155 | cnx->major = -1; |
| 156 | cnx->minor = -1; |
| 157 | if (cnx->dso) { |
| 158 | EGLDisplay idpy = disp.dpy; |
| 159 | if (cnx->egl.eglInitialize(idpy, &cnx->major, &cnx->minor)) { |
| 160 | //ALOGD("initialized dpy=%p, ver=%d.%d, cnx=%p", |
| 161 | // idpy, cnx->major, cnx->minor, cnx); |
| 162 | |
| 163 | // display is now initialized |
| 164 | disp.state = egl_display_t::INITIALIZED; |
| 165 | |
| 166 | // get the query-strings for this display for each implementation |
| 167 | disp.queryString.vendor = cnx->egl.eglQueryString(idpy, |
| 168 | EGL_VENDOR); |
| 169 | disp.queryString.version = cnx->egl.eglQueryString(idpy, |
| 170 | EGL_VERSION); |
| 171 | disp.queryString.extensions = cnx->egl.eglQueryString(idpy, |
| 172 | EGL_EXTENSIONS); |
| 173 | disp.queryString.clientApi = cnx->egl.eglQueryString(idpy, |
| 174 | EGL_CLIENT_APIS); |
| 175 | |
| 176 | } else { |
| 177 | ALOGW("eglInitialize(%p) failed (%s)", idpy, |
| 178 | egl_tls_t::egl_strerror(cnx->egl.eglGetError())); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | // the query strings are per-display |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 183 | mVendorString = sVendorString; |
| 184 | mVersionString = sVersionString; |
| 185 | mClientApiString = sClientApiString; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 186 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 187 | mExtensionString = gBuiltinExtensionString; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 188 | char const* start = gExtensionString; |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 189 | do { |
Nicolas Capens | ecc0c9a | 2015-10-30 12:55:21 -0400 | [diff] [blame] | 190 | // length of the extension name |
| 191 | size_t len = strcspn(start, " "); |
| 192 | if (len) { |
| 193 | // NOTE: we could avoid the copy if we had strnstr. |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 194 | const std::string ext(start, len); |
| 195 | if (findExtension(disp.queryString.extensions, ext.c_str(), len)) { |
Nicolas Capens | ecc0c9a | 2015-10-30 12:55:21 -0400 | [diff] [blame] | 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 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 223 | { // scope for refLock |
| 224 | std::unique_lock<std::mutex> _l(refLock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 225 | eglIsInitialized = true; |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 226 | refCond.notify_all(); |
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 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 234 | { // scope for refLock |
| 235 | std::unique_lock<std::mutex> _rl(refLock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 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 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 255 | { // scope for lock |
| 256 | std::lock_guard<std::mutex> _l(lock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 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. |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 271 | mExtensionString.clear(); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 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); |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 278 | for (auto o : objects) { |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 279 | o->destroy(); |
| 280 | } |
| 281 | |
| 282 | // this marks all object handles are "terminated" |
| 283 | objects.clear(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 284 | } |
| 285 | |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 286 | { // scope for refLock |
| 287 | std::unique_lock<std::mutex> _rl(refLock); |
Michael Lentine | 54466bc | 2015-01-27 09:01:03 -0800 | [diff] [blame] | 288 | eglIsInitialized = false; |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 289 | refCond.notify_all(); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 292 | return res; |
| 293 | } |
| 294 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 295 | void egl_display_t::loseCurrent(egl_context_t * cur_c) |
| 296 | { |
| 297 | if (cur_c) { |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 298 | egl_display_t* display = cur_c->getDisplay(); |
| 299 | if (display) { |
| 300 | display->loseCurrentImpl(cur_c); |
| 301 | } |
| 302 | } |
| 303 | } |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 304 | |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 305 | void egl_display_t::loseCurrentImpl(egl_context_t * cur_c) |
| 306 | { |
| 307 | // by construction, these are either 0 or valid (possibly terminated) |
| 308 | // it should be impossible for these to be invalid |
| 309 | ContextRef _cur_c(cur_c); |
| 310 | SurfaceRef _cur_r(cur_c ? get_surface(cur_c->read) : NULL); |
| 311 | SurfaceRef _cur_d(cur_c ? get_surface(cur_c->draw) : NULL); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 312 | |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 313 | { // scope for the lock |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 314 | std::lock_guard<std::mutex> _l(lock); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 315 | cur_c->onLooseCurrent(); |
| 316 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 317 | } |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 318 | |
| 319 | // This cannot be called with the lock held because it might end-up |
| 320 | // calling back into EGL (in particular when a surface is destroyed |
| 321 | // it calls ANativeWindow::disconnect |
| 322 | _cur_c.release(); |
| 323 | _cur_r.release(); |
| 324 | _cur_d.release(); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | 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] | 328 | EGLSurface draw, EGLSurface read, EGLContext /*ctx*/, |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 329 | EGLSurface impl_draw, EGLSurface impl_read, EGLContext impl_ctx) |
| 330 | { |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 331 | EGLBoolean result; |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 332 | |
| 333 | // by construction, these are either 0 or valid (possibly terminated) |
| 334 | // it should be impossible for these to be invalid |
| 335 | ContextRef _cur_c(cur_c); |
| 336 | SurfaceRef _cur_r(cur_c ? get_surface(cur_c->read) : NULL); |
| 337 | SurfaceRef _cur_d(cur_c ? get_surface(cur_c->draw) : NULL); |
| 338 | |
| 339 | { // scope for the lock |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 340 | std::lock_guard<std::mutex> _l(lock); |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 341 | if (c) { |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 342 | result = c->cnx->egl.eglMakeCurrent( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 343 | disp.dpy, impl_draw, impl_read, impl_ctx); |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 344 | if (result == EGL_TRUE) { |
| 345 | c->onMakeCurrent(draw, read); |
| 346 | } |
| 347 | } else { |
| 348 | result = cur_c->cnx->egl.eglMakeCurrent( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 349 | disp.dpy, impl_draw, impl_read, impl_ctx); |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 350 | if (result == EGL_TRUE) { |
| 351 | cur_c->onLooseCurrent(); |
| 352 | } |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 353 | } |
| 354 | } |
Mathias Agopian | a4b2c04 | 2012-02-03 15:24:51 -0800 | [diff] [blame] | 355 | |
| 356 | if (result == EGL_TRUE) { |
| 357 | // This cannot be called with the lock held because it might end-up |
| 358 | // calling back into EGL (in particular when a surface is destroyed |
| 359 | // it calls ANativeWindow::disconnect |
| 360 | _cur_c.release(); |
| 361 | _cur_r.release(); |
| 362 | _cur_d.release(); |
| 363 | } |
| 364 | |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 365 | return result; |
| 366 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 367 | |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 368 | bool egl_display_t::haveExtension(const char* name, size_t nameLen) const { |
| 369 | if (!nameLen) { |
| 370 | nameLen = strlen(name); |
| 371 | } |
Mathias Agopian | 6542143 | 2017-03-08 11:49:05 -0800 | [diff] [blame] | 372 | return findExtension(mExtensionString.c_str(), name, nameLen); |
Jesse Hall | c2e4122 | 2013-08-08 13:40:22 -0700 | [diff] [blame] | 373 | } |
| 374 | |
Jesse Hall | a0fef1c | 2012-04-17 12:02:26 -0700 | [diff] [blame] | 375 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 376 | }; // namespace android |
| 377 | // ---------------------------------------------------------------------------- |