4fa85092024e78ec94806808284dd5b2e76d5ffc
[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(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(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(disp, surf, interval);
1291 else
1292 ret = _eglSwapInterval(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(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(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(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(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 EGLBoolean ret;
1493
1494 if (!ctx)
1495 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1496
1497 disp = ctx->Resource.Display;
1498 mtx_lock(&disp->Mutex);
1499
1500 /* let bad current context imply bad current surface */
1501 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1502 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1503 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1504
1505 /* a valid current context implies an initialized current display */
1506 assert(disp->Initialized);
1507 ret = disp->Driver->WaitClient(disp, ctx);
1508
1509 RETURN_EGL_EVAL(disp, ret);
1510 }
1511
1512 EGLBoolean EGLAPIENTRY
1513 eglWaitClient(void)
1514 {
1515 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1516 return _eglWaitClientCommon();
1517 }
1518
1519 EGLBoolean EGLAPIENTRY
1520 eglWaitGL(void)
1521 {
1522 /* Since we only support OpenGL and GLES, eglWaitGL is equivalent to eglWaitClient. */
1523 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1524 return _eglWaitClientCommon();
1525 }
1526
1527
1528 EGLBoolean EGLAPIENTRY
1529 eglWaitNative(EGLint engine)
1530 {
1531 _EGLContext *ctx = _eglGetCurrentContext();
1532 _EGLDisplay *disp;
1533 EGLBoolean ret;
1534
1535 if (!ctx)
1536 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1537
1538 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1539
1540 disp = ctx->Resource.Display;
1541 mtx_lock(&disp->Mutex);
1542
1543 /* let bad current context imply bad current surface */
1544 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1545 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1546 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1547
1548 /* a valid current context implies an initialized current display */
1549 assert(disp->Initialized);
1550 ret = disp->Driver->WaitNative(engine);
1551
1552 RETURN_EGL_EVAL(disp, ret);
1553 }
1554
1555
1556 EGLDisplay EGLAPIENTRY
1557 eglGetCurrentDisplay(void)
1558 {
1559 _EGLContext *ctx = _eglGetCurrentContext();
1560 EGLDisplay ret;
1561
1562 ret = (ctx) ? _eglGetDisplayHandle(ctx->Resource.Display) : EGL_NO_DISPLAY;
1563
1564 RETURN_EGL_SUCCESS(NULL, ret);
1565 }
1566
1567
1568 EGLContext EGLAPIENTRY
1569 eglGetCurrentContext(void)
1570 {
1571 _EGLContext *ctx = _eglGetCurrentContext();
1572 EGLContext ret;
1573
1574 ret = _eglGetContextHandle(ctx);
1575
1576 RETURN_EGL_SUCCESS(NULL, ret);
1577 }
1578
1579
1580 EGLSurface EGLAPIENTRY
1581 eglGetCurrentSurface(EGLint readdraw)
1582 {
1583 _EGLContext *ctx = _eglGetCurrentContext();
1584 EGLint err = EGL_SUCCESS;
1585 _EGLSurface *surf;
1586 EGLSurface ret;
1587
1588 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_NO_SURFACE);
1589
1590 if (!ctx)
1591 RETURN_EGL_SUCCESS(NULL, EGL_NO_SURFACE);
1592
1593 switch (readdraw) {
1594 case EGL_DRAW:
1595 surf = ctx->DrawSurface;
1596 break;
1597 case EGL_READ:
1598 surf = ctx->ReadSurface;
1599 break;
1600 default:
1601 surf = NULL;
1602 err = EGL_BAD_PARAMETER;
1603 break;
1604 }
1605
1606 ret = _eglGetSurfaceHandle(surf);
1607
1608 RETURN_EGL_ERROR(NULL, err, ret);
1609 }
1610
1611
1612 EGLint EGLAPIENTRY
1613 eglGetError(void)
1614 {
1615 _EGLThreadInfo *t = _eglGetCurrentThread();
1616 EGLint e = t->LastError;
1617 if (!_eglIsCurrentThreadDummy())
1618 t->LastError = EGL_SUCCESS;
1619 return e;
1620 }
1621
1622
1623 /**
1624 ** EGL 1.2
1625 **/
1626
1627 /**
1628 * Specify the client API to use for subsequent calls including:
1629 * eglCreateContext()
1630 * eglGetCurrentContext()
1631 * eglGetCurrentDisplay()
1632 * eglGetCurrentSurface()
1633 * eglMakeCurrent(when the ctx parameter is EGL NO CONTEXT)
1634 * eglWaitClient()
1635 * eglWaitNative()
1636 * See section 3.7 "Rendering Context" in the EGL specification for details.
1637 */
1638 EGLBoolean EGLAPIENTRY
1639 eglBindAPI(EGLenum api)
1640 {
1641 _EGLThreadInfo *t;
1642
1643 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1644
1645 t = _eglGetCurrentThread();
1646 if (_eglIsCurrentThreadDummy())
1647 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_FALSE);
1648
1649 if (!_eglIsApiValid(api))
1650 RETURN_EGL_ERROR(NULL, EGL_BAD_PARAMETER, EGL_FALSE);
1651
1652 t->CurrentAPI = api;
1653
1654 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1655 }
1656
1657
1658 /**
1659 * Return the last value set with eglBindAPI().
1660 */
1661 EGLenum EGLAPIENTRY
1662 eglQueryAPI(void)
1663 {
1664 _EGLThreadInfo *t = _eglGetCurrentThread();
1665 EGLenum ret;
1666
1667 /* returns one of EGL_OPENGL_API, EGL_OPENGL_ES_API or EGL_OPENVG_API */
1668 ret = t->CurrentAPI;
1669
1670 RETURN_EGL_SUCCESS(NULL, ret);
1671 }
1672
1673
1674 EGLSurface EGLAPIENTRY
1675 eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype,
1676 EGLClientBuffer buffer, EGLConfig config,
1677 const EGLint *attrib_list)
1678 {
1679 _EGLDisplay *disp = _eglLockDisplay(dpy);
1680 _EGLConfig *conf = _eglLookupConfig(config, disp);
1681 const _EGLDriver *drv;
1682
1683 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1684
1685 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
1686
1687 /* OpenVG is not supported */
1688 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_SURFACE);
1689 }
1690
1691
1692 EGLBoolean EGLAPIENTRY
1693 eglReleaseThread(void)
1694 {
1695 /* unbind current contexts */
1696 if (!_eglIsCurrentThreadDummy()) {
1697 _EGLThreadInfo *t = _eglGetCurrentThread();
1698 _EGLContext *ctx = t->CurrentContext;
1699
1700 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1701
1702 if (ctx) {
1703 _EGLDisplay *disp = ctx->Resource.Display;
1704
1705 mtx_lock(&disp->Mutex);
1706 (void) disp->Driver->MakeCurrent(disp, NULL, NULL, NULL);
1707 mtx_unlock(&disp->Mutex);
1708 }
1709 }
1710
1711 _eglDestroyCurrentThread();
1712
1713 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1714 }
1715
1716
1717 static EGLImage
1718 _eglCreateImageCommon(_EGLDisplay *disp, EGLContext ctx, EGLenum target,
1719 EGLClientBuffer buffer, const EGLint *attr_list)
1720 {
1721 _EGLContext *context = _eglLookupContext(ctx, disp);
1722 const _EGLDriver *drv;
1723 _EGLImage *img;
1724 EGLImage ret;
1725
1726 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
1727 if (!disp->Extensions.KHR_image_base)
1728 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
1729 if (!context && ctx != EGL_NO_CONTEXT)
1730 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_NO_IMAGE_KHR);
1731 /* "If <target> is EGL_LINUX_DMA_BUF_EXT, <dpy> must be a valid display,
1732 * <ctx> must be EGL_NO_CONTEXT..."
1733 */
1734 if (ctx != EGL_NO_CONTEXT && target == EGL_LINUX_DMA_BUF_EXT)
1735 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1736
1737 img = drv->CreateImageKHR(disp, context, target, buffer, attr_list);
1738 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
1739
1740 RETURN_EGL_EVAL(disp, ret);
1741 }
1742
1743 static EGLImage EGLAPIENTRY
1744 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1745 EGLClientBuffer buffer, const EGLint *attr_list)
1746 {
1747 _EGLDisplay *disp = _eglLockDisplay(dpy);
1748 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1749 return _eglCreateImageCommon(disp, ctx, target, buffer, attr_list);
1750 }
1751
1752
1753 EGLImage EGLAPIENTRY
1754 eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1755 EGLClientBuffer buffer, const EGLAttrib *attr_list)
1756 {
1757 _EGLDisplay *disp = _eglLockDisplay(dpy);
1758 EGLImage image;
1759 EGLint *int_attribs;
1760
1761 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1762
1763 int_attribs = _eglConvertAttribsToInt(attr_list);
1764 if (attr_list && !int_attribs)
1765 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_IMAGE);
1766
1767 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs);
1768 free(int_attribs);
1769 return image;
1770 }
1771
1772
1773 static EGLBoolean
1774 _eglDestroyImageCommon(_EGLDisplay *disp, _EGLImage *img)
1775 {
1776 const _EGLDriver *drv;
1777 EGLBoolean ret;
1778
1779 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
1780 if (!disp->Extensions.KHR_image_base)
1781 RETURN_EGL_EVAL(disp, EGL_FALSE);
1782 if (!img)
1783 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1784
1785 _eglUnlinkImage(img);
1786 ret = drv->DestroyImageKHR(disp, img);
1787
1788 RETURN_EGL_EVAL(disp, ret);
1789 }
1790
1791 EGLBoolean EGLAPIENTRY
1792 eglDestroyImage(EGLDisplay dpy, EGLImage image)
1793 {
1794 _EGLDisplay *disp = _eglLockDisplay(dpy);
1795 _EGLImage *img = _eglLookupImage(image, disp);
1796 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1797 return _eglDestroyImageCommon(disp, img);
1798 }
1799
1800 static EGLBoolean EGLAPIENTRY
1801 eglDestroyImageKHR(EGLDisplay dpy, EGLImage image)
1802 {
1803 _EGLDisplay *disp = _eglLockDisplay(dpy);
1804 _EGLImage *img = _eglLookupImage(image, disp);
1805 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1806 return _eglDestroyImageCommon(disp, img);
1807 }
1808
1809
1810 static EGLSync
1811 _eglCreateSync(_EGLDisplay *disp, EGLenum type, const EGLAttrib *attrib_list,
1812 EGLBoolean orig_is_EGLAttrib,
1813 EGLenum invalid_type_error)
1814 {
1815 _EGLContext *ctx = _eglGetCurrentContext();
1816 const _EGLDriver *drv;
1817 _EGLSync *sync;
1818 EGLSync ret;
1819
1820 _EGL_CHECK_DISPLAY(disp, EGL_NO_SYNC_KHR, drv);
1821
1822 if (!disp->Extensions.KHR_cl_event2 && orig_is_EGLAttrib) {
1823 /* There exist two EGLAttrib variants of eglCreateSync*:
1824 * eglCreateSync64KHR which requires EGL_KHR_cl_event2, and eglCreateSync
1825 * which requires EGL 1.5. Here we use the presence of EGL_KHR_cl_event2
1826 * support as a proxy for EGL 1.5 support, even though that's not
1827 * entirely correct (though _eglComputeVersion does the same).
1828 *
1829 * The EGL spec provides no guidance on how to handle unsupported
1830 * functions. EGL_BAD_MATCH seems reasonable.
1831 */
1832 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1833 }
1834
1835 /* If type is EGL_SYNC_FENCE and no context is current for the bound API
1836 * (i.e., eglGetCurrentContext returns EGL_NO_CONTEXT ), an EGL_BAD_MATCH
1837 * error is generated.
1838 */
1839 if (!ctx &&
1840 (type == EGL_SYNC_FENCE_KHR || type == EGL_SYNC_NATIVE_FENCE_ANDROID))
1841 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1842
1843 /* return an error if the client API doesn't support GL_[OES|MESA]_EGL_sync. */
1844 if (ctx && (ctx->Resource.Display != disp ||
1845 (ctx->ClientAPI != EGL_OPENGL_ES_API &&
1846 ctx->ClientAPI != EGL_OPENGL_API)))
1847 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1848
1849 switch (type) {
1850 case EGL_SYNC_FENCE_KHR:
1851 if (!disp->Extensions.KHR_fence_sync)
1852 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1853 break;
1854 case EGL_SYNC_REUSABLE_KHR:
1855 if (!disp->Extensions.KHR_reusable_sync)
1856 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1857 break;
1858 case EGL_SYNC_CL_EVENT_KHR:
1859 if (!disp->Extensions.KHR_cl_event2)
1860 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1861 break;
1862 case EGL_SYNC_NATIVE_FENCE_ANDROID:
1863 if (!disp->Extensions.ANDROID_native_fence_sync)
1864 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1865 break;
1866 default:
1867 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1868 }
1869
1870 sync = drv->CreateSyncKHR(disp, type, attrib_list);
1871 ret = (sync) ? _eglLinkSync(sync) : EGL_NO_SYNC_KHR;
1872
1873 RETURN_EGL_EVAL(disp, ret);
1874 }
1875
1876
1877 static EGLSync EGLAPIENTRY
1878 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *int_list)
1879 {
1880 _EGLDisplay *disp = _eglLockDisplay(dpy);
1881 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1882
1883 EGLSync sync;
1884 EGLAttrib *attrib_list;
1885 EGLint err;
1886
1887 if (sizeof(int_list[0]) == sizeof(attrib_list[0])) {
1888 attrib_list = (EGLAttrib *) int_list;
1889 } else {
1890 err = _eglConvertIntsToAttribs(int_list, &attrib_list);
1891 if (err != EGL_SUCCESS)
1892 RETURN_EGL_ERROR(disp, err, EGL_NO_SYNC);
1893 }
1894
1895 sync = _eglCreateSync(disp, type, attrib_list, EGL_FALSE,
1896 EGL_BAD_ATTRIBUTE);
1897
1898 if (sizeof(int_list[0]) != sizeof(attrib_list[0]))
1899 free(attrib_list);
1900
1901 /* Don't double-unlock the display. _eglCreateSync already unlocked it. */
1902 return sync;
1903 }
1904
1905
1906 static EGLSync EGLAPIENTRY
1907 eglCreateSync64KHR(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1908 {
1909 _EGLDisplay *disp = _eglLockDisplay(dpy);
1910 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1911 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1912 EGL_BAD_ATTRIBUTE);
1913 }
1914
1915
1916 EGLSync EGLAPIENTRY
1917 eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1918 {
1919 _EGLDisplay *disp = _eglLockDisplay(dpy);
1920 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1921 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1922 EGL_BAD_PARAMETER);
1923 }
1924
1925
1926 static EGLBoolean
1927 _eglDestroySync(_EGLDisplay *disp, _EGLSync *s)
1928 {
1929 const _EGLDriver *drv;
1930 EGLBoolean ret;
1931
1932 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1933 assert(disp->Extensions.KHR_reusable_sync ||
1934 disp->Extensions.KHR_fence_sync ||
1935 disp->Extensions.ANDROID_native_fence_sync);
1936
1937 _eglUnlinkSync(s);
1938 ret = drv->DestroySyncKHR(disp, s);
1939
1940 RETURN_EGL_EVAL(disp, ret);
1941 }
1942
1943 EGLBoolean EGLAPIENTRY
1944 eglDestroySync(EGLDisplay dpy, EGLSync sync)
1945 {
1946 _EGLDisplay *disp = _eglLockDisplay(dpy);
1947 _EGLSync *s = _eglLookupSync(sync, disp);
1948 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1949 return _eglDestroySync(disp, s);
1950 }
1951
1952 static EGLBoolean EGLAPIENTRY
1953 eglDestroySyncKHR(EGLDisplay dpy, EGLSync sync)
1954 {
1955 _EGLDisplay *disp = _eglLockDisplay(dpy);
1956 _EGLSync *s = _eglLookupSync(sync, disp);
1957 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1958 return _eglDestroySync(disp, s);
1959 }
1960
1961
1962 static EGLint
1963 _eglClientWaitSyncCommon(_EGLDisplay *disp, EGLDisplay dpy,
1964 _EGLSync *s, EGLint flags, EGLTime timeout)
1965 {
1966 const _EGLDriver *drv;
1967 EGLint ret;
1968
1969 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1970 assert(disp->Extensions.KHR_reusable_sync ||
1971 disp->Extensions.KHR_fence_sync ||
1972 disp->Extensions.ANDROID_native_fence_sync);
1973
1974 if (s->SyncStatus == EGL_SIGNALED_KHR)
1975 RETURN_EGL_EVAL(disp, EGL_CONDITION_SATISFIED_KHR);
1976
1977 /* if sync type is EGL_SYNC_REUSABLE_KHR, dpy should be
1978 * unlocked here to allow other threads also to be able to
1979 * go into waiting state.
1980 */
1981
1982 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1983 _eglUnlockDisplay(dpy);
1984
1985 ret = drv->ClientWaitSyncKHR(disp, s, flags, timeout);
1986
1987 /*
1988 * 'disp' is already unlocked for reusable sync type,
1989 * so passing 'NULL' to bypass unlocking display.
1990 */
1991 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1992 RETURN_EGL_EVAL(NULL, ret);
1993 else
1994 RETURN_EGL_EVAL(disp, ret);
1995 }
1996
1997 EGLint EGLAPIENTRY
1998 eglClientWaitSync(EGLDisplay dpy, EGLSync sync,
1999 EGLint flags, EGLTime timeout)
2000 {
2001 _EGLDisplay *disp = _eglLockDisplay(dpy);
2002 _EGLSync *s = _eglLookupSync(sync, disp);
2003 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2004 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2005 }
2006
2007 static EGLint EGLAPIENTRY
2008 eglClientWaitSyncKHR(EGLDisplay dpy, EGLSync sync,
2009 EGLint flags, EGLTime timeout)
2010 {
2011 _EGLDisplay *disp = _eglLockDisplay(dpy);
2012 _EGLSync *s = _eglLookupSync(sync, disp);
2013 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2014 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
2015 }
2016
2017
2018 static EGLint
2019 _eglWaitSyncCommon(_EGLDisplay *disp, _EGLSync *s, EGLint flags)
2020 {
2021 _EGLContext *ctx = _eglGetCurrentContext();
2022 const _EGLDriver *drv;
2023 EGLint ret;
2024
2025 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2026 assert(disp->Extensions.KHR_wait_sync);
2027
2028 /* return an error if the client API doesn't support GL_[OES|MESA]_EGL_sync. */
2029 if (ctx == EGL_NO_CONTEXT ||
2030 (ctx->ClientAPI != EGL_OPENGL_ES_API &&
2031 ctx->ClientAPI != EGL_OPENGL_API))
2032 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
2033
2034 /* the API doesn't allow any flags yet */
2035 if (flags != 0)
2036 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2037
2038 ret = drv->WaitSyncKHR(disp, s);
2039
2040 RETURN_EGL_EVAL(disp, ret);
2041 }
2042
2043 static EGLint EGLAPIENTRY
2044 eglWaitSyncKHR(EGLDisplay dpy, EGLSync sync, EGLint flags)
2045 {
2046 _EGLDisplay *disp = _eglLockDisplay(dpy);
2047 _EGLSync *s = _eglLookupSync(sync, disp);
2048 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2049 return _eglWaitSyncCommon(disp, s, flags);
2050 }
2051
2052
2053 EGLBoolean EGLAPIENTRY
2054 eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags)
2055 {
2056 /* The KHR version returns EGLint, while the core version returns
2057 * EGLBoolean. In both cases, the return values can only be EGL_FALSE and
2058 * EGL_TRUE.
2059 */
2060 _EGLDisplay *disp = _eglLockDisplay(dpy);
2061 _EGLSync *s = _eglLookupSync(sync, disp);
2062 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2063 return _eglWaitSyncCommon(disp, s, flags);
2064 }
2065
2066
2067 static EGLBoolean EGLAPIENTRY
2068 eglSignalSyncKHR(EGLDisplay dpy, EGLSync sync, EGLenum mode)
2069 {
2070 _EGLDisplay *disp = _eglLockDisplay(dpy);
2071 _EGLSync *s = _eglLookupSync(sync, disp);
2072 const _EGLDriver *drv;
2073 EGLBoolean ret;
2074
2075 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2076
2077 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2078 assert(disp->Extensions.KHR_reusable_sync);
2079 ret = drv->SignalSyncKHR(disp, s, mode);
2080
2081 RETURN_EGL_EVAL(disp, ret);
2082 }
2083
2084
2085 static EGLBoolean
2086 _eglGetSyncAttribCommon(_EGLDisplay *disp, _EGLSync *s, EGLint attribute, EGLAttrib *value)
2087 {
2088 const _EGLDriver *drv;
2089 EGLBoolean ret;
2090
2091 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2092 assert(disp->Extensions.KHR_reusable_sync ||
2093 disp->Extensions.KHR_fence_sync ||
2094 disp->Extensions.ANDROID_native_fence_sync);
2095
2096 ret = _eglGetSyncAttrib(drv, disp, s, attribute, value);
2097
2098 RETURN_EGL_EVAL(disp, ret);
2099 }
2100
2101 EGLBoolean EGLAPIENTRY
2102 eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value)
2103 {
2104 _EGLDisplay *disp = _eglLockDisplay(dpy);
2105 _EGLSync *s = _eglLookupSync(sync, disp);
2106 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2107
2108 if (!value)
2109 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2110
2111 return _eglGetSyncAttribCommon(disp, s, attribute, value);
2112 }
2113
2114
2115 static EGLBoolean EGLAPIENTRY
2116 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLint *value)
2117 {
2118 _EGLDisplay *disp = _eglLockDisplay(dpy);
2119 _EGLSync *s = _eglLookupSync(sync, disp);
2120 EGLAttrib attrib;
2121 EGLBoolean result;
2122
2123 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2124
2125 if (!value)
2126 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2127
2128 attrib = *value;
2129 result = _eglGetSyncAttribCommon(disp, s, attribute, &attrib);
2130
2131 /* The EGL_KHR_fence_sync spec says this about eglGetSyncAttribKHR:
2132 *
2133 * If any error occurs, <*value> is not modified.
2134 */
2135 if (result == EGL_FALSE)
2136 return result;
2137
2138 *value = attrib;
2139 return result;
2140 }
2141
2142 static EGLint EGLAPIENTRY
2143 eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSync sync)
2144 {
2145 _EGLDisplay *disp = _eglLockDisplay(dpy);
2146 _EGLSync *s = _eglLookupSync(sync, disp);
2147 const _EGLDriver *drv;
2148 EGLBoolean ret;
2149
2150 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2151
2152 /* the spec doesn't seem to specify what happens if the fence
2153 * type is not EGL_SYNC_NATIVE_FENCE_ANDROID, but this seems
2154 * sensible:
2155 */
2156 if (!(s && (s->Type == EGL_SYNC_NATIVE_FENCE_ANDROID)))
2157 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_NATIVE_FENCE_FD_ANDROID);
2158
2159 _EGL_CHECK_SYNC(disp, s, EGL_NO_NATIVE_FENCE_FD_ANDROID, drv);
2160 assert(disp->Extensions.ANDROID_native_fence_sync);
2161 ret = drv->DupNativeFenceFDANDROID(disp, s);
2162
2163 RETURN_EGL_EVAL(disp, ret);
2164 }
2165
2166 static EGLBoolean EGLAPIENTRY
2167 eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface,
2168 EGLint numRects, const EGLint *rects)
2169 {
2170 _EGLContext *ctx = _eglGetCurrentContext();
2171 _EGLDisplay *disp = _eglLockDisplay(dpy);
2172 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2173 const _EGLDriver *drv;
2174 EGLBoolean ret;
2175
2176 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2177
2178 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2179
2180 if (!disp->Extensions.NOK_swap_region)
2181 RETURN_EGL_EVAL(disp, EGL_FALSE);
2182
2183 /* surface must be bound to current context in EGL 1.4 */
2184 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
2185 surf != ctx->DrawSurface)
2186 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
2187
2188 ret = drv->SwapBuffersRegionNOK(disp, surf, numRects, rects);
2189
2190 RETURN_EGL_EVAL(disp, ret);
2191 }
2192
2193
2194 static EGLImage EGLAPIENTRY
2195 eglCreateDRMImageMESA(EGLDisplay dpy, const EGLint *attr_list)
2196 {
2197 _EGLDisplay *disp = _eglLockDisplay(dpy);
2198 const _EGLDriver *drv;
2199 _EGLImage *img;
2200 EGLImage ret;
2201
2202 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2203
2204 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
2205 if (!disp->Extensions.MESA_drm_image)
2206 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
2207
2208 img = drv->CreateDRMImageMESA(disp, attr_list);
2209 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
2210
2211 RETURN_EGL_EVAL(disp, ret);
2212 }
2213
2214 static EGLBoolean EGLAPIENTRY
2215 eglExportDRMImageMESA(EGLDisplay dpy, EGLImage image,
2216 EGLint *name, EGLint *handle, EGLint *stride)
2217 {
2218 _EGLDisplay *disp = _eglLockDisplay(dpy);
2219 _EGLImage *img = _eglLookupImage(image, disp);
2220 const _EGLDriver *drv;
2221 EGLBoolean ret;
2222
2223 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2224
2225 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2226 assert(disp->Extensions.MESA_drm_image);
2227
2228 if (!img)
2229 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2230
2231 ret = drv->ExportDRMImageMESA(disp, img, name, handle, stride);
2232
2233 RETURN_EGL_EVAL(disp, ret);
2234 }
2235
2236
2237 struct wl_display;
2238
2239 static EGLBoolean EGLAPIENTRY
2240 eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2241 {
2242 _EGLDisplay *disp = _eglLockDisplay(dpy);
2243 const _EGLDriver *drv;
2244 EGLBoolean ret;
2245
2246 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2247
2248 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2249 assert(disp->Extensions.WL_bind_wayland_display);
2250
2251 if (!display)
2252 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2253
2254 ret = drv->BindWaylandDisplayWL(drv, disp, display);
2255
2256 RETURN_EGL_EVAL(disp, ret);
2257 }
2258
2259 static EGLBoolean EGLAPIENTRY
2260 eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2261 {
2262 _EGLDisplay *disp = _eglLockDisplay(dpy);
2263 const _EGLDriver *drv;
2264 EGLBoolean ret;
2265
2266 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2267
2268 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2269 assert(disp->Extensions.WL_bind_wayland_display);
2270
2271 if (!display)
2272 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2273
2274 ret = drv->UnbindWaylandDisplayWL(drv, disp, display);
2275
2276 RETURN_EGL_EVAL(disp, ret);
2277 }
2278
2279 static EGLBoolean EGLAPIENTRY
2280 eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer,
2281 EGLint attribute, EGLint *value)
2282 {
2283 _EGLDisplay *disp = _eglLockDisplay(dpy);
2284 const _EGLDriver *drv;
2285 EGLBoolean ret;
2286
2287 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2288
2289 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2290 assert(disp->Extensions.WL_bind_wayland_display);
2291
2292 if (!buffer)
2293 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2294
2295 ret = drv->QueryWaylandBufferWL(drv, disp, buffer, attribute, value);
2296
2297 RETURN_EGL_EVAL(disp, ret);
2298 }
2299
2300
2301 static struct wl_buffer * EGLAPIENTRY
2302 eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImage image)
2303 {
2304 _EGLDisplay *disp = _eglLockDisplay(dpy);
2305 _EGLImage *img;
2306 const _EGLDriver *drv;
2307 struct wl_buffer *ret;
2308
2309 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2310
2311 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2312 if (!disp->Extensions.WL_create_wayland_buffer_from_image)
2313 RETURN_EGL_EVAL(disp, NULL);
2314
2315 img = _eglLookupImage(image, disp);
2316
2317 if (!img)
2318 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, NULL);
2319
2320 ret = drv->CreateWaylandBufferFromImageWL(drv, disp, img);
2321
2322 RETURN_EGL_EVAL(disp, ret);
2323 }
2324
2325 static EGLBoolean EGLAPIENTRY
2326 eglPostSubBufferNV(EGLDisplay dpy, EGLSurface surface,
2327 EGLint x, EGLint y, EGLint width, EGLint height)
2328 {
2329 _EGLDisplay *disp = _eglLockDisplay(dpy);
2330 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2331 const _EGLDriver *drv;
2332 EGLBoolean ret;
2333
2334 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2335
2336 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2337
2338 if (!disp->Extensions.NV_post_sub_buffer)
2339 RETURN_EGL_EVAL(disp, EGL_FALSE);
2340
2341 ret = drv->PostSubBufferNV(drv, disp, surf, x, y, width, height);
2342
2343 RETURN_EGL_EVAL(disp, ret);
2344 }
2345
2346 static EGLBoolean EGLAPIENTRY
2347 eglGetSyncValuesCHROMIUM(EGLDisplay dpy, EGLSurface surface,
2348 EGLuint64KHR *ust, EGLuint64KHR *msc,
2349 EGLuint64KHR *sbc)
2350 {
2351 _EGLDisplay *disp = _eglLockDisplay(dpy);
2352 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2353 const _EGLDriver *drv;
2354 EGLBoolean ret;
2355
2356 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2357
2358 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2359 if (!disp->Extensions.CHROMIUM_sync_control)
2360 RETURN_EGL_EVAL(disp, EGL_FALSE);
2361
2362 if (!ust || !msc || !sbc)
2363 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2364
2365 ret = drv->GetSyncValuesCHROMIUM(disp, surf, ust, msc, sbc);
2366
2367 RETURN_EGL_EVAL(disp, ret);
2368 }
2369
2370 static EGLBoolean EGLAPIENTRY
2371 eglExportDMABUFImageQueryMESA(EGLDisplay dpy, EGLImage image,
2372 EGLint *fourcc, EGLint *nplanes,
2373 EGLuint64KHR *modifiers)
2374 {
2375 _EGLDisplay *disp = _eglLockDisplay(dpy);
2376 _EGLImage *img = _eglLookupImage(image, disp);
2377 const _EGLDriver *drv;
2378 EGLBoolean ret;
2379
2380 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2381
2382 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2383 assert(disp->Extensions.MESA_image_dma_buf_export);
2384
2385 if (!img)
2386 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2387
2388 ret = drv->ExportDMABUFImageQueryMESA(drv, disp, img, fourcc, nplanes,
2389 modifiers);
2390
2391 RETURN_EGL_EVAL(disp, ret);
2392 }
2393
2394 static EGLBoolean EGLAPIENTRY
2395 eglExportDMABUFImageMESA(EGLDisplay dpy, EGLImage image,
2396 int *fds, EGLint *strides, EGLint *offsets)
2397 {
2398 _EGLDisplay *disp = _eglLockDisplay(dpy);
2399 _EGLImage *img = _eglLookupImage(image, disp);
2400 const _EGLDriver *drv;
2401 EGLBoolean ret;
2402
2403 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2404
2405 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2406 assert(disp->Extensions.MESA_image_dma_buf_export);
2407
2408 if (!img)
2409 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2410
2411 ret = drv->ExportDMABUFImageMESA(drv, disp, img, fds, strides, offsets);
2412
2413 RETURN_EGL_EVAL(disp, ret);
2414 }
2415
2416 static EGLint EGLAPIENTRY
2417 eglLabelObjectKHR(EGLDisplay dpy, EGLenum objectType, EGLObjectKHR object,
2418 EGLLabelKHR label)
2419 {
2420 _EGLDisplay *disp = NULL;
2421 _EGLResourceType type;
2422
2423 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2424
2425 if (objectType == EGL_OBJECT_THREAD_KHR) {
2426 _EGLThreadInfo *t = _eglGetCurrentThread();
2427
2428 if (!_eglIsCurrentThreadDummy()) {
2429 t->Label = label;
2430 return EGL_SUCCESS;
2431 }
2432
2433 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_BAD_ALLOC);
2434 }
2435
2436 disp = _eglLockDisplay(dpy);
2437 if (disp == NULL)
2438 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_BAD_DISPLAY);
2439
2440 if (objectType == EGL_OBJECT_DISPLAY_KHR) {
2441 if (dpy != (EGLDisplay) object)
2442 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2443
2444 disp->Label = label;
2445 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2446 }
2447
2448 switch (objectType) {
2449 case EGL_OBJECT_CONTEXT_KHR:
2450 type = _EGL_RESOURCE_CONTEXT;
2451 break;
2452 case EGL_OBJECT_SURFACE_KHR:
2453 type = _EGL_RESOURCE_SURFACE;
2454 break;
2455 case EGL_OBJECT_IMAGE_KHR:
2456 type = _EGL_RESOURCE_IMAGE;
2457 break;
2458 case EGL_OBJECT_SYNC_KHR:
2459 type = _EGL_RESOURCE_SYNC;
2460 break;
2461 case EGL_OBJECT_STREAM_KHR:
2462 default:
2463 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2464 }
2465
2466 if (_eglCheckResource(object, type, disp)) {
2467 _EGLResource *res = (_EGLResource *) object;
2468
2469 res->Label = label;
2470 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2471 }
2472
2473 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2474 }
2475
2476 static EGLint EGLAPIENTRY
2477 eglDebugMessageControlKHR(EGLDEBUGPROCKHR callback,
2478 const EGLAttrib *attrib_list)
2479 {
2480 unsigned int newEnabled;
2481
2482 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2483
2484 mtx_lock(_eglGlobal.Mutex);
2485
2486 newEnabled = _eglGlobal.debugTypesEnabled;
2487 if (attrib_list != NULL) {
2488 int i;
2489
2490 for (i = 0; attrib_list[i] != EGL_NONE; i += 2) {
2491 switch (attrib_list[i]) {
2492 case EGL_DEBUG_MSG_CRITICAL_KHR:
2493 case EGL_DEBUG_MSG_ERROR_KHR:
2494 case EGL_DEBUG_MSG_WARN_KHR:
2495 case EGL_DEBUG_MSG_INFO_KHR:
2496 if (attrib_list[i + 1])
2497 newEnabled |= DebugBitFromType(attrib_list[i]);
2498 else
2499 newEnabled &= ~DebugBitFromType(attrib_list[i]);
2500 break;
2501 default:
2502 // On error, set the last error code, call the current
2503 // debug callback, and return the error code.
2504 mtx_unlock(_eglGlobal.Mutex);
2505 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2506 "Invalid attribute 0x%04lx", (unsigned long) attrib_list[i]);
2507 return EGL_BAD_ATTRIBUTE;
2508 }
2509 }
2510 }
2511
2512 if (callback != NULL) {
2513 _eglGlobal.debugCallback = callback;
2514 _eglGlobal.debugTypesEnabled = newEnabled;
2515 } else {
2516 _eglGlobal.debugCallback = NULL;
2517 _eglGlobal.debugTypesEnabled = _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR;
2518 }
2519
2520 mtx_unlock(_eglGlobal.Mutex);
2521 return EGL_SUCCESS;
2522 }
2523
2524 static EGLBoolean EGLAPIENTRY
2525 eglQueryDebugKHR(EGLint attribute, EGLAttrib *value)
2526 {
2527 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2528
2529 mtx_lock(_eglGlobal.Mutex);
2530
2531 switch (attribute) {
2532 case EGL_DEBUG_MSG_CRITICAL_KHR:
2533 case EGL_DEBUG_MSG_ERROR_KHR:
2534 case EGL_DEBUG_MSG_WARN_KHR:
2535 case EGL_DEBUG_MSG_INFO_KHR:
2536 if (_eglGlobal.debugTypesEnabled & DebugBitFromType(attribute))
2537 *value = EGL_TRUE;
2538 else
2539 *value = EGL_FALSE;
2540 break;
2541 case EGL_DEBUG_CALLBACK_KHR:
2542 *value = (EGLAttrib) _eglGlobal.debugCallback;
2543 break;
2544 default:
2545 mtx_unlock(_eglGlobal.Mutex);
2546 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2547 "Invalid attribute 0x%04lx", (unsigned long) attribute);
2548 return EGL_FALSE;
2549 }
2550
2551 mtx_unlock(_eglGlobal.Mutex);
2552 return EGL_TRUE;
2553 }
2554
2555 static int
2556 _eglFunctionCompare(const void *key, const void *elem)
2557 {
2558 const char *procname = key;
2559 const struct _egl_entrypoint *entrypoint = elem;
2560 return strcmp(procname, entrypoint->name);
2561 }
2562
2563 static EGLBoolean EGLAPIENTRY
2564 eglQueryDmaBufFormatsEXT(EGLDisplay dpy, EGLint max_formats,
2565 EGLint *formats, EGLint *num_formats)
2566 {
2567 _EGLDisplay *disp = _eglLockDisplay(dpy);
2568 const _EGLDriver *drv;
2569 EGLBoolean ret;
2570
2571 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2572
2573 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2574
2575 ret = drv->QueryDmaBufFormatsEXT(drv, disp, max_formats, formats,
2576 num_formats);
2577
2578 RETURN_EGL_EVAL(disp, ret);
2579 }
2580
2581 static EGLBoolean EGLAPIENTRY
2582 eglQueryDmaBufModifiersEXT(EGLDisplay dpy, EGLint format, EGLint max_modifiers,
2583 EGLuint64KHR *modifiers, EGLBoolean *external_only,
2584 EGLint *num_modifiers)
2585 {
2586 _EGLDisplay *disp = _eglLockDisplay(dpy);
2587 const _EGLDriver *drv;
2588 EGLBoolean ret;
2589
2590 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2591
2592 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2593
2594 ret = drv->QueryDmaBufModifiersEXT(drv, disp, format, max_modifiers,
2595 modifiers, external_only,
2596 num_modifiers);
2597
2598 RETURN_EGL_EVAL(disp, ret);
2599 }
2600
2601 static void EGLAPIENTRY
2602 eglSetBlobCacheFuncsANDROID(EGLDisplay *dpy, EGLSetBlobFuncANDROID set,
2603 EGLGetBlobFuncANDROID get)
2604 {
2605 /* This function does not return anything so we cannot
2606 * utilize the helper macros _EGL_FUNC_START or _EGL_CHECK_DISPLAY.
2607 */
2608 _EGLDisplay *disp = _eglLockDisplay(dpy);
2609 if (!_eglSetFuncName(__func__, disp, EGL_OBJECT_DISPLAY_KHR, NULL)) {
2610 if (disp)
2611 _eglUnlockDisplay(disp);
2612 return;
2613 }
2614
2615 const _EGLDriver *drv = _eglCheckDisplay(disp, __func__);
2616 if (!drv) {
2617 if (disp)
2618 _eglUnlockDisplay(disp);
2619 return;
2620 }
2621
2622 if (!set || !get) {
2623 _eglError(EGL_BAD_PARAMETER,
2624 "eglSetBlobCacheFuncsANDROID: NULL handler given");
2625 _eglUnlockDisplay(disp);
2626 return;
2627 }
2628
2629 if (disp->BlobCacheSet) {
2630 _eglError(EGL_BAD_PARAMETER,
2631 "eglSetBlobCacheFuncsANDROID: functions already set");
2632 _eglUnlockDisplay(disp);
2633 return;
2634 }
2635
2636 disp->BlobCacheSet = set;
2637 disp->BlobCacheGet = get;
2638
2639 drv->SetBlobCacheFuncsANDROID(drv, disp, set, get);
2640
2641 _eglUnlockDisplay(disp);
2642 }
2643
2644 static EGLBoolean EGLAPIENTRY
2645 eglQueryDeviceAttribEXT(EGLDeviceEXT device,
2646 EGLint attribute,
2647 EGLAttrib *value)
2648 {
2649 _EGLDevice *dev = _eglLookupDevice(device);
2650 EGLBoolean ret;
2651
2652 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2653 if (!dev)
2654 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, EGL_FALSE);
2655
2656 ret = _eglQueryDeviceAttribEXT(dev, attribute, value);
2657 RETURN_EGL_EVAL(NULL, ret);
2658 }
2659
2660 static const char * EGLAPIENTRY
2661 eglQueryDeviceStringEXT(EGLDeviceEXT device,
2662 EGLint name)
2663 {
2664 _EGLDevice *dev = _eglLookupDevice(device);
2665
2666 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2667 if (!dev)
2668 RETURN_EGL_ERROR(NULL, EGL_BAD_DEVICE_EXT, NULL);
2669
2670 RETURN_EGL_EVAL(NULL, _eglQueryDeviceStringEXT(dev, name));
2671 }
2672
2673 static EGLBoolean EGLAPIENTRY
2674 eglQueryDevicesEXT(EGLint max_devices,
2675 EGLDeviceEXT *devices,
2676 EGLint *num_devices)
2677 {
2678 EGLBoolean ret;
2679
2680 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2681 ret = _eglQueryDevicesEXT(max_devices, (_EGLDevice **) devices,
2682 num_devices);
2683 RETURN_EGL_EVAL(NULL, ret);
2684 }
2685
2686 static EGLBoolean EGLAPIENTRY
2687 eglQueryDisplayAttribEXT(EGLDisplay dpy,
2688 EGLint attribute,
2689 EGLAttrib *value)
2690 {
2691 _EGLDisplay *disp = _eglLockDisplay(dpy);
2692 const _EGLDriver *drv;
2693
2694 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2695 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2696
2697 switch (attribute) {
2698 case EGL_DEVICE_EXT:
2699 *value = (EGLAttrib) disp->Device;
2700 break;
2701 default:
2702 RETURN_EGL_ERROR(disp, EGL_BAD_ATTRIBUTE, EGL_FALSE);
2703 }
2704 RETURN_EGL_SUCCESS(disp, EGL_TRUE);
2705 }
2706
2707 static char * EGLAPIENTRY
2708 eglGetDisplayDriverConfig(EGLDisplay dpy)
2709 {
2710 _EGLDisplay *disp = _eglLockDisplay(dpy);
2711 const _EGLDriver *drv;
2712 char *ret;
2713
2714 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2715 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2716
2717 assert(disp->Extensions.MESA_query_driver);
2718
2719 ret = drv->QueryDriverConfig(disp);
2720 RETURN_EGL_EVAL(disp, ret);
2721 }
2722
2723 static const char * EGLAPIENTRY
2724 eglGetDisplayDriverName(EGLDisplay dpy)
2725 {
2726 _EGLDisplay *disp = _eglLockDisplay(dpy);
2727 const _EGLDriver *drv;
2728 const char *ret;
2729
2730 _EGL_FUNC_START(disp, EGL_NONE, NULL, NULL);
2731 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2732
2733 assert(disp->Extensions.MESA_query_driver);
2734
2735 ret = drv->QueryDriverName(disp);
2736 RETURN_EGL_EVAL(disp, ret);
2737 }
2738
2739 __eglMustCastToProperFunctionPointerType EGLAPIENTRY
2740 eglGetProcAddress(const char *procname)
2741 {
2742 static const struct _egl_entrypoint egl_functions[] = {
2743 #define EGL_ENTRYPOINT(f) { .name = #f, .function = (_EGLProc) f },
2744 #include "eglentrypoint.h"
2745 #undef EGL_ENTRYPOINT
2746 };
2747 _EGLProc ret = NULL;
2748
2749 if (!procname)
2750 RETURN_EGL_SUCCESS(NULL, NULL);
2751
2752 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2753
2754 if (strncmp(procname, "egl", 3) == 0) {
2755 const struct _egl_entrypoint *entrypoint =
2756 bsearch(procname,
2757 egl_functions, ARRAY_SIZE(egl_functions),
2758 sizeof(egl_functions[0]),
2759 _eglFunctionCompare);
2760 if (entrypoint)
2761 ret = entrypoint->function;
2762 }
2763
2764 if (!ret)
2765 ret = _eglGetDriverProc(procname);
2766
2767 RETURN_EGL_SUCCESS(NULL, ret);
2768 }
2769
2770 static int
2771 _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context,
2772 _EGLDisplay **disp, const _EGLDriver **drv,
2773 _EGLContext **ctx)
2774 {
2775
2776 *disp = _eglLockDisplay(dpy);
2777 if (!*disp || !(*disp)->Initialized || !(*disp)->Driver) {
2778 if (*disp)
2779 _eglUnlockDisplay(*disp);
2780 return MESA_GLINTEROP_INVALID_DISPLAY;
2781 }
2782
2783 *drv = (*disp)->Driver;
2784
2785 *ctx = _eglLookupContext(context, *disp);
2786 if (!*ctx ||
2787 ((*ctx)->ClientAPI != EGL_OPENGL_API &&
2788 (*ctx)->ClientAPI != EGL_OPENGL_ES_API)) {
2789 _eglUnlockDisplay(*disp);
2790 return MESA_GLINTEROP_INVALID_CONTEXT;
2791 }
2792
2793 return MESA_GLINTEROP_SUCCESS;
2794 }
2795
2796 PUBLIC int
2797 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
2798 struct mesa_glinterop_device_info *out)
2799 {
2800 _EGLDisplay *disp;
2801 const _EGLDriver *drv;
2802 _EGLContext *ctx;
2803 int ret;
2804
2805 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2806 if (ret != MESA_GLINTEROP_SUCCESS)
2807 return ret;
2808
2809 if (drv->GLInteropQueryDeviceInfo)
2810 ret = drv->GLInteropQueryDeviceInfo(disp, ctx, out);
2811 else
2812 ret = MESA_GLINTEROP_UNSUPPORTED;
2813
2814 _eglUnlockDisplay(disp);
2815 return ret;
2816 }
2817
2818 PUBLIC int
2819 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
2820 struct mesa_glinterop_export_in *in,
2821 struct mesa_glinterop_export_out *out)
2822 {
2823 _EGLDisplay *disp;
2824 const _EGLDriver *drv;
2825 _EGLContext *ctx;
2826 int ret;
2827
2828 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2829 if (ret != MESA_GLINTEROP_SUCCESS)
2830 return ret;
2831
2832 if (drv->GLInteropExportObject)
2833 ret = drv->GLInteropExportObject(disp, ctx, in, out);
2834 else
2835 ret = MESA_GLINTEROP_UNSUPPORTED;
2836
2837 _eglUnlockDisplay(disp);
2838 return ret;
2839 }