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