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