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