egl: Add GL_MESA_EGL_sync support
[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|MESA]_EGL_sync. */
1855 if (ctx && (ctx->Resource.Display != disp ||
1856 (ctx->ClientAPI != EGL_OPENGL_ES_API &&
1857 ctx->ClientAPI != EGL_OPENGL_API)))
1858 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1859
1860 switch (type) {
1861 case EGL_SYNC_FENCE_KHR:
1862 if (!disp->Extensions.KHR_fence_sync)
1863 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1864 break;
1865 case EGL_SYNC_REUSABLE_KHR:
1866 if (!disp->Extensions.KHR_reusable_sync)
1867 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1868 break;
1869 case EGL_SYNC_CL_EVENT_KHR:
1870 if (!disp->Extensions.KHR_cl_event2)
1871 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1872 break;
1873 case EGL_SYNC_NATIVE_FENCE_ANDROID:
1874 if (!disp->Extensions.ANDROID_native_fence_sync)
1875 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1876 break;
1877 default:
1878 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1879 }
1880
1881 sync = drv->API.CreateSyncKHR(drv, disp, type, attrib_list);
1882 ret = (sync) ? _eglLinkSync(sync) : EGL_NO_SYNC_KHR;
1883
1884 RETURN_EGL_EVAL(disp, ret);
1885 }
1886
1887
1888 static EGLSync EGLAPIENTRY
1889 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *int_list)
1890 {
1891 _EGLDisplay *disp = _eglLockDisplay(dpy);
1892 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1893
1894 EGLSync sync;
1895 EGLAttrib *attrib_list;
1896 EGLint err;
1897
1898 if (sizeof(int_list[0]) == sizeof(attrib_list[0])) {
1899 attrib_list = (EGLAttrib *) int_list;
1900 } else {
1901 err = _eglConvertIntsToAttribs(int_list, &attrib_list);
1902 if (err != EGL_SUCCESS)
1903 RETURN_EGL_ERROR(disp, err, EGL_NO_SYNC);
1904 }
1905
1906 sync = _eglCreateSync(disp, type, attrib_list, EGL_FALSE,
1907 EGL_BAD_ATTRIBUTE);
1908
1909 if (sizeof(int_list[0]) != sizeof(attrib_list[0]))
1910 free(attrib_list);
1911
1912 /* Don't double-unlock the display. _eglCreateSync already unlocked it. */
1913 return sync;
1914 }
1915
1916
1917 static EGLSync EGLAPIENTRY
1918 eglCreateSync64KHR(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1919 {
1920 _EGLDisplay *disp = _eglLockDisplay(dpy);
1921 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1922 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1923 EGL_BAD_ATTRIBUTE);
1924 }
1925
1926
1927 EGLSync EGLAPIENTRY
1928 eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1929 {
1930 _EGLDisplay *disp = _eglLockDisplay(dpy);
1931 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1932 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1933 EGL_BAD_PARAMETER);
1934 }
1935
1936
1937 static EGLBoolean
1938 _eglDestroySync(_EGLDisplay *disp, _EGLSync *s)
1939 {
1940 _EGLDriver *drv;
1941 EGLBoolean ret;
1942
1943 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1944 assert(disp->Extensions.KHR_reusable_sync ||
1945 disp->Extensions.KHR_fence_sync ||
1946 disp->Extensions.ANDROID_native_fence_sync);
1947
1948 _eglUnlinkSync(s);
1949 ret = drv->API.DestroySyncKHR(drv, disp, s);
1950
1951 RETURN_EGL_EVAL(disp, ret);
1952 }
1953
1954 EGLBoolean EGLAPIENTRY
1955 eglDestroySync(EGLDisplay dpy, EGLSync sync)
1956 {
1957 _EGLDisplay *disp = _eglLockDisplay(dpy);
1958 _EGLSync *s = _eglLookupSync(sync, disp);
1959 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1960 return _eglDestroySync(disp, s);
1961 }
1962
1963 static EGLBoolean EGLAPIENTRY
1964 eglDestroySyncKHR(EGLDisplay dpy, EGLSync sync)
1965 {
1966 _EGLDisplay *disp = _eglLockDisplay(dpy);
1967 _EGLSync *s = _eglLookupSync(sync, disp);
1968 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1969 return _eglDestroySync(disp, s);
1970 }
1971
1972
1973 static EGLint
1974 _eglClientWaitSyncCommon(_EGLDisplay *disp, EGLDisplay dpy,
1975 _EGLSync *s, EGLint flags, EGLTime timeout)
1976 {
1977 _EGLDriver *drv;
1978 EGLint ret;
1979
1980 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1981 assert(disp->Extensions.KHR_reusable_sync ||
1982 disp->Extensions.KHR_fence_sync ||
1983 disp->Extensions.ANDROID_native_fence_sync);
1984
1985 if (s->SyncStatus == EGL_SIGNALED_KHR)
1986 RETURN_EGL_EVAL(disp, EGL_CONDITION_SATISFIED_KHR);
1987
1988 /* if sync type is EGL_SYNC_REUSABLE_KHR, dpy should be
1989 * unlocked here to allow other threads also to be able to
1990 * go into waiting state.
1991 */
1992
1993 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1994 _eglUnlockDisplay(dpy);
1995
1996 ret = drv->API.ClientWaitSyncKHR(drv, disp, s, flags, timeout);
1997
1998 /*
1999 * 'disp' is already unlocked for reusable sync type,
2000 * so passing 'NULL' to bypass unlocking display.
2001 */
2002 if (s->Type == EGL_SYNC_REUSABLE_KHR)
2003 RETURN_EGL_EVAL(NULL, ret);
2004 else
2005 RETURN_EGL_EVAL(disp, ret);
2006 }
2007
2008 EGLint EGLAPIENTRY
2009 eglClientWaitSync(EGLDisplay dpy, EGLSync sync,
2010 EGLint flags, EGLTime timeout)
2011 {
2012 _EGLDisplay *disp = _eglLockDisplay(dpy);
2013 _EGLSync *s = _eglLookupSync(sync, disp);
2014 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2015 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2016 }
2017
2018 static EGLint EGLAPIENTRY
2019 eglClientWaitSyncKHR(EGLDisplay dpy, EGLSync sync,
2020 EGLint flags, EGLTime timeout)
2021 {
2022 _EGLDisplay *disp = _eglLockDisplay(dpy);
2023 _EGLSync *s = _eglLookupSync(sync, disp);
2024 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2025 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2026 }
2027
2028
2029 static EGLint
2030 _eglWaitSyncCommon(_EGLDisplay *disp, _EGLSync *s, EGLint flags)
2031 {
2032 _EGLContext *ctx = _eglGetCurrentContext();
2033 _EGLDriver *drv;
2034 EGLint ret;
2035
2036 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2037 assert(disp->Extensions.KHR_wait_sync);
2038
2039 /* return an error if the client API doesn't support GL_[OES|MESA]_EGL_sync. */
2040 if (ctx == EGL_NO_CONTEXT ||
2041 (ctx->ClientAPI != EGL_OPENGL_ES_API &&
2042 ctx->ClientAPI != EGL_OPENGL_API))
2043 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
2044
2045 /* the API doesn't allow any flags yet */
2046 if (flags != 0)
2047 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2048
2049 ret = drv->API.WaitSyncKHR(drv, disp, s);
2050
2051 RETURN_EGL_EVAL(disp, ret);
2052 }
2053
2054 static EGLint EGLAPIENTRY
2055 eglWaitSyncKHR(EGLDisplay dpy, EGLSync sync, EGLint flags)
2056 {
2057 _EGLDisplay *disp = _eglLockDisplay(dpy);
2058 _EGLSync *s = _eglLookupSync(sync, disp);
2059 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2060 return _eglWaitSyncCommon(disp, s, flags);
2061 }
2062
2063
2064 EGLBoolean EGLAPIENTRY
2065 eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags)
2066 {
2067 /* The KHR version returns EGLint, while the core version returns
2068 * EGLBoolean. In both cases, the return values can only be EGL_FALSE and
2069 * EGL_TRUE.
2070 */
2071 _EGLDisplay *disp = _eglLockDisplay(dpy);
2072 _EGLSync *s = _eglLookupSync(sync, disp);
2073 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2074 return _eglWaitSyncCommon(disp, s, flags);
2075 }
2076
2077
2078 static EGLBoolean EGLAPIENTRY
2079 eglSignalSyncKHR(EGLDisplay dpy, EGLSync sync, EGLenum mode)
2080 {
2081 _EGLDisplay *disp = _eglLockDisplay(dpy);
2082 _EGLSync *s = _eglLookupSync(sync, disp);
2083 _EGLDriver *drv;
2084 EGLBoolean ret;
2085
2086 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2087
2088 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2089 assert(disp->Extensions.KHR_reusable_sync);
2090 ret = drv->API.SignalSyncKHR(drv, disp, s, mode);
2091
2092 RETURN_EGL_EVAL(disp, ret);
2093 }
2094
2095
2096 static EGLBoolean
2097 _eglGetSyncAttribCommon(_EGLDisplay *disp, _EGLSync *s, EGLint attribute, EGLAttrib *value)
2098 {
2099 _EGLDriver *drv;
2100 EGLBoolean ret;
2101
2102 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2103 assert(disp->Extensions.KHR_reusable_sync ||
2104 disp->Extensions.KHR_fence_sync ||
2105 disp->Extensions.ANDROID_native_fence_sync);
2106
2107 ret = _eglGetSyncAttrib(drv, disp, s, attribute, value);
2108
2109 RETURN_EGL_EVAL(disp, ret);
2110 }
2111
2112 EGLBoolean EGLAPIENTRY
2113 eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value)
2114 {
2115 _EGLDisplay *disp = _eglLockDisplay(dpy);
2116 _EGLSync *s = _eglLookupSync(sync, disp);
2117 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2118 return _eglGetSyncAttribCommon(disp, s, attribute, value);
2119 }
2120
2121
2122 static EGLBoolean EGLAPIENTRY
2123 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLint *value)
2124 {
2125 _EGLDisplay *disp = _eglLockDisplay(dpy);
2126 _EGLSync *s = _eglLookupSync(sync, disp);
2127 EGLAttrib attrib;
2128 EGLBoolean result;
2129
2130 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2131
2132 if (!value)
2133 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2134
2135 attrib = *value;
2136 result = _eglGetSyncAttribCommon(disp, s, attribute, &attrib);
2137
2138 /* The EGL_KHR_fence_sync spec says this about eglGetSyncAttribKHR:
2139 *
2140 * If any error occurs, <*value> is not modified.
2141 */
2142 if (result == EGL_FALSE)
2143 return result;
2144
2145 *value = attrib;
2146 return result;
2147 }
2148
2149 static EGLint EGLAPIENTRY
2150 eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSync sync)
2151 {
2152 _EGLDisplay *disp = _eglLockDisplay(dpy);
2153 _EGLSync *s = _eglLookupSync(sync, disp);
2154 _EGLDriver *drv;
2155 EGLBoolean ret;
2156
2157 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2158
2159 /* the spec doesn't seem to specify what happens if the fence
2160 * type is not EGL_SYNC_NATIVE_FENCE_ANDROID, but this seems
2161 * sensible:
2162 */
2163 if (!(s && (s->Type == EGL_SYNC_NATIVE_FENCE_ANDROID)))
2164 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_NATIVE_FENCE_FD_ANDROID);
2165
2166 _EGL_CHECK_SYNC(disp, s, EGL_NO_NATIVE_FENCE_FD_ANDROID, drv);
2167 assert(disp->Extensions.ANDROID_native_fence_sync);
2168 ret = drv->API.DupNativeFenceFDANDROID(drv, disp, s);
2169
2170 RETURN_EGL_EVAL(disp, ret);
2171 }
2172
2173 static EGLBoolean EGLAPIENTRY
2174 eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface,
2175 EGLint numRects, const EGLint *rects)
2176 {
2177 _EGLContext *ctx = _eglGetCurrentContext();
2178 _EGLDisplay *disp = _eglLockDisplay(dpy);
2179 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2180 _EGLDriver *drv;
2181 EGLBoolean ret;
2182
2183 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2184
2185 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2186
2187 if (!disp->Extensions.NOK_swap_region)
2188 RETURN_EGL_EVAL(disp, EGL_FALSE);
2189
2190 /* surface must be bound to current context in EGL 1.4 */
2191 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
2192 surf != ctx->DrawSurface)
2193 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
2194
2195 ret = drv->API.SwapBuffersRegionNOK(drv, disp, surf, numRects, rects);
2196
2197 RETURN_EGL_EVAL(disp, ret);
2198 }
2199
2200
2201 static EGLImage EGLAPIENTRY
2202 eglCreateDRMImageMESA(EGLDisplay dpy, const EGLint *attr_list)
2203 {
2204 _EGLDisplay *disp = _eglLockDisplay(dpy);
2205 _EGLDriver *drv;
2206 _EGLImage *img;
2207 EGLImage ret;
2208
2209 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2210
2211 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
2212 if (!disp->Extensions.MESA_drm_image)
2213 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
2214
2215 img = drv->API.CreateDRMImageMESA(drv, disp, attr_list);
2216 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
2217
2218 RETURN_EGL_EVAL(disp, ret);
2219 }
2220
2221 static EGLBoolean EGLAPIENTRY
2222 eglExportDRMImageMESA(EGLDisplay dpy, EGLImage image,
2223 EGLint *name, EGLint *handle, EGLint *stride)
2224 {
2225 _EGLDisplay *disp = _eglLockDisplay(dpy);
2226 _EGLImage *img = _eglLookupImage(image, disp);
2227 _EGLDriver *drv;
2228 EGLBoolean ret;
2229
2230 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2231
2232 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2233 assert(disp->Extensions.MESA_drm_image);
2234
2235 if (!img)
2236 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2237
2238 ret = drv->API.ExportDRMImageMESA(drv, disp, img, name, handle, stride);
2239
2240 RETURN_EGL_EVAL(disp, ret);
2241 }
2242
2243
2244 struct wl_display;
2245
2246 static EGLBoolean EGLAPIENTRY
2247 eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2248 {
2249 _EGLDisplay *disp = _eglLockDisplay(dpy);
2250 _EGLDriver *drv;
2251 EGLBoolean ret;
2252
2253 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2254
2255 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2256 assert(disp->Extensions.WL_bind_wayland_display);
2257
2258 if (!display)
2259 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2260
2261 ret = drv->API.BindWaylandDisplayWL(drv, disp, display);
2262
2263 RETURN_EGL_EVAL(disp, ret);
2264 }
2265
2266 static EGLBoolean EGLAPIENTRY
2267 eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2268 {
2269 _EGLDisplay *disp = _eglLockDisplay(dpy);
2270 _EGLDriver *drv;
2271 EGLBoolean ret;
2272
2273 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2274
2275 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2276 assert(disp->Extensions.WL_bind_wayland_display);
2277
2278 if (!display)
2279 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2280
2281 ret = drv->API.UnbindWaylandDisplayWL(drv, disp, display);
2282
2283 RETURN_EGL_EVAL(disp, ret);
2284 }
2285
2286 static EGLBoolean EGLAPIENTRY
2287 eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer,
2288 EGLint attribute, EGLint *value)
2289 {
2290 _EGLDisplay *disp = _eglLockDisplay(dpy);
2291 _EGLDriver *drv;
2292 EGLBoolean ret;
2293
2294 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2295
2296 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2297 assert(disp->Extensions.WL_bind_wayland_display);
2298
2299 if (!buffer)
2300 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2301
2302 ret = drv->API.QueryWaylandBufferWL(drv, disp, buffer, attribute, value);
2303
2304 RETURN_EGL_EVAL(disp, ret);
2305 }
2306
2307
2308 static struct wl_buffer * EGLAPIENTRY
2309 eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImage image)
2310 {
2311 _EGLDisplay *disp = _eglLockDisplay(dpy);
2312 _EGLImage *img;
2313 _EGLDriver *drv;
2314 struct wl_buffer *ret;
2315
2316 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2317
2318 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2319 if (!disp->Extensions.WL_create_wayland_buffer_from_image)
2320 RETURN_EGL_EVAL(disp, NULL);
2321
2322 img = _eglLookupImage(image, disp);
2323
2324 if (!img)
2325 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, NULL);
2326
2327 ret = drv->API.CreateWaylandBufferFromImageWL(drv, disp, img);
2328
2329 RETURN_EGL_EVAL(disp, ret);
2330 }
2331
2332 static EGLBoolean EGLAPIENTRY
2333 eglPostSubBufferNV(EGLDisplay dpy, EGLSurface surface,
2334 EGLint x, EGLint y, EGLint width, EGLint height)
2335 {
2336 _EGLDisplay *disp = _eglLockDisplay(dpy);
2337 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2338 _EGLDriver *drv;
2339 EGLBoolean ret;
2340
2341 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2342
2343 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2344
2345 if (!disp->Extensions.NV_post_sub_buffer)
2346 RETURN_EGL_EVAL(disp, EGL_FALSE);
2347
2348 ret = drv->API.PostSubBufferNV(drv, disp, surf, x, y, width, height);
2349
2350 RETURN_EGL_EVAL(disp, ret);
2351 }
2352
2353 static EGLBoolean EGLAPIENTRY
2354 eglGetSyncValuesCHROMIUM(EGLDisplay dpy, EGLSurface surface,
2355 EGLuint64KHR *ust, EGLuint64KHR *msc,
2356 EGLuint64KHR *sbc)
2357 {
2358 _EGLDisplay *disp = _eglLockDisplay(dpy);
2359 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2360 _EGLDriver *drv;
2361 EGLBoolean ret;
2362
2363 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2364
2365 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2366 if (!disp->Extensions.CHROMIUM_sync_control)
2367 RETURN_EGL_EVAL(disp, EGL_FALSE);
2368
2369 if (!ust || !msc || !sbc)
2370 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2371
2372 ret = drv->API.GetSyncValuesCHROMIUM(disp, surf, ust, msc, sbc);
2373
2374 RETURN_EGL_EVAL(disp, ret);
2375 }
2376
2377 static EGLBoolean EGLAPIENTRY
2378 eglExportDMABUFImageQueryMESA(EGLDisplay dpy, EGLImage image,
2379 EGLint *fourcc, EGLint *nplanes,
2380 EGLuint64KHR *modifiers)
2381 {
2382 _EGLDisplay *disp = _eglLockDisplay(dpy);
2383 _EGLImage *img = _eglLookupImage(image, disp);
2384 _EGLDriver *drv;
2385 EGLBoolean ret;
2386
2387 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2388
2389 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2390 assert(disp->Extensions.MESA_image_dma_buf_export);
2391
2392 if (!img)
2393 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2394
2395 ret = drv->API.ExportDMABUFImageQueryMESA(drv, disp, img, fourcc, nplanes,
2396 modifiers);
2397
2398 RETURN_EGL_EVAL(disp, ret);
2399 }
2400
2401 static EGLBoolean EGLAPIENTRY
2402 eglExportDMABUFImageMESA(EGLDisplay dpy, EGLImage image,
2403 int *fds, EGLint *strides, EGLint *offsets)
2404 {
2405 _EGLDisplay *disp = _eglLockDisplay(dpy);
2406 _EGLImage *img = _eglLookupImage(image, disp);
2407 _EGLDriver *drv;
2408 EGLBoolean ret;
2409
2410 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2411
2412 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2413 assert(disp->Extensions.MESA_image_dma_buf_export);
2414
2415 if (!img)
2416 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2417
2418 ret = drv->API.ExportDMABUFImageMESA(drv, disp, img, fds, strides, offsets);
2419
2420 RETURN_EGL_EVAL(disp, ret);
2421 }
2422
2423 static EGLint EGLAPIENTRY
2424 eglLabelObjectKHR(EGLDisplay dpy, EGLenum objectType, EGLObjectKHR object,
2425 EGLLabelKHR label)
2426 {
2427 _EGLDisplay *disp = NULL;
2428 _EGLResourceType type;
2429
2430 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2431
2432 if (objectType == EGL_OBJECT_THREAD_KHR) {
2433 _EGLThreadInfo *t = _eglGetCurrentThread();
2434
2435 if (!_eglIsCurrentThreadDummy()) {
2436 t->Label = label;
2437 return EGL_SUCCESS;
2438 }
2439
2440 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_BAD_ALLOC);
2441 }
2442
2443 disp = _eglLockDisplay(dpy);
2444 if (disp == NULL)
2445 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_BAD_DISPLAY);
2446
2447 if (objectType == EGL_OBJECT_DISPLAY_KHR) {
2448 if (dpy != (EGLDisplay) object)
2449 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2450
2451 disp->Label = label;
2452 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2453 }
2454
2455 switch (objectType) {
2456 case EGL_OBJECT_CONTEXT_KHR:
2457 type = _EGL_RESOURCE_CONTEXT;
2458 break;
2459 case EGL_OBJECT_SURFACE_KHR:
2460 type = _EGL_RESOURCE_SURFACE;
2461 break;
2462 case EGL_OBJECT_IMAGE_KHR:
2463 type = _EGL_RESOURCE_IMAGE;
2464 break;
2465 case EGL_OBJECT_SYNC_KHR:
2466 type = _EGL_RESOURCE_SYNC;
2467 break;
2468 case EGL_OBJECT_STREAM_KHR:
2469 default:
2470 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2471 }
2472
2473 if (_eglCheckResource(object, type, disp)) {
2474 _EGLResource *res = (_EGLResource *) object;
2475
2476 res->Label = label;
2477 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2478 }
2479
2480 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2481 }
2482
2483 static EGLint EGLAPIENTRY
2484 eglDebugMessageControlKHR(EGLDEBUGPROCKHR callback,
2485 const EGLAttrib *attrib_list)
2486 {
2487 unsigned int newEnabled;
2488
2489 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2490
2491 mtx_lock(_eglGlobal.Mutex);
2492
2493 newEnabled = _eglGlobal.debugTypesEnabled;
2494 if (attrib_list != NULL) {
2495 int i;
2496
2497 for (i = 0; attrib_list[i] != EGL_NONE; i += 2) {
2498 switch (attrib_list[i]) {
2499 case EGL_DEBUG_MSG_CRITICAL_KHR:
2500 case EGL_DEBUG_MSG_ERROR_KHR:
2501 case EGL_DEBUG_MSG_WARN_KHR:
2502 case EGL_DEBUG_MSG_INFO_KHR:
2503 if (attrib_list[i + 1])
2504 newEnabled |= DebugBitFromType(attrib_list[i]);
2505 else
2506 newEnabled &= ~DebugBitFromType(attrib_list[i]);
2507 break;
2508 default:
2509 // On error, set the last error code, call the current
2510 // debug callback, and return the error code.
2511 mtx_unlock(_eglGlobal.Mutex);
2512 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2513 "Invalid attribute 0x%04lx", (unsigned long) attrib_list[i]);
2514 return EGL_BAD_ATTRIBUTE;
2515 }
2516 }
2517 }
2518
2519 if (callback != NULL) {
2520 _eglGlobal.debugCallback = callback;
2521 _eglGlobal.debugTypesEnabled = newEnabled;
2522 } else {
2523 _eglGlobal.debugCallback = NULL;
2524 _eglGlobal.debugTypesEnabled = _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR;
2525 }
2526
2527 mtx_unlock(_eglGlobal.Mutex);
2528 return EGL_SUCCESS;
2529 }
2530
2531 static EGLBoolean EGLAPIENTRY
2532 eglQueryDebugKHR(EGLint attribute, EGLAttrib *value)
2533 {
2534 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2535
2536 mtx_lock(_eglGlobal.Mutex);
2537
2538 switch (attribute) {
2539 case EGL_DEBUG_MSG_CRITICAL_KHR:
2540 case EGL_DEBUG_MSG_ERROR_KHR:
2541 case EGL_DEBUG_MSG_WARN_KHR:
2542 case EGL_DEBUG_MSG_INFO_KHR:
2543 if (_eglGlobal.debugTypesEnabled & DebugBitFromType(attribute))
2544 *value = EGL_TRUE;
2545 else
2546 *value = EGL_FALSE;
2547 break;
2548 case EGL_DEBUG_CALLBACK_KHR:
2549 *value = (EGLAttrib) _eglGlobal.debugCallback;
2550 break;
2551 default:
2552 mtx_unlock(_eglGlobal.Mutex);
2553 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2554 "Invalid attribute 0x%04lx", (unsigned long) attribute);
2555 return EGL_FALSE;
2556 }
2557
2558 mtx_unlock(_eglGlobal.Mutex);
2559 return EGL_TRUE;
2560 }
2561
2562 static int
2563 _eglFunctionCompare(const void *key, const void *elem)
2564 {
2565 const char *procname = key;
2566 const struct _egl_entrypoint *entrypoint = elem;
2567 return strcmp(procname, entrypoint->name);
2568 }
2569
2570 static EGLBoolean EGLAPIENTRY
2571 eglQueryDmaBufFormatsEXT(EGLDisplay dpy, EGLint max_formats,
2572 EGLint *formats, EGLint *num_formats)
2573 {
2574 _EGLDisplay *disp = _eglLockDisplay(dpy);
2575 _EGLDriver *drv;
2576 EGLBoolean ret;
2577
2578 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2579
2580 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2581
2582 ret = drv->API.QueryDmaBufFormatsEXT(drv, disp, max_formats, formats,
2583 num_formats);
2584
2585 RETURN_EGL_EVAL(disp, ret);
2586 }
2587
2588 static EGLBoolean EGLAPIENTRY
2589 eglQueryDmaBufModifiersEXT(EGLDisplay dpy, EGLint format, EGLint max_modifiers,
2590 EGLuint64KHR *modifiers, EGLBoolean *external_only,
2591 EGLint *num_modifiers)
2592 {
2593 _EGLDisplay *disp = _eglLockDisplay(dpy);
2594 _EGLDriver *drv;
2595 EGLBoolean ret;
2596
2597 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2598
2599 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2600
2601 ret = drv->API.QueryDmaBufModifiersEXT(drv, disp, format, max_modifiers,
2602 modifiers, external_only,
2603 num_modifiers);
2604
2605 RETURN_EGL_EVAL(disp, ret);
2606 }
2607
2608 static void EGLAPIENTRY
2609 eglSetBlobCacheFuncsANDROID(EGLDisplay *dpy, EGLSetBlobFuncANDROID set,
2610 EGLGetBlobFuncANDROID get)
2611 {
2612 /* This function does not return anything so we cannot
2613 * utilize the helper macros _EGL_FUNC_START or _EGL_CHECK_DISPLAY.
2614 */
2615 _EGLDisplay *disp = _eglLockDisplay(dpy);
2616 if (!_eglSetFuncName(__func__, disp, EGL_OBJECT_DISPLAY_KHR, NULL)) {
2617 if (disp)
2618 _eglUnlockDisplay(disp);
2619 return;
2620 }
2621
2622 _EGLDriver *drv = _eglCheckDisplay(disp, __func__);
2623 if (!drv) {
2624 if (disp)
2625 _eglUnlockDisplay(disp);
2626 return;
2627 }
2628
2629 if (!set || !get) {
2630 _eglError(EGL_BAD_PARAMETER,
2631 "eglSetBlobCacheFuncsANDROID: NULL handler given");
2632 _eglUnlockDisplay(disp);
2633 return;
2634 }
2635
2636 if (disp->BlobCacheSet) {
2637 _eglError(EGL_BAD_PARAMETER,
2638 "eglSetBlobCacheFuncsANDROID: functions already set");
2639 _eglUnlockDisplay(disp);
2640 return;
2641 }
2642
2643 disp->BlobCacheSet = set;
2644 disp->BlobCacheGet = get;
2645
2646 drv->API.SetBlobCacheFuncsANDROID(drv, disp, set, get);
2647
2648 _eglUnlockDisplay(disp);
2649 }
2650
2651 static EGLBoolean EGLAPIENTRY
2652 eglQueryDeviceAttribEXT(EGLDeviceEXT device,
2653 EGLint attribute,
2654 EGLAttrib *value)
2655 {
2656 _EGLDevice *dev = _eglLookupDevice(device);
2657 EGLBoolean ret;
2658
2659 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2660 if (!dev)
2661 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, EGL_FALSE);
2662
2663 ret = _eglQueryDeviceAttribEXT(dev, attribute, value);
2664 RETURN_EGL_EVAL(NULL, ret);
2665 }
2666
2667 static const char * EGLAPIENTRY
2668 eglQueryDeviceStringEXT(EGLDeviceEXT device,
2669 EGLint name)
2670 {
2671 _EGLDevice *dev = _eglLookupDevice(device);
2672
2673 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2674 if (!dev)
2675 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, NULL);
2676
2677 RETURN_EGL_EVAL(NULL, _eglQueryDeviceStringEXT(dev, name));
2678 }
2679
2680 static EGLBoolean EGLAPIENTRY
2681 eglQueryDevicesEXT(EGLint max_devices,
2682 EGLDeviceEXT *devices,
2683 EGLint *num_devices)
2684 {
2685 EGLBoolean ret;
2686
2687 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2688 ret = _eglQueryDevicesEXT(max_devices, (_EGLDevice **) devices,
2689 num_devices);
2690 RETURN_EGL_EVAL(NULL, ret);
2691 }
2692
2693 static EGLBoolean EGLAPIENTRY
2694 eglQueryDisplayAttribEXT(EGLDisplay dpy,
2695 EGLint attribute,
2696 EGLAttrib *value)
2697 {
2698 _EGLDisplay *disp = _eglLockDisplay(dpy);
2699 _EGLDriver *drv;
2700
2701 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2702 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2703
2704 switch (attribute) {
2705 case EGL_DEVICE_EXT:
2706 *value = (EGLAttrib) disp->Device;
2707 break;
2708 default:
2709 RETURN_EGL_ERROR(disp, EGL_BAD_ATTRIBUTE, EGL_FALSE);
2710 }
2711 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
2712 }
2713
2714 static char * EGLAPIENTRY
2715 eglGetDisplayDriverConfig(EGLDisplay dpy)
2716 {
2717 _EGLDisplay *disp = _eglLockDisplay(dpy);
2718 _EGLDriver *drv;
2719 char *ret;
2720
2721 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2722 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2723
2724 assert(disp->Extensions.MESA_query_driver);
2725
2726 ret = drv->API.QueryDriverConfig(disp);
2727 RETURN_EGL_EVAL(disp, ret);
2728 }
2729
2730 static const char * EGLAPIENTRY
2731 eglGetDisplayDriverName(EGLDisplay dpy)
2732 {
2733 _EGLDisplay *disp = _eglLockDisplay(dpy);
2734 _EGLDriver *drv;
2735 const char *ret;
2736
2737 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2738 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2739
2740 assert(disp->Extensions.MESA_query_driver);
2741
2742 ret = drv->API.QueryDriverName(disp);
2743 RETURN_EGL_EVAL(disp, ret);
2744 }
2745
2746 __eglMustCastToProperFunctionPointerType EGLAPIENTRY
2747 eglGetProcAddress(const char *procname)
2748 {
2749 static const struct _egl_entrypoint egl_functions[] = {
2750 #define EGL_ENTRYPOINT(f) { .name = #f, .function = (_EGLProc) f },
2751 #include "eglentrypoint.h"
2752 #undef EGL_ENTRYPOINT
2753 };
2754 _EGLProc ret = NULL;
2755
2756 if (!procname)
2757 RETURN_EGL_SUCCESS(NULL, NULL);
2758
2759 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2760
2761 if (strncmp(procname, "egl", 3) == 0) {
2762 const struct _egl_entrypoint *entrypoint =
2763 bsearch(procname,
2764 egl_functions, ARRAY_SIZE(egl_functions),
2765 sizeof(egl_functions[0]),
2766 _eglFunctionCompare);
2767 if (entrypoint)
2768 ret = entrypoint->function;
2769 }
2770
2771 if (!ret)
2772 ret = _eglGetDriverProc(procname);
2773
2774 RETURN_EGL_SUCCESS(NULL, ret);
2775 }
2776
2777 static int
2778 _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context,
2779 _EGLDisplay **disp, _EGLDriver **drv,
2780 _EGLContext **ctx)
2781 {
2782
2783 *disp = _eglLockDisplay(dpy);
2784 if (!*disp || !(*disp)->Initialized || !(*disp)->Driver) {
2785 if (*disp)
2786 _eglUnlockDisplay(*disp);
2787 return MESA_GLINTEROP_INVALID_DISPLAY;
2788 }
2789
2790 *drv = (*disp)->Driver;
2791
2792 *ctx = _eglLookupContext(context, *disp);
2793 if (!*ctx ||
2794 ((*ctx)->ClientAPI != EGL_OPENGL_API &&
2795 (*ctx)->ClientAPI != EGL_OPENGL_ES_API)) {
2796 _eglUnlockDisplay(*disp);
2797 return MESA_GLINTEROP_INVALID_CONTEXT;
2798 }
2799
2800 return MESA_GLINTEROP_SUCCESS;
2801 }
2802
2803 PUBLIC int
2804 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
2805 struct mesa_glinterop_device_info *out)
2806 {
2807 _EGLDisplay *disp;
2808 _EGLDriver *drv;
2809 _EGLContext *ctx;
2810 int ret;
2811
2812 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2813 if (ret != MESA_GLINTEROP_SUCCESS)
2814 return ret;
2815
2816 if (drv->API.GLInteropQueryDeviceInfo)
2817 ret = drv->API.GLInteropQueryDeviceInfo(disp, ctx, out);
2818 else
2819 ret = MESA_GLINTEROP_UNSUPPORTED;
2820
2821 _eglUnlockDisplay(disp);
2822 return ret;
2823 }
2824
2825 PUBLIC int
2826 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
2827 struct mesa_glinterop_export_in *in,
2828 struct mesa_glinterop_export_out *out)
2829 {
2830 _EGLDisplay *disp;
2831 _EGLDriver *drv;
2832 _EGLContext *ctx;
2833 int ret;
2834
2835 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2836 if (ret != MESA_GLINTEROP_SUCCESS)
2837 return ret;
2838
2839 if (drv->API.GLInteropExportObject)
2840 ret = drv->API.GLInteropExportObject(disp, ctx, in, out);
2841 else
2842 ret = MESA_GLINTEROP_UNSUPPORTED;
2843
2844 _eglUnlockDisplay(disp);
2845 return ret;
2846 }