egl: reset blob cache set/get functions on terminate
[mesa.git] / src / egl / main / eglapi.c
1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * Copyright 2009-2010 Chia-I Wu <olvaffe@gmail.com>
5 * Copyright 2010-2011 LunarG, Inc.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the
10 * "Software"), to deal in the Software without restriction, including
11 * without limitation the rights to use, copy, modify, merge, publish,
12 * distribute, sub license, and/or sell copies of the Software, and to
13 * permit persons to whom the Software is furnished to do so, subject to
14 * the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the
17 * next paragraph) shall be included in all copies or substantial portions
18 * of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 *
28 **************************************************************************/
29
30
31 /**
32 * Public EGL API entrypoints
33 *
34 * Generally, we use the EGLDisplay parameter as a key to lookup the
35 * appropriate device driver handle, then jump though the driver's
36 * dispatch table to handle the function.
37 *
38 * That allows us the option of supporting multiple, simultaneous,
39 * heterogeneous hardware devices in the future.
40 *
41 * The EGLDisplay, EGLConfig, EGLContext and EGLSurface types are
42 * opaque handles. Internal objects are linked to a display to
43 * create the handles.
44 *
45 * For each public API entry point, the opaque handles are looked up
46 * before being dispatched to the drivers. When it fails to look up
47 * a handle, one of
48 *
49 * EGL_BAD_DISPLAY
50 * EGL_BAD_CONFIG
51 * EGL_BAD_CONTEXT
52 * EGL_BAD_SURFACE
53 * EGL_BAD_SCREEN_MESA
54 * EGL_BAD_MODE_MESA
55 *
56 * is generated and the driver function is not called. An
57 * uninitialized EGLDisplay has no driver associated with it. When
58 * such display is detected,
59 *
60 * EGL_NOT_INITIALIZED
61 *
62 * is generated.
63 *
64 * Some of the entry points use current display, context, or surface
65 * implicitly. For such entry points, the implicit objects are also
66 * checked before calling the driver function. Other than the
67 * errors listed above,
68 *
69 * EGL_BAD_CURRENT_SURFACE
70 *
71 * may also be generated.
72 *
73 * Notes on naming conventions:
74 *
75 * eglFooBar - public EGL function
76 * EGL_FOO_BAR - public EGL token
77 * EGLDatatype - public EGL datatype
78 *
79 * _eglFooBar - private EGL function
80 * _EGLDatatype - private EGL datatype, typedef'd struct
81 * _egl_struct - private EGL struct, non-typedef'd
82 *
83 */
84
85
86 #ifdef USE_LIBGLVND
87 #define EGLAPI
88 #undef PUBLIC
89 #define PUBLIC
90 #endif
91
92 #include <stdio.h>
93 #include <stdlib.h>
94 #include <string.h>
95 #include "c99_compat.h"
96 #include "c11/threads.h"
97 #include "util/macros.h"
98
99 #include "eglapi.h"
100 #include "egldefines.h"
101 #include "eglglobals.h"
102 #include "eglcontext.h"
103 #include "egldisplay.h"
104 #include "egltypedefs.h"
105 #include "eglcurrent.h"
106 #include "egldevice.h"
107 #include "egldriver.h"
108 #include "eglsurface.h"
109 #include "eglconfig.h"
110 #include "eglimage.h"
111 #include "eglsync.h"
112
113 #include "GL/mesa_glinterop.h"
114
115 /**
116 * Macros to help return an API entrypoint.
117 *
118 * These macros will unlock the display and record the error code.
119 */
120 #define RETURN_EGL_ERROR(disp, err, ret) \
121 do { \
122 if (disp) \
123 _eglUnlockDisplay(disp); \
124 /* EGL error codes are non-zero */ \
125 if (err) \
126 _eglError(err, __func__); \
127 return ret; \
128 } while (0)
129
130 #define RETURN_EGL_SUCCESS(disp, ret) \
131 RETURN_EGL_ERROR(disp, EGL_SUCCESS, ret)
132
133 /* record EGL_SUCCESS only when ret evaluates to true */
134 #define RETURN_EGL_EVAL(disp, ret) \
135 RETURN_EGL_ERROR(disp, (ret) ? EGL_SUCCESS : 0, ret)
136
137
138 /*
139 * A bunch of macros and checks to simplify error checking.
140 */
141
142 #define _EGL_CHECK_DISPLAY(disp, ret, drv) \
143 do { \
144 drv = _eglCheckDisplay(disp, __func__); \
145 if (!drv) \
146 RETURN_EGL_ERROR(disp, 0, ret); \
147 } while (0)
148
149 #define _EGL_CHECK_OBJECT(disp, type, obj, ret, drv) \
150 do { \
151 drv = _eglCheck ## type(disp, obj, __func__); \
152 if (!drv) \
153 RETURN_EGL_ERROR(disp, 0, ret); \
154 } while (0)
155
156 #define _EGL_CHECK_SURFACE(disp, surf, ret, drv) \
157 _EGL_CHECK_OBJECT(disp, Surface, surf, ret, drv)
158
159 #define _EGL_CHECK_CONTEXT(disp, context, ret, drv) \
160 _EGL_CHECK_OBJECT(disp, Context, context, ret, drv)
161
162 #define _EGL_CHECK_CONFIG(disp, conf, ret, drv) \
163 _EGL_CHECK_OBJECT(disp, Config, conf, ret, drv)
164
165 #define _EGL_CHECK_SYNC(disp, s, ret, drv) \
166 _EGL_CHECK_OBJECT(disp, Sync, s, ret, drv)
167
168
169 struct _egl_entrypoint {
170 const char *name;
171 _EGLProc function;
172 };
173
174
175 static inline _EGLDriver *
176 _eglCheckDisplay(_EGLDisplay *disp, const char *msg)
177 {
178 if (!disp) {
179 _eglError(EGL_BAD_DISPLAY, msg);
180 return NULL;
181 }
182 if (!disp->Initialized) {
183 _eglError(EGL_NOT_INITIALIZED, msg);
184 return NULL;
185 }
186 return disp->Driver;
187 }
188
189
190 static inline _EGLDriver *
191 _eglCheckSurface(_EGLDisplay *disp, _EGLSurface *surf, const char *msg)
192 {
193 _EGLDriver *drv = _eglCheckDisplay(disp, msg);
194 if (!drv)
195 return NULL;
196 if (!surf) {
197 _eglError(EGL_BAD_SURFACE, msg);
198 return NULL;
199 }
200 return drv;
201 }
202
203
204 static inline _EGLDriver *
205 _eglCheckContext(_EGLDisplay *disp, _EGLContext *context, const char *msg)
206 {
207 _EGLDriver *drv = _eglCheckDisplay(disp, msg);
208 if (!drv)
209 return NULL;
210 if (!context) {
211 _eglError(EGL_BAD_CONTEXT, msg);
212 return NULL;
213 }
214 return drv;
215 }
216
217
218 static inline _EGLDriver *
219 _eglCheckConfig(_EGLDisplay *disp, _EGLConfig *conf, const char *msg)
220 {
221 _EGLDriver *drv = _eglCheckDisplay(disp, msg);
222 if (!drv)
223 return NULL;
224 if (!conf) {
225 _eglError(EGL_BAD_CONFIG, msg);
226 return NULL;
227 }
228 return drv;
229 }
230
231
232 static inline _EGLDriver *
233 _eglCheckSync(_EGLDisplay *disp, _EGLSync *s, const char *msg)
234 {
235 _EGLDriver *drv = _eglCheckDisplay(disp, msg);
236 if (!drv)
237 return NULL;
238 if (!s) {
239 _eglError(EGL_BAD_PARAMETER, msg);
240 return NULL;
241 }
242 return drv;
243 }
244
245
246 /**
247 * Lookup and lock a display.
248 */
249 static inline _EGLDisplay *
250 _eglLockDisplay(EGLDisplay dpy)
251 {
252 _EGLDisplay *disp = _eglLookupDisplay(dpy);
253 if (disp)
254 mtx_lock(&disp->Mutex);
255 return disp;
256 }
257
258
259 /**
260 * Unlock a display.
261 */
262 static inline void
263 _eglUnlockDisplay(_EGLDisplay *disp)
264 {
265 mtx_unlock(&disp->Mutex);
266 }
267
268 static EGLBoolean
269 _eglSetFuncName(const char *funcName, _EGLDisplay *disp, EGLenum objectType, _EGLResource *object)
270 {
271 _EGLThreadInfo *thr = _eglGetCurrentThread();
272 if (!_eglIsCurrentThreadDummy()) {
273 thr->CurrentFuncName = funcName;
274 thr->CurrentObjectLabel = NULL;
275
276 if (objectType == EGL_OBJECT_THREAD_KHR)
277 thr->CurrentObjectLabel = thr->Label;
278 else if (objectType == EGL_OBJECT_DISPLAY_KHR && disp)
279 thr->CurrentObjectLabel = disp->Label;
280 else if (object)
281 thr->CurrentObjectLabel = object->Label;
282
283 return EGL_TRUE;
284 }
285
286 _eglDebugReport(EGL_BAD_ALLOC, funcName, EGL_DEBUG_MSG_CRITICAL_KHR, NULL);
287 return EGL_FALSE;
288 }
289
290 #define _EGL_FUNC_START(disp, objectType, object, ret) \
291 do { \
292 if (!_eglSetFuncName(__func__, disp, objectType, (_EGLResource *) object)) { \
293 if (disp) \
294 _eglUnlockDisplay(disp); \
295 return ret; \
296 } \
297 } while(0)
298
299 /**
300 * Convert an attribute list from EGLint[] to EGLAttrib[].
301 *
302 * Return an EGL error code. The output parameter out_attrib_list is modified
303 * only on success.
304 */
305 static EGLint
306 _eglConvertIntsToAttribs(const EGLint *int_list, EGLAttrib **out_attrib_list)
307 {
308 size_t len = 0;
309 EGLAttrib *attrib_list;
310
311 if (int_list) {
312 while (int_list[2*len] != EGL_NONE)
313 ++len;
314 }
315
316 if (len == 0) {
317 *out_attrib_list = NULL;
318 return EGL_SUCCESS;
319 }
320
321 if (2*len + 1 > SIZE_MAX / sizeof(EGLAttrib))
322 return EGL_BAD_ALLOC;
323
324 attrib_list = malloc((2*len + 1) * sizeof(EGLAttrib));
325 if (!attrib_list)
326 return EGL_BAD_ALLOC;
327
328 for (size_t i = 0; i < len; ++i) {
329 attrib_list[2*i + 0] = int_list[2*i + 0];
330 attrib_list[2*i + 1] = int_list[2*i + 1];
331 }
332
333 attrib_list[2*len] = EGL_NONE;
334
335 *out_attrib_list = attrib_list;
336 return EGL_SUCCESS;
337 }
338
339
340 static EGLint *
341 _eglConvertAttribsToInt(const EGLAttrib *attr_list)
342 {
343 size_t size = _eglNumAttribs(attr_list);
344 EGLint *int_attribs = NULL;
345
346 /* Convert attributes from EGLAttrib[] to EGLint[] */
347 if (size) {
348 int_attribs = calloc(size, sizeof(int_attribs[0]));
349 if (!int_attribs)
350 return NULL;
351
352 for (size_t i = 0; i < size; i++)
353 int_attribs[i] = attr_list[i];
354 }
355 return int_attribs;
356 }
357
358
359 /**
360 * This is typically the first EGL function that an application calls.
361 * It associates a private _EGLDisplay object to the native display.
362 */
363 EGLDisplay EGLAPIENTRY
364 eglGetDisplay(EGLNativeDisplayType nativeDisplay)
365 {
366 _EGLPlatformType plat;
367 _EGLDisplay *disp;
368 void *native_display_ptr;
369
370 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_NO_DISPLAY);
371
372 STATIC_ASSERT(sizeof(void*) == sizeof(nativeDisplay));
373 native_display_ptr = (void*) nativeDisplay;
374
375 plat = _eglGetNativePlatform(native_display_ptr);
376 disp = _eglFindDisplay(plat, native_display_ptr, NULL);
377 return _eglGetDisplayHandle(disp);
378 }
379
380 static EGLDisplay
381 _eglGetPlatformDisplayCommon(EGLenum platform, void *native_display,
382 const EGLAttrib *attrib_list)
383 {
384 _EGLDisplay *disp;
385
386 switch (platform) {
387 #ifdef HAVE_X11_PLATFORM
388 case EGL_PLATFORM_X11_EXT:
389 disp = _eglGetX11Display((Display*) native_display, attrib_list);
390 break;
391 #endif
392 #ifdef HAVE_DRM_PLATFORM
393 case EGL_PLATFORM_GBM_MESA:
394 disp = _eglGetGbmDisplay((struct gbm_device*) native_display,
395 attrib_list);
396 break;
397 #endif
398 #ifdef HAVE_WAYLAND_PLATFORM
399 case EGL_PLATFORM_WAYLAND_EXT:
400 disp = _eglGetWaylandDisplay((struct wl_display*) native_display,
401 attrib_list);
402 break;
403 #endif
404 #ifdef HAVE_SURFACELESS_PLATFORM
405 case EGL_PLATFORM_SURFACELESS_MESA:
406 disp = _eglGetSurfacelessDisplay(native_display, attrib_list);
407 break;
408 #endif
409 #ifdef HAVE_ANDROID_PLATFORM
410 case EGL_PLATFORM_ANDROID_KHR:
411 disp = _eglGetAndroidDisplay(native_display, attrib_list);
412 break;
413 #endif
414 case EGL_PLATFORM_DEVICE_EXT:
415 disp = _eglGetDeviceDisplay(native_display, attrib_list);
416 break;
417 default:
418 RETURN_EGL_ERROR(NULL, EGL_BAD_PARAMETER, NULL);
419 }
420
421 return _eglGetDisplayHandle(disp);
422 }
423
424 static EGLDisplay EGLAPIENTRY
425 eglGetPlatformDisplayEXT(EGLenum platform, void *native_display,
426 const EGLint *int_attribs)
427 {
428 EGLAttrib *attrib_list;
429 EGLDisplay disp;
430
431 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_NO_DISPLAY);
432
433 if (_eglConvertIntsToAttribs(int_attribs, &attrib_list) != EGL_SUCCESS)
434 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, NULL);
435
436 disp = _eglGetPlatformDisplayCommon(platform, native_display, attrib_list);
437 free(attrib_list);
438 return disp;
439 }
440
441 EGLDisplay EGLAPIENTRY
442 eglGetPlatformDisplay(EGLenum platform, void *native_display,
443 const EGLAttrib *attrib_list)
444 {
445 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_NO_DISPLAY);
446 return _eglGetPlatformDisplayCommon(platform, native_display, attrib_list);
447 }
448
449 /**
450 * Copy the extension into the string and update the string pointer.
451 */
452 static EGLint
453 _eglAppendExtension(char **str, const char *ext)
454 {
455 char *s = *str;
456 size_t len = strlen(ext);
457
458 if (s) {
459 memcpy(s, ext, len);
460 s[len++] = ' ';
461 s[len] = '\0';
462
463 *str += len;
464 }
465 else {
466 len++;
467 }
468
469 return (EGLint) len;
470 }
471
472 /**
473 * Examine the individual extension enable/disable flags and recompute
474 * the driver's Extensions string.
475 */
476 static void
477 _eglCreateExtensionsString(_EGLDisplay *disp)
478 {
479 #define _EGL_CHECK_EXTENSION(ext) \
480 do { \
481 if (disp->Extensions.ext) { \
482 _eglAppendExtension(&exts, "EGL_" #ext); \
483 assert(exts <= disp->ExtensionsString + _EGL_MAX_EXTENSIONS_LEN); \
484 } \
485 } while (0)
486
487 char *exts = disp->ExtensionsString;
488
489 /* Please keep these sorted alphabetically. */
490 _EGL_CHECK_EXTENSION(ANDROID_blob_cache);
491 _EGL_CHECK_EXTENSION(ANDROID_framebuffer_target);
492 _EGL_CHECK_EXTENSION(ANDROID_image_native_buffer);
493 _EGL_CHECK_EXTENSION(ANDROID_native_fence_sync);
494 _EGL_CHECK_EXTENSION(ANDROID_recordable);
495
496 _EGL_CHECK_EXTENSION(CHROMIUM_sync_control);
497
498 _EGL_CHECK_EXTENSION(EXT_buffer_age);
499 _EGL_CHECK_EXTENSION(EXT_create_context_robustness);
500 _EGL_CHECK_EXTENSION(EXT_image_dma_buf_import);
501 _EGL_CHECK_EXTENSION(EXT_image_dma_buf_import_modifiers);
502 _EGL_CHECK_EXTENSION(EXT_surface_CTA861_3_metadata);
503 _EGL_CHECK_EXTENSION(EXT_surface_SMPTE2086_metadata);
504 _EGL_CHECK_EXTENSION(EXT_swap_buffers_with_damage);
505
506 _EGL_CHECK_EXTENSION(IMG_context_priority);
507
508 _EGL_CHECK_EXTENSION(KHR_cl_event2);
509 _EGL_CHECK_EXTENSION(KHR_config_attribs);
510 _EGL_CHECK_EXTENSION(KHR_context_flush_control);
511 _EGL_CHECK_EXTENSION(KHR_create_context);
512 _EGL_CHECK_EXTENSION(KHR_create_context_no_error);
513 _EGL_CHECK_EXTENSION(KHR_fence_sync);
514 _EGL_CHECK_EXTENSION(KHR_get_all_proc_addresses);
515 _EGL_CHECK_EXTENSION(KHR_gl_colorspace);
516 _EGL_CHECK_EXTENSION(KHR_gl_renderbuffer_image);
517 _EGL_CHECK_EXTENSION(KHR_gl_texture_2D_image);
518 _EGL_CHECK_EXTENSION(KHR_gl_texture_3D_image);
519 _EGL_CHECK_EXTENSION(KHR_gl_texture_cubemap_image);
520 if (disp->Extensions.KHR_image_base && disp->Extensions.KHR_image_pixmap)
521 disp->Extensions.KHR_image = EGL_TRUE;
522 _EGL_CHECK_EXTENSION(KHR_image);
523 _EGL_CHECK_EXTENSION(KHR_image_base);
524 _EGL_CHECK_EXTENSION(KHR_image_pixmap);
525 _EGL_CHECK_EXTENSION(KHR_mutable_render_buffer);
526 _EGL_CHECK_EXTENSION(KHR_no_config_context);
527 _EGL_CHECK_EXTENSION(KHR_partial_update);
528 _EGL_CHECK_EXTENSION(KHR_reusable_sync);
529 _EGL_CHECK_EXTENSION(KHR_surfaceless_context);
530 if (disp->Extensions.EXT_swap_buffers_with_damage)
531 _eglAppendExtension(&exts, "EGL_KHR_swap_buffers_with_damage");
532 _EGL_CHECK_EXTENSION(EXT_pixel_format_float);
533 _EGL_CHECK_EXTENSION(KHR_wait_sync);
534
535 if (disp->Extensions.KHR_no_config_context)
536 _eglAppendExtension(&exts, "EGL_MESA_configless_context");
537 _EGL_CHECK_EXTENSION(MESA_drm_image);
538 _EGL_CHECK_EXTENSION(MESA_image_dma_buf_export);
539 _EGL_CHECK_EXTENSION(MESA_query_driver);
540
541 _EGL_CHECK_EXTENSION(NOK_swap_region);
542 _EGL_CHECK_EXTENSION(NOK_texture_from_pixmap);
543
544 _EGL_CHECK_EXTENSION(NV_post_sub_buffer);
545
546 _EGL_CHECK_EXTENSION(WL_bind_wayland_display);
547 _EGL_CHECK_EXTENSION(WL_create_wayland_buffer_from_image);
548
549 #undef _EGL_CHECK_EXTENSION
550 }
551
552 static void
553 _eglCreateAPIsString(_EGLDisplay *disp)
554 {
555 #define addstr(str) \
556 { \
557 const size_t old_len = strlen(disp->ClientAPIsString); \
558 const size_t add_len = sizeof(str); \
559 const size_t max_len = sizeof(disp->ClientAPIsString) - 1; \
560 if (old_len + add_len <= max_len) \
561 strcat(disp->ClientAPIsString, str " "); \
562 else \
563 assert(!"disp->ClientAPIsString is not large enough"); \
564 }
565
566 if (disp->ClientAPIs & EGL_OPENGL_BIT)
567 addstr("OpenGL");
568
569 if (disp->ClientAPIs & EGL_OPENGL_ES_BIT ||
570 disp->ClientAPIs & EGL_OPENGL_ES2_BIT ||
571 disp->ClientAPIs & EGL_OPENGL_ES3_BIT_KHR) {
572 addstr("OpenGL_ES");
573 }
574
575 if (disp->ClientAPIs & EGL_OPENVG_BIT)
576 addstr("OpenVG");
577
578 #undef addstr
579 }
580
581 static void
582 _eglComputeVersion(_EGLDisplay *disp)
583 {
584 disp->Version = 14;
585
586 if (disp->Extensions.KHR_fence_sync &&
587 disp->Extensions.KHR_cl_event2 &&
588 disp->Extensions.KHR_wait_sync &&
589 disp->Extensions.KHR_image_base &&
590 disp->Extensions.KHR_gl_texture_2D_image &&
591 disp->Extensions.KHR_gl_texture_3D_image &&
592 disp->Extensions.KHR_gl_texture_cubemap_image &&
593 disp->Extensions.KHR_gl_renderbuffer_image &&
594 disp->Extensions.KHR_create_context &&
595 disp->Extensions.EXT_create_context_robustness &&
596 disp->Extensions.KHR_get_all_proc_addresses &&
597 disp->Extensions.KHR_gl_colorspace &&
598 disp->Extensions.KHR_surfaceless_context)
599 disp->Version = 15;
600 }
601
602 /**
603 * This is typically the second EGL function that an application calls.
604 * Here we load/initialize the actual hardware driver.
605 */
606 EGLBoolean EGLAPIENTRY
607 eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
608 {
609 _EGLDisplay *disp = _eglLockDisplay(dpy);
610
611 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
612
613 if (!disp)
614 RETURN_EGL_ERROR(NULL, EGL_BAD_DISPLAY, EGL_FALSE);
615
616 if (!disp->Initialized) {
617 if (!_eglMatchDriver(disp))
618 RETURN_EGL_ERROR(disp, EGL_NOT_INITIALIZED, EGL_FALSE);
619
620 /* limit to APIs supported by core */
621 disp->ClientAPIs &= _EGL_API_ALL_BITS;
622
623 /* EGL_KHR_get_all_proc_addresses is a corner-case extension. The spec
624 * classifies it as an EGL display extension, though conceptually it's an
625 * EGL client extension.
626 *
627 * From the EGL_KHR_get_all_proc_addresses spec:
628 *
629 * The EGL implementation must expose the name
630 * EGL_KHR_client_get_all_proc_addresses if and only if it exposes
631 * EGL_KHR_get_all_proc_addresses and supports
632 * EGL_EXT_client_extensions.
633 *
634 * Mesa unconditionally exposes both client extensions mentioned above,
635 * so the spec requires that each EGLDisplay unconditionally expose
636 * EGL_KHR_get_all_proc_addresses also.
637 */
638 disp->Extensions.KHR_get_all_proc_addresses = EGL_TRUE;
639
640 /* Extensions is used to provide EGL 1.3 functionality for 1.2 aware
641 * programs. It is driver agnostic and handled in the main EGL code.
642 */
643 disp->Extensions.KHR_config_attribs = EGL_TRUE;
644
645 _eglComputeVersion(disp);
646 _eglCreateExtensionsString(disp);
647 _eglCreateAPIsString(disp);
648 snprintf(disp->VersionString, sizeof(disp->VersionString),
649 "%d.%d", disp->Version / 10, disp->Version % 10);
650 }
651
652 /* Update applications version of major and minor if not NULL */
653 if ((major != NULL) && (minor != NULL)) {
654 *major = disp->Version / 10;
655 *minor = disp->Version % 10;
656 }
657
658 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
659 }
660
661
662 EGLBoolean EGLAPIENTRY
663 eglTerminate(EGLDisplay dpy)
664 {
665 _EGLDisplay *disp = _eglLockDisplay(dpy);
666
667 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
668
669 if (!disp)
670 RETURN_EGL_ERROR(NULL, EGL_BAD_DISPLAY, EGL_FALSE);
671
672 if (disp->Initialized) {
673 _EGLDriver *drv = disp->Driver;
674
675 drv->API.Terminate(drv, disp);
676 /* do not reset disp->Driver */
677 disp->ClientAPIsString[0] = 0;
678 disp->Initialized = EGL_FALSE;
679
680 /* Reset blob cache funcs on terminate. */
681 disp->BlobCacheSet = NULL;
682 disp->BlobCacheGet = NULL;
683 }
684
685 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
686 }
687
688
689 const char * EGLAPIENTRY
690 eglQueryString(EGLDisplay dpy, EGLint name)
691 {
692 _EGLDisplay *disp;
693 _EGLDriver *drv;
694
695 if (dpy == EGL_NO_DISPLAY && name == EGL_EXTENSIONS) {
696 const char *ret = _eglGetClientExtensionString();
697 if (ret != NULL)
698 RETURN_EGL_SUCCESS(NULL, ret);
699 else
700 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, NULL);
701 }
702
703 disp = _eglLockDisplay(dpy);
704 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, NULL);
705 _EGL_CHECK_DISPLAY(disp, NULL, drv);
706
707 switch (name) {
708 case EGL_VENDOR:
709 RETURN_EGL_SUCCESS(disp, _EGL_VENDOR_STRING);
710 case EGL_VERSION:
711 RETURN_EGL_SUCCESS(disp, disp->VersionString);
712 case EGL_EXTENSIONS:
713 RETURN_EGL_SUCCESS(disp, disp->ExtensionsString);
714 case EGL_CLIENT_APIS:
715 RETURN_EGL_SUCCESS(disp, disp->ClientAPIsString);
716 default:
717 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, NULL);
718 }
719 }
720
721
722 EGLBoolean EGLAPIENTRY
723 eglGetConfigs(EGLDisplay dpy, EGLConfig *configs,
724 EGLint config_size, EGLint *num_config)
725 {
726 _EGLDisplay *disp = _eglLockDisplay(dpy);
727 _EGLDriver *drv;
728 EGLBoolean ret;
729
730 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
731
732 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
733
734 if (!num_config)
735 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
736
737 ret = _eglGetConfigs(drv, disp, configs, config_size, num_config);
738
739 RETURN_EGL_EVAL(disp, ret);
740 }
741
742
743 EGLBoolean EGLAPIENTRY
744 eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs,
745 EGLint config_size, EGLint *num_config)
746 {
747 _EGLDisplay *disp = _eglLockDisplay(dpy);
748 _EGLDriver *drv;
749 EGLBoolean ret;
750
751 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
752
753 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
754
755 if (!num_config)
756 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
757
758 ret = _eglChooseConfig(drv, disp, attrib_list, configs,
759 config_size, num_config);
760
761 RETURN_EGL_EVAL(disp, ret);
762 }
763
764
765 EGLBoolean EGLAPIENTRY
766 eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
767 EGLint attribute, EGLint *value)
768 {
769 _EGLDisplay *disp = _eglLockDisplay(dpy);
770 _EGLConfig *conf = _eglLookupConfig(config, disp);
771 _EGLDriver *drv;
772 EGLBoolean ret;
773
774 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
775
776 _EGL_CHECK_CONFIG(disp, conf, EGL_FALSE, drv);
777
778 ret = _eglGetConfigAttrib(drv, disp, conf, attribute, value);
779
780 RETURN_EGL_EVAL(disp, ret);
781 }
782
783
784 EGLContext EGLAPIENTRY
785 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list,
786 const EGLint *attrib_list)
787 {
788 _EGLDisplay *disp = _eglLockDisplay(dpy);
789 _EGLConfig *conf = _eglLookupConfig(config, disp);
790 _EGLContext *share = _eglLookupContext(share_list, disp);
791 _EGLDriver *drv;
792 _EGLContext *context;
793 EGLContext ret;
794
795 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_CONTEXT);
796
797 _EGL_CHECK_DISPLAY(disp, EGL_NO_CONTEXT, drv);
798
799 if (config != EGL_NO_CONFIG_KHR)
800 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_CONTEXT, drv);
801 else if (!disp->Extensions.KHR_no_config_context)
802 RETURN_EGL_ERROR(disp, EGL_BAD_CONFIG, EGL_NO_CONTEXT);
803
804 if (!share && share_list != EGL_NO_CONTEXT)
805 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_NO_CONTEXT);
806
807 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list);
808 ret = (context) ? _eglLinkContext(context) : EGL_NO_CONTEXT;
809
810 RETURN_EGL_EVAL(disp, ret);
811 }
812
813
814 EGLBoolean EGLAPIENTRY
815 eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
816 {
817 _EGLDisplay *disp = _eglLockDisplay(dpy);
818 _EGLContext *context = _eglLookupContext(ctx, disp);
819 _EGLDriver *drv;
820 EGLBoolean ret;
821
822 _EGL_FUNC_START(disp, EGL_OBJECT_CONTEXT_KHR, context, EGL_FALSE);
823
824 _EGL_CHECK_CONTEXT(disp, context, EGL_FALSE, drv);
825 _eglUnlinkContext(context);
826 ret = drv->API.DestroyContext(drv, disp, context);
827
828 RETURN_EGL_EVAL(disp, ret);
829 }
830
831
832 EGLBoolean EGLAPIENTRY
833 eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read,
834 EGLContext ctx)
835 {
836 _EGLDisplay *disp = _eglLockDisplay(dpy);
837 _EGLContext *context = _eglLookupContext(ctx, disp);
838 _EGLSurface *draw_surf = _eglLookupSurface(draw, disp);
839 _EGLSurface *read_surf = _eglLookupSurface(read, disp);
840 _EGLDriver *drv;
841 EGLBoolean ret;
842
843 _EGL_FUNC_START(disp, EGL_OBJECT_CONTEXT_KHR, context, EGL_FALSE);
844
845 if (!disp)
846 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_FALSE);
847 drv = disp->Driver;
848
849 /* display is allowed to be uninitialized under certain condition */
850 if (!disp->Initialized) {
851 if (draw != EGL_NO_SURFACE || read != EGL_NO_SURFACE ||
852 ctx != EGL_NO_CONTEXT)
853 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_FALSE);
854 }
855 if (!drv)
856 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
857
858 if (!context && ctx != EGL_NO_CONTEXT)
859 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_FALSE);
860 if (!draw_surf || !read_surf) {
861 /* From the EGL 1.4 (20130211) spec:
862 *
863 * To release the current context without assigning a new one, set ctx
864 * to EGL_NO_CONTEXT and set draw and read to EGL_NO_SURFACE.
865 */
866 if (!disp->Extensions.KHR_surfaceless_context && ctx != EGL_NO_CONTEXT)
867 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
868
869 if ((!draw_surf && draw != EGL_NO_SURFACE) ||
870 (!read_surf && read != EGL_NO_SURFACE))
871 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
872 if (draw_surf || read_surf)
873 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
874 }
875
876 /* If a native window underlying either draw or read is no longer valid,
877 * an EGL_BAD_NATIVE_WINDOW error is generated.
878 */
879 if (draw_surf && draw_surf->Lost)
880 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_FALSE);
881 if (read_surf && read_surf->Lost)
882 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_FALSE);
883
884 ret = drv->API.MakeCurrent(drv, disp, draw_surf, read_surf, context);
885
886 RETURN_EGL_EVAL(disp, ret);
887 }
888
889
890 EGLBoolean EGLAPIENTRY
891 eglQueryContext(EGLDisplay dpy, EGLContext ctx,
892 EGLint attribute, EGLint *value)
893 {
894 _EGLDisplay *disp = _eglLockDisplay(dpy);
895 _EGLContext *context = _eglLookupContext(ctx, disp);
896 _EGLDriver *drv;
897 EGLBoolean ret;
898
899 _EGL_FUNC_START(disp, EGL_OBJECT_CONTEXT_KHR, context, EGL_FALSE);
900
901 _EGL_CHECK_CONTEXT(disp, context, EGL_FALSE, drv);
902
903 ret = _eglQueryContext(drv, disp, context, attribute, value);
904
905 RETURN_EGL_EVAL(disp, ret);
906 }
907
908
909 /* In EGL specs 1.4 and 1.5, at the end of sections 3.5.1 and 3.5.4, it says
910 * that if native_surface was already used to create a window or pixmap, we
911 * can't create a new one. This is what this function checks for.
912 */
913 static bool
914 _eglNativeSurfaceAlreadyUsed(_EGLDisplay *disp, void *native_surface)
915 {
916 _EGLResource *list;
917
918 list = disp->ResourceLists[_EGL_RESOURCE_SURFACE];
919 while (list) {
920 _EGLSurface *surf = (_EGLSurface *) list;
921
922 list = list->Next;
923
924 if (surf->Type == EGL_PBUFFER_BIT)
925 continue;
926
927 if (surf->NativeSurface == native_surface)
928 return true;
929 }
930
931 return false;
932 }
933
934
935 static EGLSurface
936 _eglCreateWindowSurfaceCommon(_EGLDisplay *disp, EGLConfig config,
937 void *native_window, const EGLint *attrib_list)
938 {
939 _EGLConfig *conf = _eglLookupConfig(config, disp);
940 _EGLDriver *drv;
941 _EGLSurface *surf;
942 EGLSurface ret;
943
944
945 if (native_window == NULL)
946 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
947
948 if (disp && (disp->Platform == _EGL_PLATFORM_SURFACELESS ||
949 disp->Platform == _EGL_PLATFORM_DEVICE)) {
950 /* From the EGL_MESA_platform_surfaceless spec (v1):
951 *
952 * eglCreatePlatformWindowSurface fails when called with a <display>
953 * that belongs to the surfaceless platform. It returns
954 * EGL_NO_SURFACE and generates EGL_BAD_NATIVE_WINDOW. The
955 * justification for this unconditional failure is that the
956 * surfaceless platform has no native windows, and therefore the
957 * <native_window> parameter is always invalid.
958 *
959 * This check must occur before checking the EGLConfig, which emits
960 * EGL_BAD_CONFIG.
961 */
962 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE);
963 }
964
965 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
966
967 if ((conf->SurfaceType & EGL_WINDOW_BIT) == 0)
968 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SURFACE);
969
970 if (_eglNativeSurfaceAlreadyUsed(disp, native_window))
971 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
972
973 surf = drv->API.CreateWindowSurface(drv, disp, conf, native_window,
974 attrib_list);
975 ret = (surf) ? _eglLinkSurface(surf) : EGL_NO_SURFACE;
976
977 RETURN_EGL_EVAL(disp, ret);
978 }
979
980
981 EGLSurface EGLAPIENTRY
982 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
983 EGLNativeWindowType window, const EGLint *attrib_list)
984 {
985 _EGLDisplay *disp = _eglLockDisplay(dpy);
986
987 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
988 STATIC_ASSERT(sizeof(void*) == sizeof(window));
989 return _eglCreateWindowSurfaceCommon(disp, config, (void*) window,
990 attrib_list);
991 }
992
993 static void *
994 _fixupNativeWindow(_EGLDisplay *disp, void *native_window)
995 {
996 #ifdef HAVE_X11_PLATFORM
997 if (disp && disp->Platform == _EGL_PLATFORM_X11 && native_window != NULL) {
998 /* The `native_window` parameter for the X11 platform differs between
999 * eglCreateWindowSurface() and eglCreatePlatformPixmapSurfaceEXT(). In
1000 * eglCreateWindowSurface(), the type of `native_window` is an Xlib
1001 * `Window`. In eglCreatePlatformWindowSurfaceEXT(), the type is
1002 * `Window*`. Convert `Window*` to `Window` because that's what
1003 * dri2_x11_create_window_surface() expects.
1004 */
1005 return (void *)(* (Window*) native_window);
1006 }
1007 #endif
1008 return native_window;
1009 }
1010
1011 static EGLSurface EGLAPIENTRY
1012 eglCreatePlatformWindowSurfaceEXT(EGLDisplay dpy, EGLConfig config,
1013 void *native_window,
1014 const EGLint *attrib_list)
1015 {
1016 _EGLDisplay *disp = _eglLockDisplay(dpy);
1017
1018 native_window = _fixupNativeWindow(disp, native_window);
1019
1020 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1021 return _eglCreateWindowSurfaceCommon(disp, config, native_window,
1022 attrib_list);
1023 }
1024
1025
1026 EGLSurface EGLAPIENTRY
1027 eglCreatePlatformWindowSurface(EGLDisplay dpy, EGLConfig config,
1028 void *native_window,
1029 const EGLAttrib *attrib_list)
1030 {
1031 _EGLDisplay *disp = _eglLockDisplay(dpy);
1032 EGLSurface surface;
1033 EGLint *int_attribs;
1034
1035 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1036
1037 int_attribs = _eglConvertAttribsToInt(attrib_list);
1038 if (attrib_list && !int_attribs)
1039 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
1040
1041 native_window = _fixupNativeWindow(disp, native_window);
1042 surface = _eglCreateWindowSurfaceCommon(disp, config, native_window,
1043 int_attribs);
1044 free(int_attribs);
1045 return surface;
1046 }
1047
1048 static void *
1049 _fixupNativePixmap(_EGLDisplay *disp, void *native_pixmap)
1050 {
1051 #ifdef HAVE_X11_PLATFORM
1052 /* The `native_pixmap` parameter for the X11 platform differs between
1053 * eglCreatePixmapSurface() and eglCreatePlatformPixmapSurfaceEXT(). In
1054 * eglCreatePixmapSurface(), the type of `native_pixmap` is an Xlib
1055 * `Pixmap`. In eglCreatePlatformPixmapSurfaceEXT(), the type is
1056 * `Pixmap*`. Convert `Pixmap*` to `Pixmap` because that's what
1057 * dri2_x11_create_pixmap_surface() expects.
1058 */
1059 if (disp && disp->Platform == _EGL_PLATFORM_X11 && native_pixmap != NULL)
1060 return (void *)(* (Pixmap*) native_pixmap);
1061 #endif
1062 return native_pixmap;
1063 }
1064
1065 static EGLSurface
1066 _eglCreatePixmapSurfaceCommon(_EGLDisplay *disp, EGLConfig config,
1067 void *native_pixmap, const EGLint *attrib_list)
1068 {
1069 _EGLConfig *conf = _eglLookupConfig(config, disp);
1070 _EGLDriver *drv;
1071 _EGLSurface *surf;
1072 EGLSurface ret;
1073
1074 if (disp && (disp->Platform == _EGL_PLATFORM_SURFACELESS ||
1075 disp->Platform == _EGL_PLATFORM_DEVICE)) {
1076 /* From the EGL_MESA_platform_surfaceless spec (v1):
1077 *
1078 * [Like eglCreatePlatformWindowSurface,] eglCreatePlatformPixmapSurface
1079 * also fails when called with a <display> that belongs to the
1080 * surfaceless platform. It returns EGL_NO_SURFACE and generates
1081 * EGL_BAD_NATIVE_PIXMAP.
1082 *
1083 * This check must occur before checking the EGLConfig, which emits
1084 * EGL_BAD_CONFIG.
1085 */
1086 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_PIXMAP, EGL_NO_SURFACE);
1087 }
1088
1089 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
1090
1091 if ((conf->SurfaceType & EGL_PIXMAP_BIT) == 0)
1092 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SURFACE);
1093
1094 if (native_pixmap == NULL)
1095 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_PIXMAP, EGL_NO_SURFACE);
1096
1097 if (_eglNativeSurfaceAlreadyUsed(disp, native_pixmap))
1098 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
1099
1100 surf = drv->API.CreatePixmapSurface(drv, disp, conf, native_pixmap,
1101 attrib_list);
1102 ret = (surf) ? _eglLinkSurface(surf) : EGL_NO_SURFACE;
1103
1104 RETURN_EGL_EVAL(disp, ret);
1105 }
1106
1107
1108 EGLSurface EGLAPIENTRY
1109 eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config,
1110 EGLNativePixmapType pixmap, const EGLint *attrib_list)
1111 {
1112 _EGLDisplay *disp = _eglLockDisplay(dpy);
1113
1114 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1115 STATIC_ASSERT(sizeof(void*) == sizeof(pixmap));
1116 return _eglCreatePixmapSurfaceCommon(disp, config, (void*) pixmap,
1117 attrib_list);
1118 }
1119
1120 static EGLSurface EGLAPIENTRY
1121 eglCreatePlatformPixmapSurfaceEXT(EGLDisplay dpy, EGLConfig config,
1122 void *native_pixmap,
1123 const EGLint *attrib_list)
1124 {
1125 _EGLDisplay *disp = _eglLockDisplay(dpy);
1126
1127 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1128 native_pixmap = _fixupNativePixmap(disp, native_pixmap);
1129 return _eglCreatePixmapSurfaceCommon(disp, config, native_pixmap,
1130 attrib_list);
1131 }
1132
1133
1134 EGLSurface EGLAPIENTRY
1135 eglCreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config,
1136 void *native_pixmap,
1137 const EGLAttrib *attrib_list)
1138 {
1139 _EGLDisplay *disp = _eglLockDisplay(dpy);
1140 EGLSurface surface;
1141 EGLint *int_attribs;
1142
1143 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1144
1145 int_attribs = _eglConvertAttribsToInt(attrib_list);
1146 if (attrib_list && !int_attribs)
1147 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
1148
1149 native_pixmap = _fixupNativePixmap(disp, native_pixmap);
1150 surface = _eglCreatePixmapSurfaceCommon(disp, config, native_pixmap,
1151 int_attribs);
1152 free(int_attribs);
1153 return surface;
1154 }
1155
1156
1157 EGLSurface EGLAPIENTRY
1158 eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config,
1159 const EGLint *attrib_list)
1160 {
1161 _EGLDisplay *disp = _eglLockDisplay(dpy);
1162 _EGLConfig *conf = _eglLookupConfig(config, disp);
1163 _EGLDriver *drv;
1164 _EGLSurface *surf;
1165 EGLSurface ret;
1166
1167 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1168 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
1169
1170 if ((conf->SurfaceType & EGL_PBUFFER_BIT) == 0)
1171 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SURFACE);
1172
1173 surf = drv->API.CreatePbufferSurface(drv, disp, conf, attrib_list);
1174 ret = (surf) ? _eglLinkSurface(surf) : EGL_NO_SURFACE;
1175
1176 RETURN_EGL_EVAL(disp, ret);
1177 }
1178
1179
1180 EGLBoolean EGLAPIENTRY
1181 eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
1182 {
1183 _EGLDisplay *disp = _eglLockDisplay(dpy);
1184 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1185 _EGLDriver *drv;
1186 EGLBoolean ret;
1187
1188 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1189 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1190 _eglUnlinkSurface(surf);
1191 ret = drv->API.DestroySurface(drv, disp, surf);
1192
1193 RETURN_EGL_EVAL(disp, ret);
1194 }
1195
1196 EGLBoolean EGLAPIENTRY
1197 eglQuerySurface(EGLDisplay dpy, EGLSurface surface,
1198 EGLint attribute, EGLint *value)
1199 {
1200 _EGLDisplay *disp = _eglLockDisplay(dpy);
1201 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1202 _EGLDriver *drv;
1203 EGLBoolean ret;
1204
1205 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1206 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1207
1208 if (drv->API.QuerySurface)
1209 ret = drv->API.QuerySurface(drv, disp, surf, attribute, value);
1210 else
1211 ret = _eglQuerySurface(drv, disp, surf, attribute, value);
1212
1213 RETURN_EGL_EVAL(disp, ret);
1214 }
1215
1216 EGLBoolean EGLAPIENTRY
1217 eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface,
1218 EGLint attribute, EGLint value)
1219 {
1220 _EGLDisplay *disp = _eglLockDisplay(dpy);
1221 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1222 _EGLDriver *drv;
1223 EGLBoolean ret;
1224
1225 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1226 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1227
1228 ret = _eglSurfaceAttrib(drv, disp, surf, attribute, value);
1229
1230 RETURN_EGL_EVAL(disp, ret);
1231 }
1232
1233
1234 EGLBoolean EGLAPIENTRY
1235 eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1236 {
1237 _EGLDisplay *disp = _eglLockDisplay(dpy);
1238 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1239 _EGLDriver *drv;
1240 EGLBoolean ret;
1241
1242 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1243 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1244 ret = drv->API.BindTexImage(drv, disp, surf, buffer);
1245
1246 RETURN_EGL_EVAL(disp, ret);
1247 }
1248
1249
1250 EGLBoolean EGLAPIENTRY
1251 eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
1252 {
1253 _EGLDisplay *disp = _eglLockDisplay(dpy);
1254 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1255 _EGLDriver *drv;
1256 EGLBoolean ret;
1257
1258 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1259 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1260 ret = drv->API.ReleaseTexImage(drv, disp, surf, buffer);
1261
1262 RETURN_EGL_EVAL(disp, ret);
1263 }
1264
1265
1266 EGLBoolean EGLAPIENTRY
1267 eglSwapInterval(EGLDisplay dpy, EGLint interval)
1268 {
1269 _EGLDisplay *disp = _eglLockDisplay(dpy);
1270 _EGLContext *ctx = _eglGetCurrentContext();
1271 _EGLSurface *surf = ctx ? ctx->DrawSurface : NULL;
1272 _EGLDriver *drv;
1273 EGLBoolean ret;
1274
1275 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1276 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
1277
1278 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1279 ctx->Resource.Display != disp)
1280 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_FALSE);
1281
1282 if (_eglGetSurfaceHandle(surf) == EGL_NO_SURFACE)
1283 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
1284
1285 if (surf->Type != EGL_WINDOW_BIT)
1286 RETURN_EGL_EVAL(disp, EGL_TRUE);
1287
1288 interval = CLAMP(interval,
1289 surf->Config->MinSwapInterval,
1290 surf->Config->MaxSwapInterval);
1291
1292 if (surf->SwapInterval != interval) {
1293 if (drv->API.SwapInterval)
1294 ret = drv->API.SwapInterval(drv, disp, surf, interval);
1295 else
1296 ret = _eglSwapInterval(drv, disp, surf, interval);
1297 }
1298 else {
1299 ret = EGL_TRUE;
1300 }
1301
1302 if (ret)
1303 surf->SwapInterval = interval;
1304
1305 RETURN_EGL_EVAL(disp, ret);
1306 }
1307
1308
1309 EGLBoolean EGLAPIENTRY
1310 eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
1311 {
1312 _EGLContext *ctx = _eglGetCurrentContext();
1313 _EGLDisplay *disp = _eglLockDisplay(dpy);
1314 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1315 _EGLDriver *drv;
1316 EGLBoolean ret;
1317
1318 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1319 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1320
1321 /* surface must be bound to current context in EGL 1.4 */
1322 #ifndef _EGL_BUILT_IN_DRIVER_HAIKU
1323 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1324 surf != ctx->DrawSurface)
1325 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
1326 #endif
1327
1328 if (surf->Type != EGL_WINDOW_BIT)
1329 RETURN_EGL_EVAL(disp, EGL_TRUE);
1330
1331 /* From the EGL 1.5 spec:
1332 *
1333 * If eglSwapBuffers is called and the native window associated with
1334 * surface is no longer valid, an EGL_BAD_NATIVE_WINDOW error is
1335 * generated.
1336 */
1337 if (surf->Lost)
1338 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_FALSE);
1339
1340 ret = drv->API.SwapBuffers(drv, disp, surf);
1341
1342 /* EGL_KHR_partial_update
1343 * Frame boundary successfully reached,
1344 * reset damage region and reset BufferAgeRead
1345 */
1346 if (ret) {
1347 surf->SetDamageRegionCalled = EGL_FALSE;
1348 surf->BufferAgeRead = EGL_FALSE;
1349 }
1350
1351 RETURN_EGL_EVAL(disp, ret);
1352 }
1353
1354
1355 static EGLBoolean
1356 _eglSwapBuffersWithDamageCommon(_EGLDisplay *disp, _EGLSurface *surf,
1357 EGLint *rects, EGLint n_rects)
1358 {
1359 _EGLContext *ctx = _eglGetCurrentContext();
1360 _EGLDriver *drv;
1361 EGLBoolean ret;
1362
1363 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1364
1365 /* surface must be bound to current context in EGL 1.4 */
1366 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1367 surf != ctx->DrawSurface)
1368 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
1369
1370 if (surf->Type != EGL_WINDOW_BIT)
1371 RETURN_EGL_EVAL(disp, EGL_TRUE);
1372
1373 if ((n_rects > 0 && rects == NULL) || n_rects < 0)
1374 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1375
1376 ret = drv->API.SwapBuffersWithDamageEXT(drv, disp, surf, rects, n_rects);
1377
1378 /* EGL_KHR_partial_update
1379 * Frame boundary successfully reached,
1380 * reset damage region and reset BufferAgeRead
1381 */
1382 if (ret) {
1383 surf->SetDamageRegionCalled = EGL_FALSE;
1384 surf->BufferAgeRead = EGL_FALSE;
1385 }
1386
1387 RETURN_EGL_EVAL(disp, ret);
1388 }
1389
1390 static EGLBoolean EGLAPIENTRY
1391 eglSwapBuffersWithDamageEXT(EGLDisplay dpy, EGLSurface surface,
1392 EGLint *rects, EGLint n_rects)
1393 {
1394 _EGLDisplay *disp = _eglLockDisplay(dpy);
1395 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1396 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1397 return _eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
1398 }
1399
1400 static EGLBoolean EGLAPIENTRY
1401 eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface surface,
1402 EGLint *rects, EGLint n_rects)
1403 {
1404 _EGLDisplay *disp = _eglLockDisplay(dpy);
1405 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1406 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1407 return _eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
1408 }
1409
1410 /**
1411 * Clamp the rectangles so that they lie within the surface.
1412 */
1413
1414 static void
1415 _eglSetDamageRegionKHRClampRects(_EGLDisplay* disp, _EGLSurface* surf,
1416 EGLint *rects, EGLint n_rects)
1417 {
1418 EGLint i;
1419 EGLint surf_height = surf->Height;
1420 EGLint surf_width = surf->Width;
1421
1422 for (i = 0; i < (4 * n_rects); i += 4) {
1423 EGLint x1, y1, x2, y2;
1424 x1 = rects[i];
1425 y1 = rects[i + 1];
1426 x2 = rects[i + 2] + x1;
1427 y2 = rects[i + 3] + y1;
1428
1429 rects[i] = CLAMP(x1, 0, surf_width);
1430 rects[i + 1] = CLAMP(y1, 0, surf_height);
1431 rects[i + 2] = CLAMP(x2, 0, surf_width) - rects[i];
1432 rects[i + 3] = CLAMP(y2, 0, surf_height) - rects[i + 1];
1433 }
1434 }
1435
1436 static EGLBoolean EGLAPIENTRY
1437 eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface,
1438 EGLint *rects, EGLint n_rects)
1439 {
1440 _EGLDisplay *disp = _eglLockDisplay(dpy);
1441 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1442 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1443 _EGLContext *ctx = _eglGetCurrentContext();
1444 _EGLDriver *drv;
1445 EGLBoolean ret;
1446 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1447
1448 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1449 surf->Type != EGL_WINDOW_BIT ||
1450 ctx->DrawSurface != surf ||
1451 surf->SwapBehavior != EGL_BUFFER_DESTROYED)
1452 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
1453
1454 /* If the damage region is already set or
1455 * buffer age is not queried between
1456 * frame boundaries, throw bad access error
1457 */
1458
1459 if (surf->SetDamageRegionCalled || !surf->BufferAgeRead)
1460 RETURN_EGL_ERROR(disp, EGL_BAD_ACCESS, EGL_FALSE);
1461
1462 _eglSetDamageRegionKHRClampRects(disp, surf, rects, n_rects);
1463 ret = drv->API.SetDamageRegion(drv, disp, surf, rects, n_rects);
1464
1465 if (ret)
1466 surf->SetDamageRegionCalled = EGL_TRUE;
1467
1468 RETURN_EGL_EVAL(disp, ret);
1469 }
1470
1471 EGLBoolean EGLAPIENTRY
1472 eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target)
1473 {
1474 _EGLDisplay *disp = _eglLockDisplay(dpy);
1475 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1476 _EGLDriver *drv;
1477 EGLBoolean ret;
1478 void *native_pixmap_ptr;
1479
1480 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1481 STATIC_ASSERT(sizeof(void*) == sizeof(target));
1482 native_pixmap_ptr = (void*) target;
1483
1484 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1485 ret = drv->API.CopyBuffers(drv, disp, surf, native_pixmap_ptr);
1486
1487 RETURN_EGL_EVAL(disp, ret);
1488 }
1489
1490
1491 static EGLBoolean
1492 _eglWaitClientCommon(void)
1493 {
1494 _EGLContext *ctx = _eglGetCurrentContext();
1495 _EGLDisplay *disp;
1496 _EGLDriver *drv;
1497 EGLBoolean ret;
1498
1499 if (!ctx)
1500 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1501
1502 disp = ctx->Resource.Display;
1503 mtx_lock(&disp->Mutex);
1504
1505 /* let bad current context imply bad current surface */
1506 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1507 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1508 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1509
1510 /* a valid current context implies an initialized current display */
1511 assert(disp->Initialized);
1512 drv = disp->Driver;
1513 ret = drv->API.WaitClient(drv, disp, ctx);
1514
1515 RETURN_EGL_EVAL(disp, ret);
1516 }
1517
1518 EGLBoolean EGLAPIENTRY
1519 eglWaitClient(void)
1520 {
1521 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1522 return _eglWaitClientCommon();
1523 }
1524
1525 EGLBoolean EGLAPIENTRY
1526 eglWaitGL(void)
1527 {
1528 /* Since we only support OpenGL and GLES, eglWaitGL is equivalent to eglWaitClient. */
1529 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1530 return _eglWaitClientCommon();
1531 }
1532
1533
1534 EGLBoolean EGLAPIENTRY
1535 eglWaitNative(EGLint engine)
1536 {
1537 _EGLContext *ctx = _eglGetCurrentContext();
1538 _EGLDisplay *disp;
1539 _EGLDriver *drv;
1540 EGLBoolean ret;
1541
1542 if (!ctx)
1543 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1544
1545 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1546
1547 disp = ctx->Resource.Display;
1548 mtx_lock(&disp->Mutex);
1549
1550 /* let bad current context imply bad current surface */
1551 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1552 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1553 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1554
1555 /* a valid current context implies an initialized current display */
1556 assert(disp->Initialized);
1557 drv = disp->Driver;
1558 ret = drv->API.WaitNative(drv, disp, engine);
1559
1560 RETURN_EGL_EVAL(disp, ret);
1561 }
1562
1563
1564 EGLDisplay EGLAPIENTRY
1565 eglGetCurrentDisplay(void)
1566 {
1567 _EGLContext *ctx = _eglGetCurrentContext();
1568 EGLDisplay ret;
1569
1570 ret = (ctx) ? _eglGetDisplayHandle(ctx->Resource.Display) : EGL_NO_DISPLAY;
1571
1572 RETURN_EGL_SUCCESS(NULL, ret);
1573 }
1574
1575
1576 EGLContext EGLAPIENTRY
1577 eglGetCurrentContext(void)
1578 {
1579 _EGLContext *ctx = _eglGetCurrentContext();
1580 EGLContext ret;
1581
1582 ret = _eglGetContextHandle(ctx);
1583
1584 RETURN_EGL_SUCCESS(NULL, ret);
1585 }
1586
1587
1588 EGLSurface EGLAPIENTRY
1589 eglGetCurrentSurface(EGLint readdraw)
1590 {
1591 _EGLContext *ctx = _eglGetCurrentContext();
1592 EGLint err = EGL_SUCCESS;
1593 _EGLSurface *surf;
1594 EGLSurface ret;
1595
1596 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_NO_SURFACE);
1597
1598 if (!ctx)
1599 RETURN_EGL_SUCCESS(NULL, EGL_NO_SURFACE);
1600
1601 switch (readdraw) {
1602 case EGL_DRAW:
1603 surf = ctx->DrawSurface;
1604 break;
1605 case EGL_READ:
1606 surf = ctx->ReadSurface;
1607 break;
1608 default:
1609 surf = NULL;
1610 err = EGL_BAD_PARAMETER;
1611 break;
1612 }
1613
1614 ret = _eglGetSurfaceHandle(surf);
1615
1616 RETURN_EGL_ERROR(NULL, err, ret);
1617 }
1618
1619
1620 EGLint EGLAPIENTRY
1621 eglGetError(void)
1622 {
1623 _EGLThreadInfo *t = _eglGetCurrentThread();
1624 EGLint e = t->LastError;
1625 if (!_eglIsCurrentThreadDummy())
1626 t->LastError = EGL_SUCCESS;
1627 return e;
1628 }
1629
1630
1631 /**
1632 ** EGL 1.2
1633 **/
1634
1635 /**
1636 * Specify the client API to use for subsequent calls including:
1637 * eglCreateContext()
1638 * eglGetCurrentContext()
1639 * eglGetCurrentDisplay()
1640 * eglGetCurrentSurface()
1641 * eglMakeCurrent(when the ctx parameter is EGL NO CONTEXT)
1642 * eglWaitClient()
1643 * eglWaitNative()
1644 * See section 3.7 "Rendering Context" in the EGL specification for details.
1645 */
1646 EGLBoolean EGLAPIENTRY
1647 eglBindAPI(EGLenum api)
1648 {
1649 _EGLThreadInfo *t;
1650
1651 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1652
1653 t = _eglGetCurrentThread();
1654 if (_eglIsCurrentThreadDummy())
1655 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_FALSE);
1656
1657 if (!_eglIsApiValid(api))
1658 RETURN_EGL_ERROR(NULL, EGL_BAD_PARAMETER, EGL_FALSE);
1659
1660 t->CurrentAPI = api;
1661
1662 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1663 }
1664
1665
1666 /**
1667 * Return the last value set with eglBindAPI().
1668 */
1669 EGLenum EGLAPIENTRY
1670 eglQueryAPI(void)
1671 {
1672 _EGLThreadInfo *t = _eglGetCurrentThread();
1673 EGLenum ret;
1674
1675 /* returns one of EGL_OPENGL_API, EGL_OPENGL_ES_API or EGL_OPENVG_API */
1676 ret = t->CurrentAPI;
1677
1678 RETURN_EGL_SUCCESS(NULL, ret);
1679 }
1680
1681
1682 EGLSurface EGLAPIENTRY
1683 eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype,
1684 EGLClientBuffer buffer, EGLConfig config,
1685 const EGLint *attrib_list)
1686 {
1687 _EGLDisplay *disp = _eglLockDisplay(dpy);
1688 _EGLConfig *conf = _eglLookupConfig(config, disp);
1689 _EGLDriver *drv;
1690
1691 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1692
1693 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
1694
1695 /* OpenVG is not supported */
1696 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
1697 }
1698
1699
1700 EGLBoolean EGLAPIENTRY
1701 eglReleaseThread(void)
1702 {
1703 /* unbind current contexts */
1704 if (!_eglIsCurrentThreadDummy()) {
1705 _EGLThreadInfo *t = _eglGetCurrentThread();
1706 _EGLContext *ctx = t->CurrentContext;
1707
1708 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1709
1710 if (ctx) {
1711 _EGLDisplay *disp = ctx->Resource.Display;
1712 _EGLDriver *drv;
1713
1714 mtx_lock(&disp->Mutex);
1715 drv = disp->Driver;
1716 (void) drv->API.MakeCurrent(drv, disp, NULL, NULL, NULL);
1717 mtx_unlock(&disp->Mutex);
1718 }
1719 }
1720
1721 _eglDestroyCurrentThread();
1722
1723 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1724 }
1725
1726
1727 static EGLImage
1728 _eglCreateImageCommon(_EGLDisplay *disp, EGLContext ctx, EGLenum target,
1729 EGLClientBuffer buffer, const EGLint *attr_list)
1730 {
1731 _EGLContext *context = _eglLookupContext(ctx, disp);
1732 _EGLDriver *drv;
1733 _EGLImage *img;
1734 EGLImage ret;
1735
1736 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
1737 if (!disp->Extensions.KHR_image_base)
1738 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
1739 if (!context && ctx != EGL_NO_CONTEXT)
1740 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_NO_IMAGE_KHR);
1741 /* "If <target> is EGL_LINUX_DMA_BUF_EXT, <dpy> must be a valid display,
1742 * <ctx> must be EGL_NO_CONTEXT..."
1743 */
1744 if (ctx != EGL_NO_CONTEXT && target == EGL_LINUX_DMA_BUF_EXT)
1745 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1746
1747 img = drv->API.CreateImageKHR(drv, disp, context, target,
1748 buffer, attr_list);
1749 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
1750
1751 RETURN_EGL_EVAL(disp, ret);
1752 }
1753
1754 static EGLImage EGLAPIENTRY
1755 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1756 EGLClientBuffer buffer, const EGLint *attr_list)
1757 {
1758 _EGLDisplay *disp = _eglLockDisplay(dpy);
1759 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1760 return _eglCreateImageCommon(disp, ctx, target, buffer, attr_list);
1761 }
1762
1763
1764 EGLImage EGLAPIENTRY
1765 eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1766 EGLClientBuffer buffer, const EGLAttrib *attr_list)
1767 {
1768 _EGLDisplay *disp = _eglLockDisplay(dpy);
1769 EGLImage image;
1770 EGLint *int_attribs;
1771
1772 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1773
1774 int_attribs = _eglConvertAttribsToInt(attr_list);
1775 if (attr_list && !int_attribs)
1776 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_IMAGE);
1777
1778 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs);
1779 free(int_attribs);
1780 return image;
1781 }
1782
1783
1784 static EGLBoolean
1785 _eglDestroyImageCommon(_EGLDisplay *disp, _EGLImage *img)
1786 {
1787 _EGLDriver *drv;
1788 EGLBoolean ret;
1789
1790 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
1791 if (!disp->Extensions.KHR_image_base)
1792 RETURN_EGL_EVAL(disp, EGL_FALSE);
1793 if (!img)
1794 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1795
1796 _eglUnlinkImage(img);
1797 ret = drv->API.DestroyImageKHR(drv, disp, img);
1798
1799 RETURN_EGL_EVAL(disp, ret);
1800 }
1801
1802 EGLBoolean EGLAPIENTRY
1803 eglDestroyImage(EGLDisplay dpy, EGLImage image)
1804 {
1805 _EGLDisplay *disp = _eglLockDisplay(dpy);
1806 _EGLImage *img = _eglLookupImage(image, disp);
1807 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1808 return _eglDestroyImageCommon(disp, img);
1809 }
1810
1811 static EGLBoolean EGLAPIENTRY
1812 eglDestroyImageKHR(EGLDisplay dpy, EGLImage image)
1813 {
1814 _EGLDisplay *disp = _eglLockDisplay(dpy);
1815 _EGLImage *img = _eglLookupImage(image, disp);
1816 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1817 return _eglDestroyImageCommon(disp, img);
1818 }
1819
1820
1821 static EGLSync
1822 _eglCreateSync(_EGLDisplay *disp, EGLenum type, const EGLAttrib *attrib_list,
1823 EGLBoolean orig_is_EGLAttrib,
1824 EGLenum invalid_type_error)
1825 {
1826 _EGLContext *ctx = _eglGetCurrentContext();
1827 _EGLDriver *drv;
1828 _EGLSync *sync;
1829 EGLSync ret;
1830
1831 _EGL_CHECK_DISPLAY(disp, EGL_NO_SYNC_KHR, drv);
1832
1833 if (!disp->Extensions.KHR_cl_event2 && orig_is_EGLAttrib) {
1834 /* There exist two EGLAttrib variants of eglCreateSync*:
1835 * eglCreateSync64KHR which requires EGL_KHR_cl_event2, and eglCreateSync
1836 * which requires EGL 1.5. Here we use the presence of EGL_KHR_cl_event2
1837 * support as a proxy for EGL 1.5 support, even though that's not
1838 * entirely correct (though _eglComputeVersion does the same).
1839 *
1840 * The EGL spec provides no guidance on how to handle unsupported
1841 * functions. EGL_BAD_MATCH seems reasonable.
1842 */
1843 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1844 }
1845
1846 /* If type is EGL_SYNC_FENCE and no context is current for the bound API
1847 * (i.e., eglGetCurrentContext returns EGL_NO_CONTEXT ), an EGL_BAD_MATCH
1848 * error is generated.
1849 */
1850 if (!ctx &&
1851 (type == EGL_SYNC_FENCE_KHR || type == EGL_SYNC_NATIVE_FENCE_ANDROID))
1852 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1853
1854 /* return an error if the client API doesn't support GL_OES_EGL_sync */
1855 if (ctx && (ctx->Resource.Display != disp ||
1856 ctx->ClientAPI != EGL_OPENGL_ES_API))
1857 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1858
1859 switch (type) {
1860 case EGL_SYNC_FENCE_KHR:
1861 if (!disp->Extensions.KHR_fence_sync)
1862 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1863 break;
1864 case EGL_SYNC_REUSABLE_KHR:
1865 if (!disp->Extensions.KHR_reusable_sync)
1866 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1867 break;
1868 case EGL_SYNC_CL_EVENT_KHR:
1869 if (!disp->Extensions.KHR_cl_event2)
1870 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1871 break;
1872 case EGL_SYNC_NATIVE_FENCE_ANDROID:
1873 if (!disp->Extensions.ANDROID_native_fence_sync)
1874 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1875 break;
1876 default:
1877 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1878 }
1879
1880 sync = drv->API.CreateSyncKHR(drv, disp, type, attrib_list);
1881 ret = (sync) ? _eglLinkSync(sync) : EGL_NO_SYNC_KHR;
1882
1883 RETURN_EGL_EVAL(disp, ret);
1884 }
1885
1886
1887 static EGLSync EGLAPIENTRY
1888 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *int_list)
1889 {
1890 _EGLDisplay *disp = _eglLockDisplay(dpy);
1891 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1892
1893 EGLSync sync;
1894 EGLAttrib *attrib_list;
1895 EGLint err;
1896
1897 if (sizeof(int_list[0]) == sizeof(attrib_list[0])) {
1898 attrib_list = (EGLAttrib *) int_list;
1899 } else {
1900 err = _eglConvertIntsToAttribs(int_list, &attrib_list);
1901 if (err != EGL_SUCCESS)
1902 RETURN_EGL_ERROR(disp, err, EGL_NO_SYNC);
1903 }
1904
1905 sync = _eglCreateSync(disp, type, attrib_list, EGL_FALSE,
1906 EGL_BAD_ATTRIBUTE);
1907
1908 if (sizeof(int_list[0]) != sizeof(attrib_list[0]))
1909 free(attrib_list);
1910
1911 /* Don't double-unlock the display. _eglCreateSync already unlocked it. */
1912 return sync;
1913 }
1914
1915
1916 static EGLSync EGLAPIENTRY
1917 eglCreateSync64KHR(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1918 {
1919 _EGLDisplay *disp = _eglLockDisplay(dpy);
1920 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1921 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1922 EGL_BAD_ATTRIBUTE);
1923 }
1924
1925
1926 EGLSync EGLAPIENTRY
1927 eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1928 {
1929 _EGLDisplay *disp = _eglLockDisplay(dpy);
1930 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1931 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1932 EGL_BAD_PARAMETER);
1933 }
1934
1935
1936 static EGLBoolean
1937 _eglDestroySync(_EGLDisplay *disp, _EGLSync *s)
1938 {
1939 _EGLDriver *drv;
1940 EGLBoolean ret;
1941
1942 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1943 assert(disp->Extensions.KHR_reusable_sync ||
1944 disp->Extensions.KHR_fence_sync ||
1945 disp->Extensions.ANDROID_native_fence_sync);
1946
1947 _eglUnlinkSync(s);
1948 ret = drv->API.DestroySyncKHR(drv, disp, s);
1949
1950 RETURN_EGL_EVAL(disp, ret);
1951 }
1952
1953 EGLBoolean EGLAPIENTRY
1954 eglDestroySync(EGLDisplay dpy, EGLSync sync)
1955 {
1956 _EGLDisplay *disp = _eglLockDisplay(dpy);
1957 _EGLSync *s = _eglLookupSync(sync, disp);
1958 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1959 return _eglDestroySync(disp, s);
1960 }
1961
1962 static EGLBoolean EGLAPIENTRY
1963 eglDestroySyncKHR(EGLDisplay dpy, EGLSync sync)
1964 {
1965 _EGLDisplay *disp = _eglLockDisplay(dpy);
1966 _EGLSync *s = _eglLookupSync(sync, disp);
1967 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1968 return _eglDestroySync(disp, s);
1969 }
1970
1971
1972 static EGLint
1973 _eglClientWaitSyncCommon(_EGLDisplay *disp, EGLDisplay dpy,
1974 _EGLSync *s, EGLint flags, EGLTime timeout)
1975 {
1976 _EGLDriver *drv;
1977 EGLint ret;
1978
1979 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1980 assert(disp->Extensions.KHR_reusable_sync ||
1981 disp->Extensions.KHR_fence_sync ||
1982 disp->Extensions.ANDROID_native_fence_sync);
1983
1984 if (s->SyncStatus == EGL_SIGNALED_KHR)
1985 RETURN_EGL_EVAL(disp, EGL_CONDITION_SATISFIED_KHR);
1986
1987 /* if sync type is EGL_SYNC_REUSABLE_KHR, dpy should be
1988 * unlocked here to allow other threads also to be able to
1989 * go into waiting state.
1990 */
1991
1992 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1993 _eglUnlockDisplay(dpy);
1994
1995 ret = drv->API.ClientWaitSyncKHR(drv, disp, s, flags, timeout);
1996
1997 /*
1998 * 'disp' is already unlocked for reusable sync type,
1999 * so passing 'NULL' to bypass unlocking display.
2000 */
2001 if (s->Type == EGL_SYNC_REUSABLE_KHR)
2002 RETURN_EGL_EVAL(NULL, ret);
2003 else
2004 RETURN_EGL_EVAL(disp, ret);
2005 }
2006
2007 EGLint EGLAPIENTRY
2008 eglClientWaitSync(EGLDisplay dpy, EGLSync sync,
2009 EGLint flags, EGLTime timeout)
2010 {
2011 _EGLDisplay *disp = _eglLockDisplay(dpy);
2012 _EGLSync *s = _eglLookupSync(sync, disp);
2013 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2014 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2015 }
2016
2017 static EGLint EGLAPIENTRY
2018 eglClientWaitSyncKHR(EGLDisplay dpy, EGLSync sync,
2019 EGLint flags, EGLTime timeout)
2020 {
2021 _EGLDisplay *disp = _eglLockDisplay(dpy);
2022 _EGLSync *s = _eglLookupSync(sync, disp);
2023 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2024 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2025 }
2026
2027
2028 static EGLint
2029 _eglWaitSyncCommon(_EGLDisplay *disp, _EGLSync *s, EGLint flags)
2030 {
2031 _EGLContext *ctx = _eglGetCurrentContext();
2032 _EGLDriver *drv;
2033 EGLint ret;
2034
2035 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2036 assert(disp->Extensions.KHR_wait_sync);
2037
2038 /* return an error if the client API doesn't support GL_OES_EGL_sync */
2039 if (ctx == EGL_NO_CONTEXT || ctx->ClientAPI != EGL_OPENGL_ES_API)
2040 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
2041
2042 /* the API doesn't allow any flags yet */
2043 if (flags != 0)
2044 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2045
2046 ret = drv->API.WaitSyncKHR(drv, disp, s);
2047
2048 RETURN_EGL_EVAL(disp, ret);
2049 }
2050
2051 static EGLint EGLAPIENTRY
2052 eglWaitSyncKHR(EGLDisplay dpy, EGLSync sync, EGLint flags)
2053 {
2054 _EGLDisplay *disp = _eglLockDisplay(dpy);
2055 _EGLSync *s = _eglLookupSync(sync, disp);
2056 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2057 return _eglWaitSyncCommon(disp, s, flags);
2058 }
2059
2060
2061 EGLBoolean EGLAPIENTRY
2062 eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags)
2063 {
2064 /* The KHR version returns EGLint, while the core version returns
2065 * EGLBoolean. In both cases, the return values can only be EGL_FALSE and
2066 * EGL_TRUE.
2067 */
2068 _EGLDisplay *disp = _eglLockDisplay(dpy);
2069 _EGLSync *s = _eglLookupSync(sync, disp);
2070 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2071 return _eglWaitSyncCommon(disp, s, flags);
2072 }
2073
2074
2075 static EGLBoolean EGLAPIENTRY
2076 eglSignalSyncKHR(EGLDisplay dpy, EGLSync sync, EGLenum mode)
2077 {
2078 _EGLDisplay *disp = _eglLockDisplay(dpy);
2079 _EGLSync *s = _eglLookupSync(sync, disp);
2080 _EGLDriver *drv;
2081 EGLBoolean ret;
2082
2083 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2084
2085 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2086 assert(disp->Extensions.KHR_reusable_sync);
2087 ret = drv->API.SignalSyncKHR(drv, disp, s, mode);
2088
2089 RETURN_EGL_EVAL(disp, ret);
2090 }
2091
2092
2093 static EGLBoolean
2094 _eglGetSyncAttribCommon(_EGLDisplay *disp, _EGLSync *s, EGLint attribute, EGLAttrib *value)
2095 {
2096 _EGLDriver *drv;
2097 EGLBoolean ret;
2098
2099 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2100 assert(disp->Extensions.KHR_reusable_sync ||
2101 disp->Extensions.KHR_fence_sync ||
2102 disp->Extensions.ANDROID_native_fence_sync);
2103
2104 ret = _eglGetSyncAttrib(drv, disp, s, attribute, value);
2105
2106 RETURN_EGL_EVAL(disp, ret);
2107 }
2108
2109 EGLBoolean EGLAPIENTRY
2110 eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value)
2111 {
2112 _EGLDisplay *disp = _eglLockDisplay(dpy);
2113 _EGLSync *s = _eglLookupSync(sync, disp);
2114 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2115 return _eglGetSyncAttribCommon(disp, s, attribute, value);
2116 }
2117
2118
2119 static EGLBoolean EGLAPIENTRY
2120 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLint *value)
2121 {
2122 _EGLDisplay *disp = _eglLockDisplay(dpy);
2123 _EGLSync *s = _eglLookupSync(sync, disp);
2124 EGLAttrib attrib;
2125 EGLBoolean result;
2126
2127 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2128
2129 if (!value)
2130 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2131
2132 attrib = *value;
2133 result = _eglGetSyncAttribCommon(disp, s, attribute, &attrib);
2134
2135 /* The EGL_KHR_fence_sync spec says this about eglGetSyncAttribKHR:
2136 *
2137 * If any error occurs, <*value> is not modified.
2138 */
2139 if (result == EGL_FALSE)
2140 return result;
2141
2142 *value = attrib;
2143 return result;
2144 }
2145
2146 static EGLint EGLAPIENTRY
2147 eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSync sync)
2148 {
2149 _EGLDisplay *disp = _eglLockDisplay(dpy);
2150 _EGLSync *s = _eglLookupSync(sync, disp);
2151 _EGLDriver *drv;
2152 EGLBoolean ret;
2153
2154 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2155
2156 /* the spec doesn't seem to specify what happens if the fence
2157 * type is not EGL_SYNC_NATIVE_FENCE_ANDROID, but this seems
2158 * sensible:
2159 */
2160 if (!(s && (s->Type == EGL_SYNC_NATIVE_FENCE_ANDROID)))
2161 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_NATIVE_FENCE_FD_ANDROID);
2162
2163 _EGL_CHECK_SYNC(disp, s, EGL_NO_NATIVE_FENCE_FD_ANDROID, drv);
2164 assert(disp->Extensions.ANDROID_native_fence_sync);
2165 ret = drv->API.DupNativeFenceFDANDROID(drv, disp, s);
2166
2167 RETURN_EGL_EVAL(disp, ret);
2168 }
2169
2170 static EGLBoolean EGLAPIENTRY
2171 eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface,
2172 EGLint numRects, const EGLint *rects)
2173 {
2174 _EGLContext *ctx = _eglGetCurrentContext();
2175 _EGLDisplay *disp = _eglLockDisplay(dpy);
2176 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2177 _EGLDriver *drv;
2178 EGLBoolean ret;
2179
2180 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2181
2182 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2183
2184 if (!disp->Extensions.NOK_swap_region)
2185 RETURN_EGL_EVAL(disp, EGL_FALSE);
2186
2187 /* surface must be bound to current context in EGL 1.4 */
2188 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
2189 surf != ctx->DrawSurface)
2190 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
2191
2192 ret = drv->API.SwapBuffersRegionNOK(drv, disp, surf, numRects, rects);
2193
2194 RETURN_EGL_EVAL(disp, ret);
2195 }
2196
2197
2198 static EGLImage EGLAPIENTRY
2199 eglCreateDRMImageMESA(EGLDisplay dpy, const EGLint *attr_list)
2200 {
2201 _EGLDisplay *disp = _eglLockDisplay(dpy);
2202 _EGLDriver *drv;
2203 _EGLImage *img;
2204 EGLImage ret;
2205
2206 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2207
2208 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
2209 if (!disp->Extensions.MESA_drm_image)
2210 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
2211
2212 img = drv->API.CreateDRMImageMESA(drv, disp, attr_list);
2213 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
2214
2215 RETURN_EGL_EVAL(disp, ret);
2216 }
2217
2218 static EGLBoolean EGLAPIENTRY
2219 eglExportDRMImageMESA(EGLDisplay dpy, EGLImage image,
2220 EGLint *name, EGLint *handle, EGLint *stride)
2221 {
2222 _EGLDisplay *disp = _eglLockDisplay(dpy);
2223 _EGLImage *img = _eglLookupImage(image, disp);
2224 _EGLDriver *drv;
2225 EGLBoolean ret;
2226
2227 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2228
2229 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2230 assert(disp->Extensions.MESA_drm_image);
2231
2232 if (!img)
2233 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2234
2235 ret = drv->API.ExportDRMImageMESA(drv, disp, img, name, handle, stride);
2236
2237 RETURN_EGL_EVAL(disp, ret);
2238 }
2239
2240
2241 struct wl_display;
2242
2243 static EGLBoolean EGLAPIENTRY
2244 eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2245 {
2246 _EGLDisplay *disp = _eglLockDisplay(dpy);
2247 _EGLDriver *drv;
2248 EGLBoolean ret;
2249
2250 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2251
2252 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2253 assert(disp->Extensions.WL_bind_wayland_display);
2254
2255 if (!display)
2256 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2257
2258 ret = drv->API.BindWaylandDisplayWL(drv, disp, display);
2259
2260 RETURN_EGL_EVAL(disp, ret);
2261 }
2262
2263 static EGLBoolean EGLAPIENTRY
2264 eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2265 {
2266 _EGLDisplay *disp = _eglLockDisplay(dpy);
2267 _EGLDriver *drv;
2268 EGLBoolean ret;
2269
2270 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2271
2272 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2273 assert(disp->Extensions.WL_bind_wayland_display);
2274
2275 if (!display)
2276 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2277
2278 ret = drv->API.UnbindWaylandDisplayWL(drv, disp, display);
2279
2280 RETURN_EGL_EVAL(disp, ret);
2281 }
2282
2283 static EGLBoolean EGLAPIENTRY
2284 eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer,
2285 EGLint attribute, EGLint *value)
2286 {
2287 _EGLDisplay *disp = _eglLockDisplay(dpy);
2288 _EGLDriver *drv;
2289 EGLBoolean ret;
2290
2291 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2292
2293 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2294 assert(disp->Extensions.WL_bind_wayland_display);
2295
2296 if (!buffer)
2297 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2298
2299 ret = drv->API.QueryWaylandBufferWL(drv, disp, buffer, attribute, value);
2300
2301 RETURN_EGL_EVAL(disp, ret);
2302 }
2303
2304
2305 static struct wl_buffer * EGLAPIENTRY
2306 eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImage image)
2307 {
2308 _EGLDisplay *disp = _eglLockDisplay(dpy);
2309 _EGLImage *img;
2310 _EGLDriver *drv;
2311 struct wl_buffer *ret;
2312
2313 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2314
2315 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2316 if (!disp->Extensions.WL_create_wayland_buffer_from_image)
2317 RETURN_EGL_EVAL(disp, NULL);
2318
2319 img = _eglLookupImage(image, disp);
2320
2321 if (!img)
2322 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, NULL);
2323
2324 ret = drv->API.CreateWaylandBufferFromImageWL(drv, disp, img);
2325
2326 RETURN_EGL_EVAL(disp, ret);
2327 }
2328
2329 static EGLBoolean EGLAPIENTRY
2330 eglPostSubBufferNV(EGLDisplay dpy, EGLSurface surface,
2331 EGLint x, EGLint y, EGLint width, EGLint height)
2332 {
2333 _EGLDisplay *disp = _eglLockDisplay(dpy);
2334 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2335 _EGLDriver *drv;
2336 EGLBoolean ret;
2337
2338 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2339
2340 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2341
2342 if (!disp->Extensions.NV_post_sub_buffer)
2343 RETURN_EGL_EVAL(disp, EGL_FALSE);
2344
2345 ret = drv->API.PostSubBufferNV(drv, disp, surf, x, y, width, height);
2346
2347 RETURN_EGL_EVAL(disp, ret);
2348 }
2349
2350 static EGLBoolean EGLAPIENTRY
2351 eglGetSyncValuesCHROMIUM(EGLDisplay dpy, EGLSurface surface,
2352 EGLuint64KHR *ust, EGLuint64KHR *msc,
2353 EGLuint64KHR *sbc)
2354 {
2355 _EGLDisplay *disp = _eglLockDisplay(dpy);
2356 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2357 _EGLDriver *drv;
2358 EGLBoolean ret;
2359
2360 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2361
2362 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2363 if (!disp->Extensions.CHROMIUM_sync_control)
2364 RETURN_EGL_EVAL(disp, EGL_FALSE);
2365
2366 if (!ust || !msc || !sbc)
2367 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2368
2369 ret = drv->API.GetSyncValuesCHROMIUM(disp, surf, ust, msc, sbc);
2370
2371 RETURN_EGL_EVAL(disp, ret);
2372 }
2373
2374 static EGLBoolean EGLAPIENTRY
2375 eglExportDMABUFImageQueryMESA(EGLDisplay dpy, EGLImage image,
2376 EGLint *fourcc, EGLint *nplanes,
2377 EGLuint64KHR *modifiers)
2378 {
2379 _EGLDisplay *disp = _eglLockDisplay(dpy);
2380 _EGLImage *img = _eglLookupImage(image, disp);
2381 _EGLDriver *drv;
2382 EGLBoolean ret;
2383
2384 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2385
2386 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2387 assert(disp->Extensions.MESA_image_dma_buf_export);
2388
2389 if (!img)
2390 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2391
2392 ret = drv->API.ExportDMABUFImageQueryMESA(drv, disp, img, fourcc, nplanes,
2393 modifiers);
2394
2395 RETURN_EGL_EVAL(disp, ret);
2396 }
2397
2398 static EGLBoolean EGLAPIENTRY
2399 eglExportDMABUFImageMESA(EGLDisplay dpy, EGLImage image,
2400 int *fds, EGLint *strides, EGLint *offsets)
2401 {
2402 _EGLDisplay *disp = _eglLockDisplay(dpy);
2403 _EGLImage *img = _eglLookupImage(image, disp);
2404 _EGLDriver *drv;
2405 EGLBoolean ret;
2406
2407 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2408
2409 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2410 assert(disp->Extensions.MESA_image_dma_buf_export);
2411
2412 if (!img)
2413 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2414
2415 ret = drv->API.ExportDMABUFImageMESA(drv, disp, img, fds, strides, offsets);
2416
2417 RETURN_EGL_EVAL(disp, ret);
2418 }
2419
2420 static EGLint EGLAPIENTRY
2421 eglLabelObjectKHR(EGLDisplay dpy, EGLenum objectType, EGLObjectKHR object,
2422 EGLLabelKHR label)
2423 {
2424 _EGLDisplay *disp = NULL;
2425 _EGLResourceType type;
2426
2427 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2428
2429 if (objectType == EGL_OBJECT_THREAD_KHR) {
2430 _EGLThreadInfo *t = _eglGetCurrentThread();
2431
2432 if (!_eglIsCurrentThreadDummy()) {
2433 t->Label = label;
2434 return EGL_SUCCESS;
2435 }
2436
2437 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_BAD_ALLOC);
2438 }
2439
2440 disp = _eglLockDisplay(dpy);
2441 if (disp == NULL)
2442 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_BAD_DISPLAY);
2443
2444 if (objectType == EGL_OBJECT_DISPLAY_KHR) {
2445 if (dpy != (EGLDisplay) object)
2446 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2447
2448 disp->Label = label;
2449 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2450 }
2451
2452 switch (objectType) {
2453 case EGL_OBJECT_CONTEXT_KHR:
2454 type = _EGL_RESOURCE_CONTEXT;
2455 break;
2456 case EGL_OBJECT_SURFACE_KHR:
2457 type = _EGL_RESOURCE_SURFACE;
2458 break;
2459 case EGL_OBJECT_IMAGE_KHR:
2460 type = _EGL_RESOURCE_IMAGE;
2461 break;
2462 case EGL_OBJECT_SYNC_KHR:
2463 type = _EGL_RESOURCE_SYNC;
2464 break;
2465 case EGL_OBJECT_STREAM_KHR:
2466 default:
2467 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2468 }
2469
2470 if (_eglCheckResource(object, type, disp)) {
2471 _EGLResource *res = (_EGLResource *) object;
2472
2473 res->Label = label;
2474 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2475 }
2476
2477 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2478 }
2479
2480 static EGLint EGLAPIENTRY
2481 eglDebugMessageControlKHR(EGLDEBUGPROCKHR callback,
2482 const EGLAttrib *attrib_list)
2483 {
2484 unsigned int newEnabled;
2485
2486 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2487
2488 mtx_lock(_eglGlobal.Mutex);
2489
2490 newEnabled = _eglGlobal.debugTypesEnabled;
2491 if (attrib_list != NULL) {
2492 int i;
2493
2494 for (i = 0; attrib_list[i] != EGL_NONE; i += 2) {
2495 switch (attrib_list[i]) {
2496 case EGL_DEBUG_MSG_CRITICAL_KHR:
2497 case EGL_DEBUG_MSG_ERROR_KHR:
2498 case EGL_DEBUG_MSG_WARN_KHR:
2499 case EGL_DEBUG_MSG_INFO_KHR:
2500 if (attrib_list[i + 1])
2501 newEnabled |= DebugBitFromType(attrib_list[i]);
2502 else
2503 newEnabled &= ~DebugBitFromType(attrib_list[i]);
2504 break;
2505 default:
2506 // On error, set the last error code, call the current
2507 // debug callback, and return the error code.
2508 mtx_unlock(_eglGlobal.Mutex);
2509 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2510 "Invalid attribute 0x%04lx", (unsigned long) attrib_list[i]);
2511 return EGL_BAD_ATTRIBUTE;
2512 }
2513 }
2514 }
2515
2516 if (callback != NULL) {
2517 _eglGlobal.debugCallback = callback;
2518 _eglGlobal.debugTypesEnabled = newEnabled;
2519 } else {
2520 _eglGlobal.debugCallback = NULL;
2521 _eglGlobal.debugTypesEnabled = _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR;
2522 }
2523
2524 mtx_unlock(_eglGlobal.Mutex);
2525 return EGL_SUCCESS;
2526 }
2527
2528 static EGLBoolean EGLAPIENTRY
2529 eglQueryDebugKHR(EGLint attribute, EGLAttrib *value)
2530 {
2531 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2532
2533 mtx_lock(_eglGlobal.Mutex);
2534
2535 switch (attribute) {
2536 case EGL_DEBUG_MSG_CRITICAL_KHR:
2537 case EGL_DEBUG_MSG_ERROR_KHR:
2538 case EGL_DEBUG_MSG_WARN_KHR:
2539 case EGL_DEBUG_MSG_INFO_KHR:
2540 if (_eglGlobal.debugTypesEnabled & DebugBitFromType(attribute))
2541 *value = EGL_TRUE;
2542 else
2543 *value = EGL_FALSE;
2544 break;
2545 case EGL_DEBUG_CALLBACK_KHR:
2546 *value = (EGLAttrib) _eglGlobal.debugCallback;
2547 break;
2548 default:
2549 mtx_unlock(_eglGlobal.Mutex);
2550 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2551 "Invalid attribute 0x%04lx", (unsigned long) attribute);
2552 return EGL_FALSE;
2553 }
2554
2555 mtx_unlock(_eglGlobal.Mutex);
2556 return EGL_TRUE;
2557 }
2558
2559 static int
2560 _eglFunctionCompare(const void *key, const void *elem)
2561 {
2562 const char *procname = key;
2563 const struct _egl_entrypoint *entrypoint = elem;
2564 return strcmp(procname, entrypoint->name);
2565 }
2566
2567 static EGLBoolean EGLAPIENTRY
2568 eglQueryDmaBufFormatsEXT(EGLDisplay dpy, EGLint max_formats,
2569 EGLint *formats, EGLint *num_formats)
2570 {
2571 _EGLDisplay *disp = _eglLockDisplay(dpy);
2572 _EGLDriver *drv;
2573 EGLBoolean ret;
2574
2575 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2576
2577 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2578
2579 ret = drv->API.QueryDmaBufFormatsEXT(drv, disp, max_formats, formats,
2580 num_formats);
2581
2582 RETURN_EGL_EVAL(disp, ret);
2583 }
2584
2585 static EGLBoolean EGLAPIENTRY
2586 eglQueryDmaBufModifiersEXT(EGLDisplay dpy, EGLint format, EGLint max_modifiers,
2587 EGLuint64KHR *modifiers, EGLBoolean *external_only,
2588 EGLint *num_modifiers)
2589 {
2590 _EGLDisplay *disp = _eglLockDisplay(dpy);
2591 _EGLDriver *drv;
2592 EGLBoolean ret;
2593
2594 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2595
2596 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2597
2598 ret = drv->API.QueryDmaBufModifiersEXT(drv, disp, format, max_modifiers,
2599 modifiers, external_only,
2600 num_modifiers);
2601
2602 RETURN_EGL_EVAL(disp, ret);
2603 }
2604
2605 static void EGLAPIENTRY
2606 eglSetBlobCacheFuncsANDROID(EGLDisplay *dpy, EGLSetBlobFuncANDROID set,
2607 EGLGetBlobFuncANDROID get)
2608 {
2609 /* This function does not return anything so we cannot
2610 * utilize the helper macros _EGL_FUNC_START or _EGL_CHECK_DISPLAY.
2611 */
2612 _EGLDisplay *disp = _eglLockDisplay(dpy);
2613 if (!_eglSetFuncName(__func__, disp, EGL_OBJECT_DISPLAY_KHR, NULL)) {
2614 if (disp)
2615 _eglUnlockDisplay(disp);
2616 return;
2617 }
2618
2619 _EGLDriver *drv = _eglCheckDisplay(disp, __func__);
2620 if (!drv) {
2621 if (disp)
2622 _eglUnlockDisplay(disp);
2623 return;
2624 }
2625
2626 if (!set || !get) {
2627 _eglError(EGL_BAD_PARAMETER,
2628 "eglSetBlobCacheFuncsANDROID: NULL handler given");
2629 _eglUnlockDisplay(disp);
2630 return;
2631 }
2632
2633 if (disp->BlobCacheSet) {
2634 _eglError(EGL_BAD_PARAMETER,
2635 "eglSetBlobCacheFuncsANDROID: functions already set");
2636 _eglUnlockDisplay(disp);
2637 return;
2638 }
2639
2640 disp->BlobCacheSet = set;
2641 disp->BlobCacheGet = get;
2642
2643 drv->API.SetBlobCacheFuncsANDROID(drv, disp, set, get);
2644
2645 _eglUnlockDisplay(disp);
2646 }
2647
2648 static EGLBoolean EGLAPIENTRY
2649 eglQueryDeviceAttribEXT(EGLDeviceEXT device,
2650 EGLint attribute,
2651 EGLAttrib *value)
2652 {
2653 _EGLDevice *dev = _eglLookupDevice(device);
2654 EGLBoolean ret;
2655
2656 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2657 if (!dev)
2658 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, EGL_FALSE);
2659
2660 ret = _eglQueryDeviceAttribEXT(dev, attribute, value);
2661 RETURN_EGL_EVAL(NULL, ret);
2662 }
2663
2664 static const char * EGLAPIENTRY
2665 eglQueryDeviceStringEXT(EGLDeviceEXT device,
2666 EGLint name)
2667 {
2668 _EGLDevice *dev = _eglLookupDevice(device);
2669
2670 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2671 if (!dev)
2672 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, NULL);
2673
2674 RETURN_EGL_EVAL(NULL, _eglQueryDeviceStringEXT(dev, name));
2675 }
2676
2677 static EGLBoolean EGLAPIENTRY
2678 eglQueryDevicesEXT(EGLint max_devices,
2679 EGLDeviceEXT *devices,
2680 EGLint *num_devices)
2681 {
2682 EGLBoolean ret;
2683
2684 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2685 ret = _eglQueryDevicesEXT(max_devices, (_EGLDevice **) devices,
2686 num_devices);
2687 RETURN_EGL_EVAL(NULL, ret);
2688 }
2689
2690 static EGLBoolean EGLAPIENTRY
2691 eglQueryDisplayAttribEXT(EGLDisplay dpy,
2692 EGLint attribute,
2693 EGLAttrib *value)
2694 {
2695 _EGLDisplay *disp = _eglLockDisplay(dpy);
2696 _EGLDriver *drv;
2697
2698 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2699 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2700
2701 switch (attribute) {
2702 case EGL_DEVICE_EXT:
2703 *value = (EGLAttrib) disp->Device;
2704 break;
2705 default:
2706 RETURN_EGL_ERROR(disp, EGL_BAD_ATTRIBUTE, EGL_FALSE);
2707 }
2708 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
2709 }
2710
2711 static char * EGLAPIENTRY
2712 eglGetDisplayDriverConfig(EGLDisplay dpy)
2713 {
2714 _EGLDisplay *disp = _eglLockDisplay(dpy);
2715 _EGLDriver *drv;
2716 char *ret;
2717
2718 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2719 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2720
2721 assert(disp->Extensions.MESA_query_driver);
2722
2723 ret = drv->API.QueryDriverConfig(disp);
2724 RETURN_EGL_EVAL(disp, ret);
2725 }
2726
2727 static const char * EGLAPIENTRY
2728 eglGetDisplayDriverName(EGLDisplay dpy)
2729 {
2730 _EGLDisplay *disp = _eglLockDisplay(dpy);
2731 _EGLDriver *drv;
2732 const char *ret;
2733
2734 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2735 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2736
2737 assert(disp->Extensions.MESA_query_driver);
2738
2739 ret = drv->API.QueryDriverName(disp);
2740 RETURN_EGL_EVAL(disp, ret);
2741 }
2742
2743 __eglMustCastToProperFunctionPointerType EGLAPIENTRY
2744 eglGetProcAddress(const char *procname)
2745 {
2746 static const struct _egl_entrypoint egl_functions[] = {
2747 #define EGL_ENTRYPOINT(f) { .name = #f, .function = (_EGLProc) f },
2748 #include "eglentrypoint.h"
2749 #undef EGL_ENTRYPOINT
2750 };
2751 _EGLProc ret = NULL;
2752
2753 if (!procname)
2754 RETURN_EGL_SUCCESS(NULL, NULL);
2755
2756 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2757
2758 if (strncmp(procname, "egl", 3) == 0) {
2759 const struct _egl_entrypoint *entrypoint =
2760 bsearch(procname,
2761 egl_functions, ARRAY_SIZE(egl_functions),
2762 sizeof(egl_functions[0]),
2763 _eglFunctionCompare);
2764 if (entrypoint)
2765 ret = entrypoint->function;
2766 }
2767
2768 if (!ret)
2769 ret = _eglGetDriverProc(procname);
2770
2771 RETURN_EGL_SUCCESS(NULL, ret);
2772 }
2773
2774 static int
2775 _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context,
2776 _EGLDisplay **disp, _EGLDriver **drv,
2777 _EGLContext **ctx)
2778 {
2779
2780 *disp = _eglLockDisplay(dpy);
2781 if (!*disp || !(*disp)->Initialized || !(*disp)->Driver) {
2782 if (*disp)
2783 _eglUnlockDisplay(*disp);
2784 return MESA_GLINTEROP_INVALID_DISPLAY;
2785 }
2786
2787 *drv = (*disp)->Driver;
2788
2789 *ctx = _eglLookupContext(context, *disp);
2790 if (!*ctx ||
2791 ((*ctx)->ClientAPI != EGL_OPENGL_API &&
2792 (*ctx)->ClientAPI != EGL_OPENGL_ES_API)) {
2793 _eglUnlockDisplay(*disp);
2794 return MESA_GLINTEROP_INVALID_CONTEXT;
2795 }
2796
2797 return MESA_GLINTEROP_SUCCESS;
2798 }
2799
2800 PUBLIC int
2801 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
2802 struct mesa_glinterop_device_info *out)
2803 {
2804 _EGLDisplay *disp;
2805 _EGLDriver *drv;
2806 _EGLContext *ctx;
2807 int ret;
2808
2809 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2810 if (ret != MESA_GLINTEROP_SUCCESS)
2811 return ret;
2812
2813 if (drv->API.GLInteropQueryDeviceInfo)
2814 ret = drv->API.GLInteropQueryDeviceInfo(disp, ctx, out);
2815 else
2816 ret = MESA_GLINTEROP_UNSUPPORTED;
2817
2818 _eglUnlockDisplay(disp);
2819 return ret;
2820 }
2821
2822 PUBLIC int
2823 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
2824 struct mesa_glinterop_export_in *in,
2825 struct mesa_glinterop_export_out *out)
2826 {
2827 _EGLDisplay *disp;
2828 _EGLDriver *drv;
2829 _EGLContext *ctx;
2830 int ret;
2831
2832 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2833 if (ret != MESA_GLINTEROP_SUCCESS)
2834 return ret;
2835
2836 if (drv->API.GLInteropExportObject)
2837 ret = drv->API.GLInteropExportObject(disp, ctx, in, out);
2838 else
2839 ret = MESA_GLINTEROP_UNSUPPORTED;
2840
2841 _eglUnlockDisplay(disp);
2842 return ret;
2843 }