Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [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 | 4774338 | 2013-02-08 11:13:46 -0800 | [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 | 4774338 | 2013-02-08 11:13:46 -0800 | [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 | 4774338 | 2013-02-08 11:13:46 -0800 | [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 | |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
| 18 | |
Jesse Hall | c07b520 | 2013-07-04 12:08:16 -0700 | [diff] [blame] | 19 | #include <dlfcn.h> |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 20 | #include <ctype.h> |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
| 23 | |
| 24 | #include <hardware/gralloc.h> |
| 25 | #include <system/window.h> |
| 26 | |
| 27 | #include <EGL/egl.h> |
| 28 | #include <EGL/eglext.h> |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 29 | |
| 30 | #include <cutils/log.h> |
| 31 | #include <cutils/atomic.h> |
Mathias Agopian | 7db993a | 2012-03-25 00:49:46 -0700 | [diff] [blame] | 32 | #include <cutils/compiler.h> |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 33 | #include <cutils/properties.h> |
| 34 | #include <cutils/memory.h> |
| 35 | |
| 36 | #include <utils/KeyedVector.h> |
| 37 | #include <utils/SortedVector.h> |
| 38 | #include <utils/String8.h> |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 39 | #include <utils/Trace.h> |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 40 | |
Mathias Agopian | 39c24a2 | 2013-04-04 23:17:56 -0700 | [diff] [blame] | 41 | #include "../egl_impl.h" |
| 42 | #include "../glestrace.h" |
| 43 | #include "../hooks.h" |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 44 | |
| 45 | #include "egl_display.h" |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 46 | #include "egl_object.h" |
| 47 | #include "egl_tls.h" |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 48 | #include "egldefs.h" |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 49 | |
| 50 | using namespace android; |
| 51 | |
| 52 | // ---------------------------------------------------------------------------- |
| 53 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 54 | namespace android { |
| 55 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 56 | struct extention_map_t { |
| 57 | const char* name; |
| 58 | __eglMustCastToProperFunctionPointerType address; |
| 59 | }; |
| 60 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 61 | /* |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame^] | 62 | * This is the list of EGL extensions exposed to applications. |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 63 | * |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame^] | 64 | * Some of them (gBuiltinExtensionString) are implemented entirely in this EGL |
| 65 | * wrapper and are always available. |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 66 | * |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame^] | 67 | * The rest (gExtensionString) depend on support in the EGL driver, and are |
| 68 | * only available if the driver supports them. However, some of these must be |
| 69 | * supported because they are used by the Android system itself; these are |
| 70 | * listd as mandatory below and are required by the CDD. The system *assumes* |
| 71 | * the mandatory extensions are present and may not function properly if some |
| 72 | * are missing. |
| 73 | * |
| 74 | * NOTE: Both strings MUST have a single space as the last character. |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 75 | */ |
Jesse Hall | 21558da | 2013-08-06 15:31:22 -0700 | [diff] [blame^] | 76 | extern char const * const gBuiltinExtensionString = |
| 77 | "EGL_KHR_get_all_proc_addresses " |
| 78 | "EGL_ANDROID_presentation_time " |
| 79 | ; |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 80 | extern char const * const gExtensionString = |
| 81 | "EGL_KHR_image " // mandatory |
| 82 | "EGL_KHR_image_base " // mandatory |
| 83 | "EGL_KHR_image_pixmap " |
| 84 | "EGL_KHR_lock_surface " |
| 85 | "EGL_KHR_gl_texture_2D_image " |
| 86 | "EGL_KHR_gl_texture_cubemap_image " |
| 87 | "EGL_KHR_gl_renderbuffer_image " |
| 88 | "EGL_KHR_reusable_sync " |
| 89 | "EGL_KHR_fence_sync " |
Jamie Gennis | f6d1c39 | 2013-04-25 18:48:41 -0700 | [diff] [blame] | 90 | "EGL_KHR_create_context " |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 91 | "EGL_EXT_create_context_robustness " |
| 92 | "EGL_NV_system_time " |
| 93 | "EGL_ANDROID_image_native_buffer " // mandatory |
Mathias Agopian | 2bb7168 | 2013-03-27 17:32:41 -0700 | [diff] [blame] | 94 | "EGL_KHR_wait_sync " // strongly recommended |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 95 | ; |
| 96 | |
| 97 | // extensions not exposed to applications but used by the ANDROID system |
| 98 | // "EGL_ANDROID_blob_cache " // strongly recommended |
| 99 | // "EGL_IMG_hibernate_process " // optional |
| 100 | // "EGL_ANDROID_native_fence_sync " // strongly recommended |
| 101 | // "EGL_ANDROID_framebuffer_target " // mandatory for HWC 1.1 |
| 102 | // "EGL_ANDROID_recordable " // mandatory |
| 103 | |
| 104 | |
| 105 | /* |
| 106 | * EGL Extensions entry-points exposed to 3rd party applications |
| 107 | * (keep in sync with gExtensionString above) |
| 108 | * |
| 109 | */ |
| 110 | static const extention_map_t sExtensionMap[] = { |
| 111 | // EGL_KHR_lock_surface |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 112 | { "eglLockSurfaceKHR", |
| 113 | (__eglMustCastToProperFunctionPointerType)&eglLockSurfaceKHR }, |
| 114 | { "eglUnlockSurfaceKHR", |
| 115 | (__eglMustCastToProperFunctionPointerType)&eglUnlockSurfaceKHR }, |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 116 | |
| 117 | // EGL_KHR_image, EGL_KHR_image_base |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 118 | { "eglCreateImageKHR", |
| 119 | (__eglMustCastToProperFunctionPointerType)&eglCreateImageKHR }, |
| 120 | { "eglDestroyImageKHR", |
| 121 | (__eglMustCastToProperFunctionPointerType)&eglDestroyImageKHR }, |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 122 | |
| 123 | // EGL_KHR_reusable_sync, EGL_KHR_fence_sync |
| 124 | { "eglCreateSyncKHR", |
| 125 | (__eglMustCastToProperFunctionPointerType)&eglCreateSyncKHR }, |
| 126 | { "eglDestroySyncKHR", |
| 127 | (__eglMustCastToProperFunctionPointerType)&eglDestroySyncKHR }, |
| 128 | { "eglClientWaitSyncKHR", |
| 129 | (__eglMustCastToProperFunctionPointerType)&eglClientWaitSyncKHR }, |
| 130 | { "eglSignalSyncKHR", |
| 131 | (__eglMustCastToProperFunctionPointerType)&eglSignalSyncKHR }, |
| 132 | { "eglGetSyncAttribKHR", |
| 133 | (__eglMustCastToProperFunctionPointerType)&eglGetSyncAttribKHR }, |
| 134 | |
| 135 | // EGL_NV_system_time |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 136 | { "eglGetSystemTimeFrequencyNV", |
| 137 | (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeFrequencyNV }, |
| 138 | { "eglGetSystemTimeNV", |
| 139 | (__eglMustCastToProperFunctionPointerType)&eglGetSystemTimeNV }, |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 140 | |
Mathias Agopian | 2bb7168 | 2013-03-27 17:32:41 -0700 | [diff] [blame] | 141 | // EGL_KHR_wait_sync |
| 142 | { "eglWaitSyncKHR", |
| 143 | (__eglMustCastToProperFunctionPointerType)&eglWaitSyncKHR }, |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 144 | |
| 145 | // EGL_ANDROID_presentation_time |
| 146 | { "eglPresentationTimeANDROID", |
| 147 | (__eglMustCastToProperFunctionPointerType)&eglPresentationTimeANDROID }, |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 148 | }; |
| 149 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 150 | /* |
| 151 | * These extensions entry-points should not be exposed to applications. |
| 152 | * They're used internally by the Android EGL layer. |
| 153 | */ |
| 154 | #define FILTER_EXTENSIONS(procname) \ |
| 155 | (!strcmp((procname), "eglSetBlobCacheFuncsANDROID") || \ |
| 156 | !strcmp((procname), "eglHibernateProcessIMG") || \ |
| 157 | !strcmp((procname), "eglAwakenProcessIMG") || \ |
| 158 | !strcmp((procname), "eglDupNativeFenceFDANDROID")) |
| 159 | |
| 160 | |
| 161 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 162 | // accesses protected by sExtensionMapMutex |
| 163 | static DefaultKeyedVector<String8, __eglMustCastToProperFunctionPointerType> sGLExtentionMap; |
| 164 | static int sGLExtentionSlot = 0; |
| 165 | static pthread_mutex_t sExtensionMapMutex = PTHREAD_MUTEX_INITIALIZER; |
| 166 | |
| 167 | static void(*findProcAddress(const char* name, |
| 168 | const extention_map_t* map, size_t n))() { |
| 169 | for (uint32_t i=0 ; i<n ; i++) { |
| 170 | if (!strcmp(name, map[i].name)) { |
| 171 | return map[i].address; |
| 172 | } |
| 173 | } |
| 174 | return NULL; |
| 175 | } |
| 176 | |
| 177 | // ---------------------------------------------------------------------------- |
| 178 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 179 | extern void setGLHooksThreadSpecific(gl_hooks_t const *value); |
| 180 | extern EGLBoolean egl_init_drivers(); |
| 181 | extern const __eglMustCastToProperFunctionPointerType gExtensionForwarders[MAX_NUMBER_OF_GL_EXTENSIONS]; |
Siva Velusamy | a73a977 | 2012-12-18 14:56:55 -0800 | [diff] [blame] | 182 | extern int getEGLDebugLevel(); |
| 183 | extern void setEGLDebugLevel(int level); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 184 | extern gl_hooks_t gHooksTrace; |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 185 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 186 | } // namespace android; |
| 187 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 188 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 189 | // ---------------------------------------------------------------------------- |
| 190 | |
| 191 | static inline void clearError() { egl_tls_t::clearError(); } |
| 192 | static inline EGLContext getContext() { return egl_tls_t::getContext(); } |
| 193 | |
| 194 | // ---------------------------------------------------------------------------- |
| 195 | |
| 196 | EGLDisplay eglGetDisplay(EGLNativeDisplayType display) |
| 197 | { |
| 198 | clearError(); |
| 199 | |
| 200 | uint32_t index = uint32_t(display); |
| 201 | if (index >= NUM_DISPLAYS) { |
| 202 | return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY); |
| 203 | } |
| 204 | |
| 205 | if (egl_init_drivers() == EGL_FALSE) { |
| 206 | return setError(EGL_BAD_PARAMETER, EGL_NO_DISPLAY); |
| 207 | } |
| 208 | |
| 209 | EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display); |
| 210 | return dpy; |
| 211 | } |
| 212 | |
| 213 | // ---------------------------------------------------------------------------- |
| 214 | // Initialization |
| 215 | // ---------------------------------------------------------------------------- |
| 216 | |
| 217 | EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) |
| 218 | { |
| 219 | clearError(); |
| 220 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 221 | egl_display_ptr dp = get_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 222 | if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE); |
| 223 | |
| 224 | EGLBoolean res = dp->initialize(major, minor); |
| 225 | |
| 226 | return res; |
| 227 | } |
| 228 | |
| 229 | EGLBoolean eglTerminate(EGLDisplay dpy) |
| 230 | { |
| 231 | // NOTE: don't unload the drivers b/c some APIs can be called |
| 232 | // after eglTerminate() has been called. eglTerminate() only |
| 233 | // terminates an EGLDisplay, not a EGL itself. |
| 234 | |
| 235 | clearError(); |
| 236 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 237 | egl_display_ptr dp = get_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 238 | if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE); |
| 239 | |
| 240 | EGLBoolean res = dp->terminate(); |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 241 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 242 | return res; |
| 243 | } |
| 244 | |
| 245 | // ---------------------------------------------------------------------------- |
| 246 | // configuration |
| 247 | // ---------------------------------------------------------------------------- |
| 248 | |
| 249 | EGLBoolean eglGetConfigs( EGLDisplay dpy, |
| 250 | EGLConfig *configs, |
| 251 | EGLint config_size, EGLint *num_config) |
| 252 | { |
| 253 | clearError(); |
| 254 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 255 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 256 | if (!dp) return EGL_FALSE; |
| 257 | |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 258 | if (num_config==0) { |
| 259 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 262 | EGLBoolean res = EGL_FALSE; |
| 263 | *num_config = 0; |
| 264 | |
| 265 | egl_connection_t* const cnx = &gEGLImpl; |
| 266 | if (cnx->dso) { |
| 267 | res = cnx->egl.eglGetConfigs( |
| 268 | dp->disp.dpy, configs, config_size, num_config); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 269 | } |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 270 | |
| 271 | return res; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, |
| 275 | EGLConfig *configs, EGLint config_size, |
| 276 | EGLint *num_config) |
| 277 | { |
| 278 | clearError(); |
| 279 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 280 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 281 | if (!dp) return EGL_FALSE; |
| 282 | |
| 283 | if (num_config==0) { |
| 284 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
| 285 | } |
| 286 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 287 | EGLBoolean res = EGL_FALSE; |
| 288 | *num_config = 0; |
| 289 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 290 | egl_connection_t* const cnx = &gEGLImpl; |
| 291 | if (cnx->dso) { |
Romain Guy | 1cffc80 | 2012-10-15 18:13:05 -0700 | [diff] [blame] | 292 | if (attrib_list) { |
| 293 | char value[PROPERTY_VALUE_MAX]; |
| 294 | property_get("debug.egl.force_msaa", value, "false"); |
| 295 | |
| 296 | if (!strcmp(value, "true")) { |
| 297 | size_t attribCount = 0; |
| 298 | EGLint attrib = attrib_list[0]; |
| 299 | |
| 300 | // Only enable MSAA if the context is OpenGL ES 2.0 and |
Romain Guy | be3c3e4 | 2012-10-15 19:25:18 -0700 | [diff] [blame] | 301 | // if no caveat is requested |
Romain Guy | 1cffc80 | 2012-10-15 18:13:05 -0700 | [diff] [blame] | 302 | const EGLint *attribRendererable = NULL; |
| 303 | const EGLint *attribCaveat = NULL; |
| 304 | |
| 305 | // Count the number of attributes and look for |
Romain Guy | be3c3e4 | 2012-10-15 19:25:18 -0700 | [diff] [blame] | 306 | // EGL_RENDERABLE_TYPE and EGL_CONFIG_CAVEAT |
Romain Guy | 1cffc80 | 2012-10-15 18:13:05 -0700 | [diff] [blame] | 307 | while (attrib != EGL_NONE) { |
| 308 | attrib = attrib_list[attribCount]; |
| 309 | switch (attrib) { |
| 310 | case EGL_RENDERABLE_TYPE: |
| 311 | attribRendererable = &attrib_list[attribCount]; |
| 312 | break; |
| 313 | case EGL_CONFIG_CAVEAT: |
| 314 | attribCaveat = &attrib_list[attribCount]; |
| 315 | break; |
| 316 | } |
| 317 | attribCount++; |
| 318 | } |
| 319 | |
| 320 | if (attribRendererable && attribRendererable[1] == EGL_OPENGL_ES2_BIT && |
| 321 | (!attribCaveat || attribCaveat[1] != EGL_NONE)) { |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 322 | |
Romain Guy | 1cffc80 | 2012-10-15 18:13:05 -0700 | [diff] [blame] | 323 | // Insert 2 extra attributes to force-enable MSAA 4x |
| 324 | EGLint aaAttribs[attribCount + 4]; |
| 325 | aaAttribs[0] = EGL_SAMPLE_BUFFERS; |
| 326 | aaAttribs[1] = 1; |
| 327 | aaAttribs[2] = EGL_SAMPLES; |
| 328 | aaAttribs[3] = 4; |
| 329 | |
| 330 | memcpy(&aaAttribs[4], attrib_list, attribCount * sizeof(EGLint)); |
| 331 | |
| 332 | EGLint numConfigAA; |
| 333 | EGLBoolean resAA = cnx->egl.eglChooseConfig( |
| 334 | dp->disp.dpy, aaAttribs, configs, config_size, &numConfigAA); |
| 335 | |
| 336 | if (resAA == EGL_TRUE && numConfigAA > 0) { |
| 337 | ALOGD("Enabling MSAA 4x"); |
| 338 | *num_config = numConfigAA; |
| 339 | return resAA; |
| 340 | } |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 345 | res = cnx->egl.eglChooseConfig( |
| 346 | dp->disp.dpy, attrib_list, configs, config_size, num_config); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 347 | } |
| 348 | return res; |
| 349 | } |
| 350 | |
| 351 | EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, |
| 352 | EGLint attribute, EGLint *value) |
| 353 | { |
| 354 | clearError(); |
| 355 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 356 | egl_connection_t* cnx = NULL; |
| 357 | const egl_display_ptr dp = validate_display_connection(dpy, cnx); |
| 358 | if (!dp) return EGL_FALSE; |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 359 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 360 | return cnx->egl.eglGetConfigAttrib( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 361 | dp->disp.dpy, config, attribute, value); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | // ---------------------------------------------------------------------------- |
| 365 | // surfaces |
| 366 | // ---------------------------------------------------------------------------- |
| 367 | |
| 368 | EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, |
| 369 | NativeWindowType window, |
| 370 | const EGLint *attrib_list) |
| 371 | { |
| 372 | clearError(); |
| 373 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 374 | egl_connection_t* cnx = NULL; |
| 375 | egl_display_ptr dp = validate_display_connection(dpy, cnx); |
| 376 | if (dp) { |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 377 | EGLDisplay iDpy = dp->disp.dpy; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 378 | EGLint format; |
| 379 | |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 380 | if (native_window_api_connect(window, NATIVE_WINDOW_API_EGL) != OK) { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 381 | ALOGE("EGLNativeWindowType %p already connected to another API", |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 382 | window); |
Jonathan Hamilton | 77a9b4a | 2013-07-17 09:41:42 -0700 | [diff] [blame] | 383 | return setError(EGL_BAD_ALLOC, EGL_NO_SURFACE); |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 386 | // set the native window's buffers format to match this config |
| 387 | if (cnx->egl.eglGetConfigAttrib(iDpy, |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 388 | config, EGL_NATIVE_VISUAL_ID, &format)) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 389 | if (format != 0) { |
Jamie Gennis | bee205f | 2011-07-01 13:12:07 -0700 | [diff] [blame] | 390 | int err = native_window_set_buffers_format(window, format); |
| 391 | if (err != 0) { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 392 | ALOGE("error setting native window pixel format: %s (%d)", |
Jamie Gennis | bee205f | 2011-07-01 13:12:07 -0700 | [diff] [blame] | 393 | strerror(-err), err); |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 394 | native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL); |
Jamie Gennis | bee205f | 2011-07-01 13:12:07 -0700 | [diff] [blame] | 395 | return setError(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE); |
| 396 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 397 | } |
| 398 | } |
| 399 | |
Jamie Gennis | 5976946 | 2011-11-19 18:04:43 -0800 | [diff] [blame] | 400 | // the EGL spec requires that a new EGLSurface default to swap interval |
| 401 | // 1, so explicitly set that on the window here. |
| 402 | ANativeWindow* anw = reinterpret_cast<ANativeWindow*>(window); |
| 403 | anw->setSwapInterval(anw, 1); |
| 404 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 405 | EGLSurface surface = cnx->egl.eglCreateWindowSurface( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 406 | iDpy, config, window, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 407 | if (surface != EGL_NO_SURFACE) { |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 408 | egl_surface_t* s = new egl_surface_t(dp.get(), config, window, |
| 409 | surface, cnx); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 410 | return s; |
| 411 | } |
Mathias Agopian | 81a6335 | 2011-07-29 17:55:48 -0700 | [diff] [blame] | 412 | |
| 413 | // EGLSurface creation failed |
| 414 | native_window_set_buffers_format(window, 0); |
| 415 | native_window_api_disconnect(window, NATIVE_WINDOW_API_EGL); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 416 | } |
| 417 | return EGL_NO_SURFACE; |
| 418 | } |
| 419 | |
| 420 | EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config, |
| 421 | NativePixmapType pixmap, |
| 422 | const EGLint *attrib_list) |
| 423 | { |
| 424 | clearError(); |
| 425 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 426 | egl_connection_t* cnx = NULL; |
| 427 | egl_display_ptr dp = validate_display_connection(dpy, cnx); |
| 428 | if (dp) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 429 | EGLSurface surface = cnx->egl.eglCreatePixmapSurface( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 430 | dp->disp.dpy, config, pixmap, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 431 | if (surface != EGL_NO_SURFACE) { |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 432 | egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL, |
| 433 | surface, cnx); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 434 | return s; |
| 435 | } |
| 436 | } |
| 437 | return EGL_NO_SURFACE; |
| 438 | } |
| 439 | |
| 440 | EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config, |
| 441 | const EGLint *attrib_list) |
| 442 | { |
| 443 | clearError(); |
| 444 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 445 | egl_connection_t* cnx = NULL; |
| 446 | egl_display_ptr dp = validate_display_connection(dpy, cnx); |
| 447 | if (dp) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 448 | EGLSurface surface = cnx->egl.eglCreatePbufferSurface( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 449 | dp->disp.dpy, config, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 450 | if (surface != EGL_NO_SURFACE) { |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 451 | egl_surface_t* s = new egl_surface_t(dp.get(), config, NULL, |
| 452 | surface, cnx); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 453 | return s; |
| 454 | } |
| 455 | } |
| 456 | return EGL_NO_SURFACE; |
| 457 | } |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 458 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 459 | EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) |
| 460 | { |
| 461 | clearError(); |
| 462 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 463 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 464 | if (!dp) return EGL_FALSE; |
| 465 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 466 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 467 | if (!_s.get()) |
| 468 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 469 | |
| 470 | egl_surface_t * const s = get_surface(surface); |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 471 | EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 472 | if (result == EGL_TRUE) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 473 | _s.terminate(); |
| 474 | } |
| 475 | return result; |
| 476 | } |
| 477 | |
| 478 | EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface, |
| 479 | EGLint attribute, EGLint *value) |
| 480 | { |
| 481 | clearError(); |
| 482 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 483 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 484 | if (!dp) return EGL_FALSE; |
| 485 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 486 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 487 | if (!_s.get()) |
| 488 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 489 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 490 | egl_surface_t const * const s = get_surface(surface); |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 491 | return s->cnx->egl.eglQuerySurface( |
| 492 | dp->disp.dpy, s->surface, attribute, value); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 493 | } |
| 494 | |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 495 | void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) { |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 496 | ATRACE_CALL(); |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 497 | clearError(); |
| 498 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 499 | const egl_display_ptr dp = validate_display(dpy); |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 500 | if (!dp) { |
| 501 | return; |
| 502 | } |
| 503 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 504 | SurfaceRef _s(dp.get(), surface); |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 505 | if (!_s.get()) { |
| 506 | setError(EGL_BAD_SURFACE, EGL_FALSE); |
| 507 | return; |
| 508 | } |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 509 | } |
| 510 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 511 | // ---------------------------------------------------------------------------- |
| 512 | // Contexts |
| 513 | // ---------------------------------------------------------------------------- |
| 514 | |
| 515 | EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, |
| 516 | EGLContext share_list, const EGLint *attrib_list) |
| 517 | { |
| 518 | clearError(); |
| 519 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 520 | egl_connection_t* cnx = NULL; |
| 521 | const egl_display_ptr dp = validate_display_connection(dpy, cnx); |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 522 | if (dp) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 523 | if (share_list != EGL_NO_CONTEXT) { |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 524 | if (!ContextRef(dp.get(), share_list).get()) { |
| 525 | return setError(EGL_BAD_CONTEXT, EGL_NO_CONTEXT); |
| 526 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 527 | egl_context_t* const c = get_context(share_list); |
| 528 | share_list = c->context; |
| 529 | } |
| 530 | EGLContext context = cnx->egl.eglCreateContext( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 531 | dp->disp.dpy, config, share_list, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 532 | if (context != EGL_NO_CONTEXT) { |
| 533 | // figure out if it's a GLESv1 or GLESv2 |
| 534 | int version = 0; |
| 535 | if (attrib_list) { |
| 536 | while (*attrib_list != EGL_NONE) { |
| 537 | GLint attr = *attrib_list++; |
| 538 | GLint value = *attrib_list++; |
| 539 | if (attr == EGL_CONTEXT_CLIENT_VERSION) { |
| 540 | if (value == 1) { |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 541 | version = egl_connection_t::GLESv1_INDEX; |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 542 | } else if (value == 2 || value == 3) { |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 543 | version = egl_connection_t::GLESv2_INDEX; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | }; |
| 547 | } |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 548 | egl_context_t* c = new egl_context_t(dpy, context, config, cnx, |
| 549 | version); |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 550 | #if EGL_TRACE |
Siva Velusamy | a73a977 | 2012-12-18 14:56:55 -0800 | [diff] [blame] | 551 | if (getEGLDebugLevel() > 0) |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 552 | GLTrace_eglCreateContext(version, c); |
| 553 | #endif |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 554 | return c; |
Mathias Agopian | 500407a | 2012-09-24 17:57:48 -0700 | [diff] [blame] | 555 | } else { |
| 556 | EGLint error = eglGetError(); |
| 557 | ALOGE_IF(error == EGL_SUCCESS, |
| 558 | "eglCreateContext(%p, %p, %p, %p) returned EGL_NO_CONTEXT " |
| 559 | "but no EGL error!", |
| 560 | dpy, config, share_list, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 561 | } |
| 562 | } |
| 563 | return EGL_NO_CONTEXT; |
| 564 | } |
| 565 | |
| 566 | EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) |
| 567 | { |
| 568 | clearError(); |
| 569 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 570 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 571 | if (!dp) |
| 572 | return EGL_FALSE; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 573 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 574 | ContextRef _c(dp.get(), ctx); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 575 | if (!_c.get()) |
| 576 | return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 577 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 578 | egl_context_t * const c = get_context(ctx); |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 579 | EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 580 | if (result == EGL_TRUE) { |
| 581 | _c.terminate(); |
| 582 | } |
| 583 | return result; |
| 584 | } |
| 585 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 586 | EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw, |
| 587 | EGLSurface read, EGLContext ctx) |
| 588 | { |
| 589 | clearError(); |
| 590 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 591 | egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 592 | if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE); |
| 593 | |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 594 | // If ctx is not EGL_NO_CONTEXT, read is not EGL_NO_SURFACE, or draw is not |
| 595 | // EGL_NO_SURFACE, then an EGL_NOT_INITIALIZED error is generated if dpy is |
| 596 | // a valid but uninitialized display. |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 597 | if ( (ctx != EGL_NO_CONTEXT) || (read != EGL_NO_SURFACE) || |
| 598 | (draw != EGL_NO_SURFACE) ) { |
| 599 | if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, EGL_FALSE); |
| 600 | } |
| 601 | |
| 602 | // get a reference to the object passed in |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 603 | ContextRef _c(dp.get(), ctx); |
| 604 | SurfaceRef _d(dp.get(), draw); |
| 605 | SurfaceRef _r(dp.get(), read); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 606 | |
| 607 | // validate the context (if not EGL_NO_CONTEXT) |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 608 | if ((ctx != EGL_NO_CONTEXT) && !_c.get()) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 609 | // EGL_NO_CONTEXT is valid |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 610 | return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 611 | } |
| 612 | |
| 613 | // these are the underlying implementation's object |
| 614 | EGLContext impl_ctx = EGL_NO_CONTEXT; |
| 615 | EGLSurface impl_draw = EGL_NO_SURFACE; |
| 616 | EGLSurface impl_read = EGL_NO_SURFACE; |
| 617 | |
| 618 | // these are our objects structs passed in |
| 619 | egl_context_t * c = NULL; |
| 620 | egl_surface_t const * d = NULL; |
| 621 | egl_surface_t const * r = NULL; |
| 622 | |
| 623 | // these are the current objects structs |
| 624 | egl_context_t * cur_c = get_context(getContext()); |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 625 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 626 | if (ctx != EGL_NO_CONTEXT) { |
| 627 | c = get_context(ctx); |
| 628 | impl_ctx = c->context; |
| 629 | } else { |
| 630 | // no context given, use the implementation of the current context |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 631 | if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE) { |
| 632 | // calling eglMakeCurrent( ..., !=0, !=0, EGL_NO_CONTEXT); |
| 633 | return setError(EGL_BAD_MATCH, EGL_FALSE); |
| 634 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 635 | if (cur_c == NULL) { |
| 636 | // no current context |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 637 | // not an error, there is just no current context. |
| 638 | return EGL_TRUE; |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | // retrieve the underlying implementation's draw EGLSurface |
| 643 | if (draw != EGL_NO_SURFACE) { |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 644 | if (!_d.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 645 | d = get_surface(draw); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 646 | impl_draw = d->surface; |
| 647 | } |
| 648 | |
| 649 | // retrieve the underlying implementation's read EGLSurface |
| 650 | if (read != EGL_NO_SURFACE) { |
Michael Chock | 0673e1e | 2012-06-21 12:53:17 -0700 | [diff] [blame] | 651 | if (!_r.get()) return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 652 | r = get_surface(read); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 653 | impl_read = r->surface; |
| 654 | } |
| 655 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 656 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 657 | EGLBoolean result = dp->makeCurrent(c, cur_c, |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 658 | draw, read, ctx, |
| 659 | impl_draw, impl_read, impl_ctx); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 660 | |
| 661 | if (result == EGL_TRUE) { |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 662 | if (c) { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 663 | setGLHooksThreadSpecific(c->cnx->hooks[c->version]); |
| 664 | egl_tls_t::setContext(ctx); |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 665 | #if EGL_TRACE |
Siva Velusamy | a73a977 | 2012-12-18 14:56:55 -0800 | [diff] [blame] | 666 | if (getEGLDebugLevel() > 0) |
Siva Velusamy | 93a826f | 2011-12-14 12:19:56 -0800 | [diff] [blame] | 667 | GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx); |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 668 | #endif |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 669 | _c.acquire(); |
| 670 | _r.acquire(); |
| 671 | _d.acquire(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 672 | } else { |
| 673 | setGLHooksThreadSpecific(&gHooksNoContext); |
| 674 | egl_tls_t::setContext(EGL_NO_CONTEXT); |
| 675 | } |
Mathias Agopian | 5fecea7 | 2011-08-25 18:38:24 -0700 | [diff] [blame] | 676 | } else { |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 677 | // this will ALOGE the error |
Mathias Agopian | 5fecea7 | 2011-08-25 18:38:24 -0700 | [diff] [blame] | 678 | result = setError(c->cnx->egl.eglGetError(), EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 679 | } |
| 680 | return result; |
| 681 | } |
| 682 | |
| 683 | |
| 684 | EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx, |
| 685 | EGLint attribute, EGLint *value) |
| 686 | { |
| 687 | clearError(); |
| 688 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 689 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 690 | if (!dp) return EGL_FALSE; |
| 691 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 692 | ContextRef _c(dp.get(), ctx); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 693 | if (!_c.get()) return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
| 694 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 695 | egl_context_t * const c = get_context(ctx); |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 696 | return c->cnx->egl.eglQueryContext( |
| 697 | dp->disp.dpy, c->context, attribute, value); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 698 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | EGLContext eglGetCurrentContext(void) |
| 702 | { |
| 703 | // could be called before eglInitialize(), but we wouldn't have a context |
| 704 | // then, and this function would correctly return EGL_NO_CONTEXT. |
| 705 | |
| 706 | clearError(); |
| 707 | |
| 708 | EGLContext ctx = getContext(); |
| 709 | return ctx; |
| 710 | } |
| 711 | |
| 712 | EGLSurface eglGetCurrentSurface(EGLint readdraw) |
| 713 | { |
| 714 | // could be called before eglInitialize(), but we wouldn't have a context |
| 715 | // then, and this function would correctly return EGL_NO_SURFACE. |
| 716 | |
| 717 | clearError(); |
| 718 | |
| 719 | EGLContext ctx = getContext(); |
| 720 | if (ctx) { |
| 721 | egl_context_t const * const c = get_context(ctx); |
| 722 | if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE); |
| 723 | switch (readdraw) { |
| 724 | case EGL_READ: return c->read; |
Jesse Hall | 4774338 | 2013-02-08 11:13:46 -0800 | [diff] [blame] | 725 | case EGL_DRAW: return c->draw; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 726 | default: return setError(EGL_BAD_PARAMETER, EGL_NO_SURFACE); |
| 727 | } |
| 728 | } |
| 729 | return EGL_NO_SURFACE; |
| 730 | } |
| 731 | |
| 732 | EGLDisplay eglGetCurrentDisplay(void) |
| 733 | { |
| 734 | // could be called before eglInitialize(), but we wouldn't have a context |
| 735 | // then, and this function would correctly return EGL_NO_DISPLAY. |
| 736 | |
| 737 | clearError(); |
| 738 | |
| 739 | EGLContext ctx = getContext(); |
| 740 | if (ctx) { |
| 741 | egl_context_t const * const c = get_context(ctx); |
| 742 | if (!c) return setError(EGL_BAD_CONTEXT, EGL_NO_SURFACE); |
| 743 | return c->dpy; |
| 744 | } |
| 745 | return EGL_NO_DISPLAY; |
| 746 | } |
| 747 | |
| 748 | EGLBoolean eglWaitGL(void) |
| 749 | { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 750 | clearError(); |
| 751 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 752 | egl_connection_t* const cnx = &gEGLImpl; |
| 753 | if (!cnx->dso) |
| 754 | return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
| 755 | |
| 756 | return cnx->egl.eglWaitGL(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | EGLBoolean eglWaitNative(EGLint engine) |
| 760 | { |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 761 | clearError(); |
| 762 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 763 | egl_connection_t* const cnx = &gEGLImpl; |
| 764 | if (!cnx->dso) |
| 765 | return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
| 766 | |
| 767 | return cnx->egl.eglWaitNative(engine); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | EGLint eglGetError(void) |
| 771 | { |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 772 | EGLint err = EGL_SUCCESS; |
| 773 | egl_connection_t* const cnx = &gEGLImpl; |
| 774 | if (cnx->dso) { |
| 775 | err = cnx->egl.eglGetError(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 776 | } |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 777 | if (err == EGL_SUCCESS) { |
| 778 | err = egl_tls_t::getError(); |
| 779 | } |
| 780 | return err; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 781 | } |
| 782 | |
Jesse Hall | c07b520 | 2013-07-04 12:08:16 -0700 | [diff] [blame] | 783 | static __eglMustCastToProperFunctionPointerType findBuiltinGLWrapper( |
| 784 | const char* procname) { |
| 785 | const egl_connection_t* cnx = &gEGLImpl; |
| 786 | void* proc = NULL; |
| 787 | |
| 788 | proc = dlsym(cnx->libGles2, procname); |
| 789 | if (proc) return (__eglMustCastToProperFunctionPointerType)proc; |
| 790 | |
| 791 | proc = dlsym(cnx->libGles1, procname); |
| 792 | if (proc) return (__eglMustCastToProperFunctionPointerType)proc; |
| 793 | |
| 794 | return NULL; |
| 795 | } |
| 796 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 797 | __eglMustCastToProperFunctionPointerType eglGetProcAddress(const char *procname) |
| 798 | { |
| 799 | // eglGetProcAddress() could be the very first function called |
| 800 | // in which case we must make sure we've initialized ourselves, this |
| 801 | // happens the first time egl_get_display() is called. |
| 802 | |
| 803 | clearError(); |
| 804 | |
| 805 | if (egl_init_drivers() == EGL_FALSE) { |
| 806 | setError(EGL_BAD_PARAMETER, NULL); |
| 807 | return NULL; |
| 808 | } |
| 809 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 810 | if (FILTER_EXTENSIONS(procname)) { |
Jamie Gennis | aca51c0 | 2011-11-03 17:42:43 -0700 | [diff] [blame] | 811 | return NULL; |
| 812 | } |
| 813 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 814 | __eglMustCastToProperFunctionPointerType addr; |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 815 | addr = findProcAddress(procname, sExtensionMap, NELEM(sExtensionMap)); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 816 | if (addr) return addr; |
| 817 | |
Jesse Hall | c07b520 | 2013-07-04 12:08:16 -0700 | [diff] [blame] | 818 | addr = findBuiltinGLWrapper(procname); |
| 819 | if (addr) return addr; |
Jamie Gennis | aca51c0 | 2011-11-03 17:42:43 -0700 | [diff] [blame] | 820 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 821 | // this protects accesses to sGLExtentionMap and sGLExtentionSlot |
| 822 | pthread_mutex_lock(&sExtensionMapMutex); |
| 823 | |
| 824 | /* |
| 825 | * Since eglGetProcAddress() is not associated to anything, it needs |
| 826 | * to return a function pointer that "works" regardless of what |
| 827 | * the current context is. |
| 828 | * |
| 829 | * For this reason, we return a "forwarder", a small stub that takes |
| 830 | * care of calling the function associated with the context |
| 831 | * currently bound. |
| 832 | * |
| 833 | * We first look for extensions we've already resolved, if we're seeing |
| 834 | * this extension for the first time, we go through all our |
| 835 | * implementations and call eglGetProcAddress() and record the |
| 836 | * result in the appropriate implementation hooks and return the |
| 837 | * address of the forwarder corresponding to that hook set. |
| 838 | * |
| 839 | */ |
| 840 | |
| 841 | const String8 name(procname); |
| 842 | addr = sGLExtentionMap.valueFor(name); |
| 843 | const int slot = sGLExtentionSlot; |
| 844 | |
Steve Block | e6f43dd | 2012-01-06 19:20:56 +0000 | [diff] [blame] | 845 | ALOGE_IF(slot >= MAX_NUMBER_OF_GL_EXTENSIONS, |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 846 | "no more slots for eglGetProcAddress(\"%s\")", |
| 847 | procname); |
| 848 | |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 849 | #if EGL_TRACE |
| 850 | gl_hooks_t *debugHooks = GLTrace_getGLHooks(); |
| 851 | #endif |
| 852 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 853 | if (!addr && (slot < MAX_NUMBER_OF_GL_EXTENSIONS)) { |
| 854 | bool found = false; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 855 | |
| 856 | egl_connection_t* const cnx = &gEGLImpl; |
| 857 | if (cnx->dso && cnx->egl.eglGetProcAddress) { |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 858 | // Extensions are independent of the bound context |
luliuhui | 69d1007 | 2012-08-30 11:15:36 +0800 | [diff] [blame] | 859 | addr = |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 860 | cnx->hooks[egl_connection_t::GLESv1_INDEX]->ext.extensions[slot] = |
| 861 | cnx->hooks[egl_connection_t::GLESv2_INDEX]->ext.extensions[slot] = |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 862 | #if EGL_TRACE |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 863 | debugHooks->ext.extensions[slot] = |
| 864 | gHooksTrace.ext.extensions[slot] = |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 865 | #endif |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 866 | cnx->egl.eglGetProcAddress(procname); |
luliuhui | 69d1007 | 2012-08-30 11:15:36 +0800 | [diff] [blame] | 867 | if (addr) found = true; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 868 | } |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 869 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 870 | if (found) { |
| 871 | addr = gExtensionForwarders[slot]; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 872 | sGLExtentionMap.add(name, addr); |
| 873 | sGLExtentionSlot++; |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | pthread_mutex_unlock(&sExtensionMapMutex); |
| 878 | return addr; |
| 879 | } |
| 880 | |
Jamie Gennis | 28ef8d7 | 2012-04-05 20:34:54 -0700 | [diff] [blame] | 881 | class FrameCompletionThread : public Thread { |
| 882 | public: |
| 883 | |
| 884 | static void queueSync(EGLSyncKHR sync) { |
| 885 | static sp<FrameCompletionThread> thread(new FrameCompletionThread); |
| 886 | static bool running = false; |
| 887 | if (!running) { |
| 888 | thread->run("GPUFrameCompletion"); |
| 889 | running = true; |
| 890 | } |
| 891 | { |
| 892 | Mutex::Autolock lock(thread->mMutex); |
| 893 | ScopedTrace st(ATRACE_TAG, String8::format("kicked off frame %d", |
| 894 | thread->mFramesQueued).string()); |
| 895 | thread->mQueue.push_back(sync); |
| 896 | thread->mCondition.signal(); |
| 897 | thread->mFramesQueued++; |
| 898 | ATRACE_INT("GPU Frames Outstanding", thread->mQueue.size()); |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | private: |
| 903 | FrameCompletionThread() : mFramesQueued(0), mFramesCompleted(0) {} |
| 904 | |
| 905 | virtual bool threadLoop() { |
| 906 | EGLSyncKHR sync; |
| 907 | uint32_t frameNum; |
| 908 | { |
| 909 | Mutex::Autolock lock(mMutex); |
| 910 | while (mQueue.isEmpty()) { |
| 911 | mCondition.wait(mMutex); |
| 912 | } |
| 913 | sync = mQueue[0]; |
| 914 | frameNum = mFramesCompleted; |
| 915 | } |
| 916 | EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
| 917 | { |
| 918 | ScopedTrace st(ATRACE_TAG, String8::format("waiting for frame %d", |
| 919 | frameNum).string()); |
| 920 | EGLint result = eglClientWaitSyncKHR(dpy, sync, 0, EGL_FOREVER_KHR); |
| 921 | if (result == EGL_FALSE) { |
| 922 | ALOGE("FrameCompletion: error waiting for fence: %#x", eglGetError()); |
| 923 | } else if (result == EGL_TIMEOUT_EXPIRED_KHR) { |
| 924 | ALOGE("FrameCompletion: timeout waiting for fence"); |
| 925 | } |
| 926 | eglDestroySyncKHR(dpy, sync); |
| 927 | } |
| 928 | { |
| 929 | Mutex::Autolock lock(mMutex); |
| 930 | mQueue.removeAt(0); |
| 931 | mFramesCompleted++; |
| 932 | ATRACE_INT("GPU Frames Outstanding", mQueue.size()); |
| 933 | } |
| 934 | return true; |
| 935 | } |
| 936 | |
| 937 | uint32_t mFramesQueued; |
| 938 | uint32_t mFramesCompleted; |
| 939 | Vector<EGLSyncKHR> mQueue; |
| 940 | Condition mCondition; |
| 941 | Mutex mMutex; |
| 942 | }; |
| 943 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 944 | EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface draw) |
| 945 | { |
Jamie Gennis | 1c8e95c | 2012-02-23 19:27:23 -0800 | [diff] [blame] | 946 | ATRACE_CALL(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 947 | clearError(); |
| 948 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 949 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 950 | if (!dp) return EGL_FALSE; |
| 951 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 952 | SurfaceRef _s(dp.get(), draw); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 953 | if (!_s.get()) |
| 954 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 955 | |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 956 | #if EGL_TRACE |
Siva Velusamy | a73a977 | 2012-12-18 14:56:55 -0800 | [diff] [blame] | 957 | gl_hooks_t const *trace_hooks = getGLTraceThreadSpecific(); |
| 958 | if (getEGLDebugLevel() > 0) { |
| 959 | if (trace_hooks == NULL) { |
| 960 | if (GLTrace_start() < 0) { |
| 961 | ALOGE("Disabling Tracer for OpenGL ES"); |
| 962 | setEGLDebugLevel(0); |
| 963 | } else { |
| 964 | // switch over to the trace version of hooks |
| 965 | EGLContext ctx = egl_tls_t::getContext(); |
| 966 | egl_context_t * const c = get_context(ctx); |
| 967 | if (c) { |
| 968 | setGLHooksThreadSpecific(c->cnx->hooks[c->version]); |
| 969 | GLTrace_eglMakeCurrent(c->version, c->cnx->hooks[c->version], ctx); |
| 970 | } |
| 971 | } |
| 972 | } |
| 973 | |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 974 | GLTrace_eglSwapBuffers(dpy, draw); |
Siva Velusamy | a73a977 | 2012-12-18 14:56:55 -0800 | [diff] [blame] | 975 | } else if (trace_hooks != NULL) { |
| 976 | // tracing is now disabled, so switch back to the non trace version |
| 977 | EGLContext ctx = egl_tls_t::getContext(); |
| 978 | egl_context_t * const c = get_context(ctx); |
| 979 | if (c) setGLHooksThreadSpecific(c->cnx->hooks[c->version]); |
| 980 | GLTrace_stop(); |
| 981 | } |
Siva Velusamy | 0469dd6 | 2011-11-30 15:05:37 -0800 | [diff] [blame] | 982 | #endif |
| 983 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 984 | egl_surface_t const * const s = get_surface(draw); |
Mathias Agopian | 7db993a | 2012-03-25 00:49:46 -0700 | [diff] [blame] | 985 | |
Mathias Agopian | ed6d08b | 2013-04-16 16:39:46 -0700 | [diff] [blame] | 986 | if (CC_UNLIKELY(dp->traceGpuCompletion)) { |
| 987 | EGLSyncKHR sync = eglCreateSyncKHR(dpy, EGL_SYNC_FENCE_KHR, NULL); |
| 988 | if (sync != EGL_NO_SYNC_KHR) { |
| 989 | FrameCompletionThread::queueSync(sync); |
| 990 | } |
| 991 | } |
| 992 | |
Mathias Agopian | 7db993a | 2012-03-25 00:49:46 -0700 | [diff] [blame] | 993 | if (CC_UNLIKELY(dp->finishOnSwap)) { |
| 994 | uint32_t pixel; |
| 995 | egl_context_t * const c = get_context( egl_tls_t::getContext() ); |
| 996 | if (c) { |
| 997 | // glReadPixels() ensures that the frame is complete |
| 998 | s->cnx->hooks[c->version]->gl.glReadPixels(0,0,1,1, |
| 999 | GL_RGBA,GL_UNSIGNED_BYTE,&pixel); |
| 1000 | } |
| 1001 | } |
| 1002 | |
Mathias Agopian | ed6d08b | 2013-04-16 16:39:46 -0700 | [diff] [blame] | 1003 | return s->cnx->egl.eglSwapBuffers(dp->disp.dpy, s->surface); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface, |
| 1007 | NativePixmapType target) |
| 1008 | { |
| 1009 | clearError(); |
| 1010 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1011 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1012 | if (!dp) return EGL_FALSE; |
| 1013 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1014 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1015 | if (!_s.get()) |
| 1016 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1017 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1018 | egl_surface_t const * const s = get_surface(surface); |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1019 | return s->cnx->egl.eglCopyBuffers(dp->disp.dpy, s->surface, target); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | const char* eglQueryString(EGLDisplay dpy, EGLint name) |
| 1023 | { |
| 1024 | clearError(); |
| 1025 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1026 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1027 | if (!dp) return (const char *) NULL; |
| 1028 | |
| 1029 | switch (name) { |
| 1030 | case EGL_VENDOR: |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 1031 | return dp->getVendorString(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1032 | case EGL_VERSION: |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 1033 | return dp->getVersionString(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1034 | case EGL_EXTENSIONS: |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 1035 | return dp->getExtensionString(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1036 | case EGL_CLIENT_APIS: |
Mathias Agopian | 4b9511c | 2011-11-13 23:52:47 -0800 | [diff] [blame] | 1037 | return dp->getClientApiString(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1038 | } |
| 1039 | return setError(EGL_BAD_PARAMETER, (const char *)0); |
| 1040 | } |
| 1041 | |
Mathias Agopian | ca08833 | 2013-03-28 17:44:13 -0700 | [diff] [blame] | 1042 | EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name) |
| 1043 | { |
| 1044 | clearError(); |
| 1045 | |
| 1046 | const egl_display_ptr dp = validate_display(dpy); |
| 1047 | if (!dp) return (const char *) NULL; |
| 1048 | |
| 1049 | switch (name) { |
| 1050 | case EGL_VENDOR: |
| 1051 | return dp->disp.queryString.vendor; |
| 1052 | case EGL_VERSION: |
| 1053 | return dp->disp.queryString.version; |
| 1054 | case EGL_EXTENSIONS: |
| 1055 | return dp->disp.queryString.extensions; |
| 1056 | case EGL_CLIENT_APIS: |
| 1057 | return dp->disp.queryString.clientApi; |
| 1058 | } |
| 1059 | return setError(EGL_BAD_PARAMETER, (const char *)0); |
| 1060 | } |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1061 | |
| 1062 | // ---------------------------------------------------------------------------- |
| 1063 | // EGL 1.1 |
| 1064 | // ---------------------------------------------------------------------------- |
| 1065 | |
| 1066 | EGLBoolean eglSurfaceAttrib( |
| 1067 | EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) |
| 1068 | { |
| 1069 | clearError(); |
| 1070 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1071 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1072 | if (!dp) return EGL_FALSE; |
| 1073 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1074 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1075 | if (!_s.get()) |
| 1076 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1077 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1078 | egl_surface_t const * const s = get_surface(surface); |
| 1079 | if (s->cnx->egl.eglSurfaceAttrib) { |
| 1080 | return s->cnx->egl.eglSurfaceAttrib( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1081 | dp->disp.dpy, s->surface, attribute, value); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1082 | } |
| 1083 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
| 1084 | } |
| 1085 | |
| 1086 | EGLBoolean eglBindTexImage( |
| 1087 | EGLDisplay dpy, EGLSurface surface, EGLint buffer) |
| 1088 | { |
| 1089 | clearError(); |
| 1090 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1091 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1092 | if (!dp) return EGL_FALSE; |
| 1093 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1094 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1095 | if (!_s.get()) |
| 1096 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1097 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1098 | egl_surface_t const * const s = get_surface(surface); |
| 1099 | if (s->cnx->egl.eglBindTexImage) { |
| 1100 | return s->cnx->egl.eglBindTexImage( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1101 | dp->disp.dpy, s->surface, buffer); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1102 | } |
| 1103 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
| 1104 | } |
| 1105 | |
| 1106 | EGLBoolean eglReleaseTexImage( |
| 1107 | EGLDisplay dpy, EGLSurface surface, EGLint buffer) |
| 1108 | { |
| 1109 | clearError(); |
| 1110 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1111 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1112 | if (!dp) return EGL_FALSE; |
| 1113 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1114 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1115 | if (!_s.get()) |
| 1116 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1117 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1118 | egl_surface_t const * const s = get_surface(surface); |
| 1119 | if (s->cnx->egl.eglReleaseTexImage) { |
| 1120 | return s->cnx->egl.eglReleaseTexImage( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1121 | dp->disp.dpy, s->surface, buffer); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1122 | } |
| 1123 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
| 1124 | } |
| 1125 | |
| 1126 | EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) |
| 1127 | { |
| 1128 | clearError(); |
| 1129 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1130 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1131 | if (!dp) return EGL_FALSE; |
| 1132 | |
| 1133 | EGLBoolean res = EGL_TRUE; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1134 | egl_connection_t* const cnx = &gEGLImpl; |
| 1135 | if (cnx->dso && cnx->egl.eglSwapInterval) { |
| 1136 | res = cnx->egl.eglSwapInterval(dp->disp.dpy, interval); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1137 | } |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1138 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1139 | return res; |
| 1140 | } |
| 1141 | |
| 1142 | |
| 1143 | // ---------------------------------------------------------------------------- |
| 1144 | // EGL 1.2 |
| 1145 | // ---------------------------------------------------------------------------- |
| 1146 | |
| 1147 | EGLBoolean eglWaitClient(void) |
| 1148 | { |
| 1149 | clearError(); |
| 1150 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1151 | egl_connection_t* const cnx = &gEGLImpl; |
| 1152 | if (!cnx->dso) |
| 1153 | return setError(EGL_BAD_CONTEXT, EGL_FALSE); |
| 1154 | |
| 1155 | EGLBoolean res; |
| 1156 | if (cnx->egl.eglWaitClient) { |
| 1157 | res = cnx->egl.eglWaitClient(); |
| 1158 | } else { |
| 1159 | res = cnx->egl.eglWaitGL(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1160 | } |
| 1161 | return res; |
| 1162 | } |
| 1163 | |
| 1164 | EGLBoolean eglBindAPI(EGLenum api) |
| 1165 | { |
| 1166 | clearError(); |
| 1167 | |
| 1168 | if (egl_init_drivers() == EGL_FALSE) { |
| 1169 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
| 1170 | } |
| 1171 | |
| 1172 | // bind this API on all EGLs |
| 1173 | EGLBoolean res = EGL_TRUE; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1174 | egl_connection_t* const cnx = &gEGLImpl; |
| 1175 | if (cnx->dso && cnx->egl.eglBindAPI) { |
| 1176 | res = cnx->egl.eglBindAPI(api); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1177 | } |
| 1178 | return res; |
| 1179 | } |
| 1180 | |
| 1181 | EGLenum eglQueryAPI(void) |
| 1182 | { |
| 1183 | clearError(); |
| 1184 | |
| 1185 | if (egl_init_drivers() == EGL_FALSE) { |
| 1186 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
| 1187 | } |
| 1188 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1189 | egl_connection_t* const cnx = &gEGLImpl; |
| 1190 | if (cnx->dso && cnx->egl.eglQueryAPI) { |
| 1191 | return cnx->egl.eglQueryAPI(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1192 | } |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1193 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1194 | // or, it can only be OpenGL ES |
| 1195 | return EGL_OPENGL_ES_API; |
| 1196 | } |
| 1197 | |
| 1198 | EGLBoolean eglReleaseThread(void) |
| 1199 | { |
| 1200 | clearError(); |
| 1201 | |
Mathias Agopian | 4e620dd | 2013-05-30 16:07:36 -0700 | [diff] [blame] | 1202 | #if EGL_TRACE |
| 1203 | if (getEGLDebugLevel() > 0) |
| 1204 | GLTrace_eglReleaseThread(); |
| 1205 | #endif |
| 1206 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1207 | // If there is context bound to the thread, release it |
Mathias Agopian | fb87e54 | 2012-01-30 18:20:52 -0800 | [diff] [blame] | 1208 | egl_display_t::loseCurrent(get_context(getContext())); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1209 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1210 | egl_connection_t* const cnx = &gEGLImpl; |
| 1211 | if (cnx->dso && cnx->egl.eglReleaseThread) { |
| 1212 | cnx->egl.eglReleaseThread(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1213 | } |
| 1214 | egl_tls_t::clearTLS(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1215 | return EGL_TRUE; |
| 1216 | } |
| 1217 | |
| 1218 | EGLSurface eglCreatePbufferFromClientBuffer( |
| 1219 | EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, |
| 1220 | EGLConfig config, const EGLint *attrib_list) |
| 1221 | { |
| 1222 | clearError(); |
| 1223 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1224 | egl_connection_t* cnx = NULL; |
| 1225 | const egl_display_ptr dp = validate_display_connection(dpy, cnx); |
| 1226 | if (!dp) return EGL_FALSE; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1227 | if (cnx->egl.eglCreatePbufferFromClientBuffer) { |
| 1228 | return cnx->egl.eglCreatePbufferFromClientBuffer( |
Mathias Agopian | 7773c43 | 2012-02-13 20:06:08 -0800 | [diff] [blame] | 1229 | dp->disp.dpy, buftype, buffer, config, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1230 | } |
| 1231 | return setError(EGL_BAD_CONFIG, EGL_NO_SURFACE); |
| 1232 | } |
| 1233 | |
| 1234 | // ---------------------------------------------------------------------------- |
| 1235 | // EGL_EGLEXT_VERSION 3 |
| 1236 | // ---------------------------------------------------------------------------- |
| 1237 | |
| 1238 | EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, |
| 1239 | const EGLint *attrib_list) |
| 1240 | { |
| 1241 | clearError(); |
| 1242 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1243 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1244 | if (!dp) return EGL_FALSE; |
| 1245 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1246 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1247 | if (!_s.get()) |
| 1248 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1249 | |
| 1250 | egl_surface_t const * const s = get_surface(surface); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1251 | if (s->cnx->egl.eglLockSurfaceKHR) { |
| 1252 | return s->cnx->egl.eglLockSurfaceKHR( |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1253 | dp->disp.dpy, s->surface, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1254 | } |
| 1255 | return setError(EGL_BAD_DISPLAY, EGL_FALSE); |
| 1256 | } |
| 1257 | |
| 1258 | EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface) |
| 1259 | { |
| 1260 | clearError(); |
| 1261 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1262 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1263 | if (!dp) return EGL_FALSE; |
| 1264 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1265 | SurfaceRef _s(dp.get(), surface); |
Mathias Agopian | 5b287a6 | 2011-05-16 18:58:55 -0700 | [diff] [blame] | 1266 | if (!_s.get()) |
| 1267 | return setError(EGL_BAD_SURFACE, EGL_FALSE); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1268 | |
| 1269 | egl_surface_t const * const s = get_surface(surface); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1270 | if (s->cnx->egl.eglUnlockSurfaceKHR) { |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1271 | return s->cnx->egl.eglUnlockSurfaceKHR(dp->disp.dpy, s->surface); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1272 | } |
| 1273 | return setError(EGL_BAD_DISPLAY, EGL_FALSE); |
| 1274 | } |
| 1275 | |
| 1276 | EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, |
| 1277 | EGLClientBuffer buffer, const EGLint *attrib_list) |
| 1278 | { |
| 1279 | clearError(); |
| 1280 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1281 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1282 | if (!dp) return EGL_NO_IMAGE_KHR; |
| 1283 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1284 | ContextRef _c(dp.get(), ctx); |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1285 | egl_context_t * const c = _c.get(); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1286 | |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1287 | EGLImageKHR result = EGL_NO_IMAGE_KHR; |
| 1288 | egl_connection_t* const cnx = &gEGLImpl; |
| 1289 | if (cnx->dso && cnx->egl.eglCreateImageKHR) { |
| 1290 | result = cnx->egl.eglCreateImageKHR( |
| 1291 | dp->disp.dpy, |
| 1292 | c ? c->context : EGL_NO_CONTEXT, |
| 1293 | target, buffer, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1294 | } |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1295 | return result; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) |
| 1299 | { |
| 1300 | clearError(); |
| 1301 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1302 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1303 | if (!dp) return EGL_FALSE; |
| 1304 | |
Steven Holte | 646a5c5 | 2012-06-04 20:02:11 -0700 | [diff] [blame] | 1305 | EGLBoolean result = EGL_FALSE; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1306 | egl_connection_t* const cnx = &gEGLImpl; |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1307 | if (cnx->dso && cnx->egl.eglDestroyImageKHR) { |
Steven Holte | 646a5c5 | 2012-06-04 20:02:11 -0700 | [diff] [blame] | 1308 | result = cnx->egl.eglDestroyImageKHR(dp->disp.dpy, img); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1309 | } |
Steven Holte | 646a5c5 | 2012-06-04 20:02:11 -0700 | [diff] [blame] | 1310 | return result; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1311 | } |
| 1312 | |
| 1313 | // ---------------------------------------------------------------------------- |
| 1314 | // EGL_EGLEXT_VERSION 5 |
| 1315 | // ---------------------------------------------------------------------------- |
| 1316 | |
| 1317 | |
| 1318 | EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *attrib_list) |
| 1319 | { |
| 1320 | clearError(); |
| 1321 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1322 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1323 | if (!dp) return EGL_NO_SYNC_KHR; |
| 1324 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1325 | EGLSyncKHR result = EGL_NO_SYNC_KHR; |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1326 | egl_connection_t* const cnx = &gEGLImpl; |
| 1327 | if (cnx->dso && cnx->egl.eglCreateSyncKHR) { |
| 1328 | result = cnx->egl.eglCreateSyncKHR(dp->disp.dpy, type, attrib_list); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1329 | } |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1330 | return result; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync) |
| 1334 | { |
| 1335 | clearError(); |
| 1336 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1337 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1338 | if (!dp) return EGL_FALSE; |
| 1339 | |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1340 | EGLBoolean result = EGL_FALSE; |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1341 | egl_connection_t* const cnx = &gEGLImpl; |
| 1342 | if (cnx->dso && cnx->egl.eglDestroySyncKHR) { |
| 1343 | result = cnx->egl.eglDestroySyncKHR(dp->disp.dpy, sync); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1344 | } |
| 1345 | return result; |
| 1346 | } |
| 1347 | |
Mathias Agopian | e9b3dfb | 2013-03-27 14:30:19 -0700 | [diff] [blame] | 1348 | EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) { |
| 1349 | clearError(); |
| 1350 | |
| 1351 | const egl_display_ptr dp = validate_display(dpy); |
| 1352 | if (!dp) return EGL_FALSE; |
| 1353 | |
| 1354 | EGLBoolean result = EGL_FALSE; |
| 1355 | egl_connection_t* const cnx = &gEGLImpl; |
| 1356 | if (cnx->dso && cnx->egl.eglSignalSyncKHR) { |
| 1357 | result = cnx->egl.eglSignalSyncKHR( |
| 1358 | dp->disp.dpy, sync, mode); |
| 1359 | } |
| 1360 | return result; |
| 1361 | } |
| 1362 | |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1363 | EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, |
| 1364 | EGLint flags, EGLTimeKHR timeout) |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1365 | { |
| 1366 | clearError(); |
| 1367 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1368 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1369 | if (!dp) return EGL_FALSE; |
| 1370 | |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1371 | EGLBoolean result = EGL_FALSE; |
| 1372 | egl_connection_t* const cnx = &gEGLImpl; |
| 1373 | if (cnx->dso && cnx->egl.eglClientWaitSyncKHR) { |
| 1374 | result = cnx->egl.eglClientWaitSyncKHR( |
| 1375 | dp->disp.dpy, sync, flags, timeout); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1376 | } |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1377 | return result; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1378 | } |
| 1379 | |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1380 | EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, |
| 1381 | EGLint attribute, EGLint *value) |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1382 | { |
| 1383 | clearError(); |
| 1384 | |
Jesse Hall | b29e5e8 | 2012-04-04 16:53:42 -0700 | [diff] [blame] | 1385 | const egl_display_ptr dp = validate_display(dpy); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1386 | if (!dp) return EGL_FALSE; |
| 1387 | |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1388 | EGLBoolean result = EGL_FALSE; |
| 1389 | egl_connection_t* const cnx = &gEGLImpl; |
| 1390 | if (cnx->dso && cnx->egl.eglGetSyncAttribKHR) { |
| 1391 | result = cnx->egl.eglGetSyncAttribKHR( |
| 1392 | dp->disp.dpy, sync, attribute, value); |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1393 | } |
Mathias Agopian | 7c0441a | 2012-02-14 17:14:36 -0800 | [diff] [blame] | 1394 | return result; |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1395 | } |
| 1396 | |
| 1397 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 2bb7168 | 2013-03-27 17:32:41 -0700 | [diff] [blame] | 1398 | // EGL_EGLEXT_VERSION 15 |
| 1399 | // ---------------------------------------------------------------------------- |
| 1400 | |
| 1401 | EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) { |
| 1402 | clearError(); |
| 1403 | const egl_display_ptr dp = validate_display(dpy); |
| 1404 | if (!dp) return EGL_FALSE; |
| 1405 | EGLint result = EGL_FALSE; |
| 1406 | egl_connection_t* const cnx = &gEGLImpl; |
| 1407 | if (cnx->dso && cnx->egl.eglWaitSyncKHR) { |
| 1408 | result = cnx->egl.eglWaitSyncKHR(dp->disp.dpy, sync, flags); |
| 1409 | } |
| 1410 | return result; |
| 1411 | } |
| 1412 | |
| 1413 | // ---------------------------------------------------------------------------- |
Mathias Agopian | 518ec11 | 2011-05-13 16:21:08 -0700 | [diff] [blame] | 1414 | // ANDROID extensions |
| 1415 | // ---------------------------------------------------------------------------- |
| 1416 | |
Jamie Gennis | 331841b | 2012-09-06 14:52:00 -0700 | [diff] [blame] | 1417 | EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync) |
| 1418 | { |
| 1419 | clearError(); |
| 1420 | |
| 1421 | const egl_display_ptr dp = validate_display(dpy); |
| 1422 | if (!dp) return EGL_NO_NATIVE_FENCE_FD_ANDROID; |
| 1423 | |
| 1424 | EGLint result = EGL_NO_NATIVE_FENCE_FD_ANDROID; |
| 1425 | egl_connection_t* const cnx = &gEGLImpl; |
| 1426 | if (cnx->dso && cnx->egl.eglDupNativeFenceFDANDROID) { |
| 1427 | result = cnx->egl.eglDupNativeFenceFDANDROID(dp->disp.dpy, sync); |
| 1428 | } |
| 1429 | return result; |
| 1430 | } |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1431 | |
Andy McFadden | 7284145 | 2013-03-01 16:25:32 -0800 | [diff] [blame] | 1432 | EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface, |
| 1433 | EGLnsecsANDROID time) |
| 1434 | { |
| 1435 | clearError(); |
| 1436 | |
| 1437 | const egl_display_ptr dp = validate_display(dpy); |
| 1438 | if (!dp) { |
| 1439 | return EGL_FALSE; |
| 1440 | } |
| 1441 | |
| 1442 | SurfaceRef _s(dp.get(), surface); |
| 1443 | if (!_s.get()) { |
| 1444 | setError(EGL_BAD_SURFACE, EGL_FALSE); |
| 1445 | return EGL_FALSE; |
| 1446 | } |
| 1447 | |
| 1448 | egl_surface_t const * const s = get_surface(surface); |
| 1449 | native_window_set_buffers_timestamp(s->win.get(), time); |
| 1450 | |
| 1451 | return EGL_TRUE; |
| 1452 | } |
| 1453 | |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1454 | // ---------------------------------------------------------------------------- |
| 1455 | // NVIDIA extensions |
| 1456 | // ---------------------------------------------------------------------------- |
| 1457 | EGLuint64NV eglGetSystemTimeFrequencyNV() |
| 1458 | { |
| 1459 | clearError(); |
| 1460 | |
| 1461 | if (egl_init_drivers() == EGL_FALSE) { |
| 1462 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
| 1463 | } |
| 1464 | |
| 1465 | EGLuint64NV ret = 0; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1466 | egl_connection_t* const cnx = &gEGLImpl; |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1467 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1468 | if (cnx->dso && cnx->egl.eglGetSystemTimeFrequencyNV) { |
| 1469 | return cnx->egl.eglGetSystemTimeFrequencyNV(); |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1470 | } |
| 1471 | |
Mathias Agopian | 0e8bbee | 2011-10-05 19:15:05 -0700 | [diff] [blame] | 1472 | return setErrorQuiet(EGL_BAD_DISPLAY, 0); |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | EGLuint64NV eglGetSystemTimeNV() |
| 1476 | { |
| 1477 | clearError(); |
| 1478 | |
| 1479 | if (egl_init_drivers() == EGL_FALSE) { |
| 1480 | return setError(EGL_BAD_PARAMETER, EGL_FALSE); |
| 1481 | } |
| 1482 | |
| 1483 | EGLuint64NV ret = 0; |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1484 | egl_connection_t* const cnx = &gEGLImpl; |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1485 | |
Mathias Agopian | ada798b | 2012-02-13 17:09:30 -0800 | [diff] [blame] | 1486 | if (cnx->dso && cnx->egl.eglGetSystemTimeNV) { |
| 1487 | return cnx->egl.eglGetSystemTimeNV(); |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1488 | } |
| 1489 | |
Mathias Agopian | 0e8bbee | 2011-10-05 19:15:05 -0700 | [diff] [blame] | 1490 | return setErrorQuiet(EGL_BAD_DISPLAY, 0); |
Jonas Yang | 1c3d72a | 2011-08-26 20:04:39 +0800 | [diff] [blame] | 1491 | } |