egl: deduplicate swap interval clamping logic
[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 interval = CLAMP(interval,
1205 surf->Config->MinSwapInterval,
1206 surf->Config->MaxSwapInterval);
1207
1208 if (surf->SwapInterval != interval)
1209 ret = drv->API.SwapInterval(drv, disp, surf, interval);
1210 else
1211 ret = EGL_TRUE;
1212
1213 if (ret)
1214 surf->SwapInterval = interval;
1215
1216 RETURN_EGL_EVAL(disp, ret);
1217 }
1218
1219
1220 EGLBoolean EGLAPIENTRY
1221 eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
1222 {
1223 _EGLContext *ctx = _eglGetCurrentContext();
1224 _EGLDisplay *disp = _eglLockDisplay(dpy);
1225 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1226 _EGLDriver *drv;
1227 EGLBoolean ret;
1228
1229 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1230 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1231
1232 /* surface must be bound to current context in EGL 1.4 */
1233 #ifndef _EGL_BUILT_IN_DRIVER_HAIKU
1234 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1235 surf != ctx->DrawSurface)
1236 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
1237 #endif
1238
1239 /* From the EGL 1.5 spec:
1240 *
1241 * If eglSwapBuffers is called and the native window associated with
1242 * surface is no longer valid, an EGL_BAD_NATIVE_WINDOW error is
1243 * generated.
1244 */
1245 if (surf->Lost)
1246 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_WINDOW, EGL_FALSE);
1247
1248 ret = drv->API.SwapBuffers(drv, disp, surf);
1249
1250 /* EGL_KHR_partial_update
1251 * Frame boundary successfully reached,
1252 * reset damage region and reset BufferAgeRead
1253 */
1254 if (ret) {
1255 surf->SetDamageRegionCalled = EGL_FALSE;
1256 surf->BufferAgeRead = EGL_FALSE;
1257 }
1258
1259 RETURN_EGL_EVAL(disp, ret);
1260 }
1261
1262
1263 static EGLBoolean
1264 _eglSwapBuffersWithDamageCommon(_EGLDisplay *disp, _EGLSurface *surf,
1265 EGLint *rects, EGLint n_rects)
1266 {
1267 _EGLContext *ctx = _eglGetCurrentContext();
1268 _EGLDriver *drv;
1269 EGLBoolean ret;
1270
1271 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1272
1273 /* surface must be bound to current context in EGL 1.4 */
1274 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1275 surf != ctx->DrawSurface)
1276 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
1277
1278 if ((n_rects > 0 && rects == NULL) || n_rects < 0)
1279 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1280
1281 ret = drv->API.SwapBuffersWithDamageEXT(drv, disp, surf, rects, n_rects);
1282
1283 /* EGL_KHR_partial_update
1284 * Frame boundary successfully reached,
1285 * reset damage region and reset BufferAgeRead
1286 */
1287 if (ret) {
1288 surf->SetDamageRegionCalled = EGL_FALSE;
1289 surf->BufferAgeRead = EGL_FALSE;
1290 }
1291
1292 RETURN_EGL_EVAL(disp, ret);
1293 }
1294
1295 static EGLBoolean EGLAPIENTRY
1296 eglSwapBuffersWithDamageEXT(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 static EGLBoolean EGLAPIENTRY
1306 eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface surface,
1307 EGLint *rects, EGLint n_rects)
1308 {
1309 _EGLDisplay *disp = _eglLockDisplay(dpy);
1310 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1311 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1312 return _eglSwapBuffersWithDamageCommon(disp, surf, rects, n_rects);
1313 }
1314
1315 /**
1316 * If the width of the passed rect is greater than the surface's
1317 * width then it is clamped to the width of the surface. Same with
1318 * height.
1319 */
1320
1321 static void
1322 _eglSetDamageRegionKHRClampRects(_EGLDisplay* disp, _EGLSurface* surf,
1323 EGLint *rects, EGLint n_rects)
1324 {
1325 EGLint i;
1326 EGLint surf_height = surf->Height;
1327 EGLint surf_width = surf->Width;
1328
1329 for (i = 0; i < (4 * n_rects); i += 4) {
1330 EGLint x, y, rect_width, rect_height;
1331 x = rects[i];
1332 y = rects[i + 1];
1333 rect_width = rects[i + 2];
1334 rect_height = rects[i + 3];
1335
1336 if (rect_width > surf_width - x)
1337 rects[i + 2] = surf_width - x;
1338
1339 if (rect_height > surf_height - y)
1340 rects[i + 3] = surf_height - y;
1341 }
1342 }
1343
1344 static EGLBoolean EGLAPIENTRY
1345 eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface,
1346 EGLint *rects, EGLint n_rects)
1347 {
1348 _EGLDisplay *disp = _eglLockDisplay(dpy);
1349 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1350 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1351 _EGLContext *ctx = _eglGetCurrentContext();
1352 _EGLDriver *drv;
1353 EGLBoolean ret;
1354 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1355
1356 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1357 surf->Type != EGL_WINDOW_BIT ||
1358 ctx->DrawSurface != surf ||
1359 surf->SwapBehavior != EGL_BUFFER_DESTROYED)
1360 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
1361
1362 /* If the damage region is already set or
1363 * buffer age is not queried between
1364 * frame boundaries, throw bad access error
1365 */
1366
1367 if (surf->SetDamageRegionCalled || !surf->BufferAgeRead)
1368 RETURN_EGL_ERROR(disp, EGL_BAD_ACCESS, EGL_FALSE);
1369
1370 _eglSetDamageRegionKHRClampRects(disp, surf, rects, n_rects);
1371 ret = drv->API.SetDamageRegion(drv, disp, surf, rects, n_rects);
1372
1373 if (ret)
1374 surf->SetDamageRegionCalled = EGL_TRUE;
1375
1376 RETURN_EGL_EVAL(disp, ret);
1377 }
1378
1379 EGLBoolean EGLAPIENTRY
1380 eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target)
1381 {
1382 _EGLDisplay *disp = _eglLockDisplay(dpy);
1383 _EGLSurface *surf = _eglLookupSurface(surface, disp);
1384 _EGLDriver *drv;
1385 EGLBoolean ret;
1386 void *native_pixmap_ptr;
1387
1388 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
1389 STATIC_ASSERT(sizeof(void*) == sizeof(target));
1390 native_pixmap_ptr = (void*) target;
1391
1392 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
1393 if (disp->Platform != _eglGetNativePlatform(disp->PlatformDisplay))
1394 RETURN_EGL_ERROR(disp, EGL_BAD_NATIVE_PIXMAP, EGL_FALSE);
1395 ret = drv->API.CopyBuffers(drv, disp, surf, native_pixmap_ptr);
1396
1397 RETURN_EGL_EVAL(disp, ret);
1398 }
1399
1400
1401 static EGLBoolean
1402 _eglWaitClientCommon(void)
1403 {
1404 _EGLContext *ctx = _eglGetCurrentContext();
1405 _EGLDisplay *disp;
1406 _EGLDriver *drv;
1407 EGLBoolean ret;
1408
1409 if (!ctx)
1410 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1411
1412 disp = ctx->Resource.Display;
1413 mtx_lock(&disp->Mutex);
1414
1415 /* let bad current context imply bad current surface */
1416 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1417 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1418 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1419
1420 /* a valid current context implies an initialized current display */
1421 assert(disp->Initialized);
1422 drv = disp->Driver;
1423 ret = drv->API.WaitClient(drv, disp, ctx);
1424
1425 RETURN_EGL_EVAL(disp, ret);
1426 }
1427
1428 EGLBoolean EGLAPIENTRY
1429 eglWaitClient(void)
1430 {
1431 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1432 return _eglWaitClientCommon();
1433 }
1434
1435 EGLBoolean EGLAPIENTRY
1436 eglWaitGL(void)
1437 {
1438 /* Since we only support OpenGL and GLES, eglWaitGL is equivalent to eglWaitClient. */
1439 _EGL_FUNC_START(NULL, EGL_OBJECT_CONTEXT_KHR, _eglGetCurrentContext(), EGL_FALSE);
1440 return _eglWaitClientCommon();
1441 }
1442
1443
1444 EGLBoolean EGLAPIENTRY
1445 eglWaitNative(EGLint engine)
1446 {
1447 _EGLContext *ctx = _eglGetCurrentContext();
1448 _EGLDisplay *disp;
1449 _EGLDriver *drv;
1450 EGLBoolean ret;
1451
1452 if (!ctx)
1453 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1454
1455 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1456
1457 disp = ctx->Resource.Display;
1458 mtx_lock(&disp->Mutex);
1459
1460 /* let bad current context imply bad current surface */
1461 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
1462 _eglGetSurfaceHandle(ctx->DrawSurface) == EGL_NO_SURFACE)
1463 RETURN_EGL_ERROR(disp, EGL_BAD_CURRENT_SURFACE, EGL_FALSE);
1464
1465 /* a valid current context implies an initialized current display */
1466 assert(disp->Initialized);
1467 drv = disp->Driver;
1468 ret = drv->API.WaitNative(drv, disp, engine);
1469
1470 RETURN_EGL_EVAL(disp, ret);
1471 }
1472
1473
1474 EGLDisplay EGLAPIENTRY
1475 eglGetCurrentDisplay(void)
1476 {
1477 _EGLContext *ctx = _eglGetCurrentContext();
1478 EGLDisplay ret;
1479
1480 ret = (ctx) ? _eglGetDisplayHandle(ctx->Resource.Display) : EGL_NO_DISPLAY;
1481
1482 RETURN_EGL_SUCCESS(NULL, ret);
1483 }
1484
1485
1486 EGLContext EGLAPIENTRY
1487 eglGetCurrentContext(void)
1488 {
1489 _EGLContext *ctx = _eglGetCurrentContext();
1490 EGLContext ret;
1491
1492 ret = _eglGetContextHandle(ctx);
1493
1494 RETURN_EGL_SUCCESS(NULL, ret);
1495 }
1496
1497
1498 EGLSurface EGLAPIENTRY
1499 eglGetCurrentSurface(EGLint readdraw)
1500 {
1501 _EGLContext *ctx = _eglGetCurrentContext();
1502 EGLint err = EGL_SUCCESS;
1503 _EGLSurface *surf;
1504 EGLSurface ret;
1505
1506 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_NO_SURFACE);
1507
1508 if (!ctx)
1509 RETURN_EGL_SUCCESS(NULL, EGL_NO_SURFACE);
1510
1511 switch (readdraw) {
1512 case EGL_DRAW:
1513 surf = ctx->DrawSurface;
1514 break;
1515 case EGL_READ:
1516 surf = ctx->ReadSurface;
1517 break;
1518 default:
1519 surf = NULL;
1520 err = EGL_BAD_PARAMETER;
1521 break;
1522 }
1523
1524 ret = _eglGetSurfaceHandle(surf);
1525
1526 RETURN_EGL_ERROR(NULL, err, ret);
1527 }
1528
1529
1530 EGLint EGLAPIENTRY
1531 eglGetError(void)
1532 {
1533 _EGLThreadInfo *t = _eglGetCurrentThread();
1534 EGLint e = t->LastError;
1535 if (!_eglIsCurrentThreadDummy())
1536 t->LastError = EGL_SUCCESS;
1537 return e;
1538 }
1539
1540
1541 /**
1542 ** EGL 1.2
1543 **/
1544
1545 /**
1546 * Specify the client API to use for subsequent calls including:
1547 * eglCreateContext()
1548 * eglGetCurrentContext()
1549 * eglGetCurrentDisplay()
1550 * eglGetCurrentSurface()
1551 * eglMakeCurrent(when the ctx parameter is EGL NO CONTEXT)
1552 * eglWaitClient()
1553 * eglWaitNative()
1554 * See section 3.7 "Rendering Context" in the EGL specification for details.
1555 */
1556 EGLBoolean EGLAPIENTRY
1557 eglBindAPI(EGLenum api)
1558 {
1559 _EGLThreadInfo *t;
1560
1561 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1562
1563 t = _eglGetCurrentThread();
1564 if (_eglIsCurrentThreadDummy())
1565 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_FALSE);
1566
1567 if (!_eglIsApiValid(api))
1568 RETURN_EGL_ERROR(NULL, EGL_BAD_PARAMETER, EGL_FALSE);
1569
1570 t->CurrentAPI = api;
1571
1572 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1573 }
1574
1575
1576 /**
1577 * Return the last value set with eglBindAPI().
1578 */
1579 EGLenum EGLAPIENTRY
1580 eglQueryAPI(void)
1581 {
1582 _EGLThreadInfo *t = _eglGetCurrentThread();
1583 EGLenum ret;
1584
1585 /* returns one of EGL_OPENGL_API, EGL_OPENGL_ES_API or EGL_OPENVG_API */
1586 ret = t->CurrentAPI;
1587
1588 RETURN_EGL_SUCCESS(NULL, ret);
1589 }
1590
1591
1592 EGLSurface EGLAPIENTRY
1593 eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype,
1594 EGLClientBuffer buffer, EGLConfig config,
1595 const EGLint *attrib_list)
1596 {
1597 _EGLDisplay *disp = _eglLockDisplay(dpy);
1598 _EGLConfig *conf = _eglLookupConfig(config, disp);
1599 _EGLDriver *drv;
1600 _EGLSurface *surf;
1601 EGLSurface ret;
1602
1603 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_SURFACE);
1604
1605 _EGL_CHECK_CONFIG(disp, conf, EGL_NO_SURFACE, drv);
1606
1607 surf = drv->API.CreatePbufferFromClientBuffer(drv, disp, buftype, buffer,
1608 conf, attrib_list);
1609 ret = (surf) ? _eglLinkSurface(surf) : EGL_NO_SURFACE;
1610
1611 RETURN_EGL_EVAL(disp, ret);
1612 }
1613
1614
1615 EGLBoolean EGLAPIENTRY
1616 eglReleaseThread(void)
1617 {
1618 /* unbind current contexts */
1619 if (!_eglIsCurrentThreadDummy()) {
1620 _EGLThreadInfo *t = _eglGetCurrentThread();
1621 _EGLContext *ctx = t->CurrentContext;
1622
1623 _EGL_FUNC_START(NULL, EGL_OBJECT_THREAD_KHR, NULL, EGL_FALSE);
1624
1625 if (ctx) {
1626 _EGLDisplay *disp = ctx->Resource.Display;
1627 _EGLDriver *drv;
1628
1629 mtx_lock(&disp->Mutex);
1630 drv = disp->Driver;
1631 (void) drv->API.MakeCurrent(drv, disp, NULL, NULL, NULL);
1632 mtx_unlock(&disp->Mutex);
1633 }
1634 }
1635
1636 _eglDestroyCurrentThread();
1637
1638 RETURN_EGL_SUCCESS(NULL, EGL_TRUE);
1639 }
1640
1641
1642 static EGLImage
1643 _eglCreateImageCommon(_EGLDisplay *disp, EGLContext ctx, EGLenum target,
1644 EGLClientBuffer buffer, const EGLint *attr_list)
1645 {
1646 _EGLContext *context = _eglLookupContext(ctx, disp);
1647 _EGLDriver *drv;
1648 _EGLImage *img;
1649 EGLImage ret;
1650
1651 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
1652 if (!disp->Extensions.KHR_image_base)
1653 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
1654 if (!context && ctx != EGL_NO_CONTEXT)
1655 RETURN_EGL_ERROR(disp, EGL_BAD_CONTEXT, EGL_NO_IMAGE_KHR);
1656 /* "If <target> is EGL_LINUX_DMA_BUF_EXT, <dpy> must be a valid display,
1657 * <ctx> must be EGL_NO_CONTEXT..."
1658 */
1659 if (ctx != EGL_NO_CONTEXT && target == EGL_LINUX_DMA_BUF_EXT)
1660 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_IMAGE_KHR);
1661
1662 img = drv->API.CreateImageKHR(drv,
1663 disp, context, target, buffer, attr_list);
1664 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
1665
1666 RETURN_EGL_EVAL(disp, ret);
1667 }
1668
1669 static EGLImage EGLAPIENTRY
1670 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1671 EGLClientBuffer buffer, const EGLint *attr_list)
1672 {
1673 _EGLDisplay *disp = _eglLockDisplay(dpy);
1674 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1675 return _eglCreateImageCommon(disp, ctx, target, buffer, attr_list);
1676 }
1677
1678
1679 EGLImage EGLAPIENTRY
1680 eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target,
1681 EGLClientBuffer buffer, const EGLAttrib *attr_list)
1682 {
1683 _EGLDisplay *disp = _eglLockDisplay(dpy);
1684 EGLImage image;
1685 EGLint *int_attribs;
1686
1687 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_NO_IMAGE_KHR);
1688
1689 int_attribs = _eglConvertAttribsToInt(attr_list);
1690 if (attr_list && !int_attribs)
1691 RETURN_EGL_ERROR(disp, EGL_BAD_ALLOC, EGL_NO_IMAGE);
1692
1693 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs);
1694 free(int_attribs);
1695 return image;
1696 }
1697
1698
1699 static EGLBoolean
1700 _eglDestroyImageCommon(_EGLDisplay *disp, _EGLImage *img)
1701 {
1702 _EGLDriver *drv;
1703 EGLBoolean ret;
1704
1705 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
1706 if (!disp->Extensions.KHR_image_base)
1707 RETURN_EGL_EVAL(disp, EGL_FALSE);
1708 if (!img)
1709 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1710
1711 _eglUnlinkImage(img);
1712 ret = drv->API.DestroyImageKHR(drv, disp, img);
1713
1714 RETURN_EGL_EVAL(disp, ret);
1715 }
1716
1717 EGLBoolean EGLAPIENTRY
1718 eglDestroyImage(EGLDisplay dpy, EGLImage image)
1719 {
1720 _EGLDisplay *disp = _eglLockDisplay(dpy);
1721 _EGLImage *img = _eglLookupImage(image, disp);
1722 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1723 return _eglDestroyImageCommon(disp, img);
1724 }
1725
1726 static EGLBoolean EGLAPIENTRY
1727 eglDestroyImageKHR(EGLDisplay dpy, EGLImage image)
1728 {
1729 _EGLDisplay *disp = _eglLockDisplay(dpy);
1730 _EGLImage *img = _eglLookupImage(image, disp);
1731 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
1732 return _eglDestroyImageCommon(disp, img);
1733 }
1734
1735
1736 static EGLSync
1737 _eglCreateSync(_EGLDisplay *disp, EGLenum type, const EGLAttrib *attrib_list,
1738 EGLBoolean orig_is_EGLAttrib,
1739 EGLenum invalid_type_error)
1740 {
1741 _EGLContext *ctx = _eglGetCurrentContext();
1742 _EGLDriver *drv;
1743 _EGLSync *sync;
1744 EGLSync ret;
1745
1746 _EGL_CHECK_DISPLAY(disp, EGL_NO_SYNC_KHR, drv);
1747
1748 if (!disp->Extensions.KHR_cl_event2 && orig_is_EGLAttrib) {
1749 /* There exist two EGLAttrib variants of eglCreateSync*:
1750 * eglCreateSync64KHR which requires EGL_KHR_cl_event2, and eglCreateSync
1751 * which requires EGL 1.5. Here we use the presence of EGL_KHR_cl_event2
1752 * support as a proxy for EGL 1.5 support, even though that's not
1753 * entirely correct (though _eglComputeVersion does the same).
1754 *
1755 * The EGL spec provides no guidance on how to handle unsupported
1756 * functions. EGL_BAD_MATCH seems reasonable.
1757 */
1758 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1759 }
1760
1761 /* If type is EGL_SYNC_FENCE and no context is current for the bound API
1762 * (i.e., eglGetCurrentContext returns EGL_NO_CONTEXT ), an EGL_BAD_MATCH
1763 * error is generated.
1764 */
1765 if (!ctx &&
1766 (type == EGL_SYNC_FENCE_KHR || type == EGL_SYNC_NATIVE_FENCE_ANDROID))
1767 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1768
1769 /* return an error if the client API doesn't support GL_OES_EGL_sync */
1770 if (ctx && (ctx->Resource.Display != disp ||
1771 ctx->ClientAPI != EGL_OPENGL_ES_API))
1772 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_NO_SYNC_KHR);
1773
1774 switch (type) {
1775 case EGL_SYNC_FENCE_KHR:
1776 if (!disp->Extensions.KHR_fence_sync)
1777 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1778 break;
1779 case EGL_SYNC_REUSABLE_KHR:
1780 if (!disp->Extensions.KHR_reusable_sync)
1781 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1782 break;
1783 case EGL_SYNC_CL_EVENT_KHR:
1784 if (!disp->Extensions.KHR_cl_event2)
1785 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1786 break;
1787 case EGL_SYNC_NATIVE_FENCE_ANDROID:
1788 if (!disp->Extensions.ANDROID_native_fence_sync)
1789 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1790 break;
1791 default:
1792 RETURN_EGL_ERROR(disp, invalid_type_error, EGL_NO_SYNC_KHR);
1793 }
1794
1795 sync = drv->API.CreateSyncKHR(drv, disp, type, attrib_list);
1796 ret = (sync) ? _eglLinkSync(sync) : EGL_NO_SYNC_KHR;
1797
1798 RETURN_EGL_EVAL(disp, ret);
1799 }
1800
1801
1802 static EGLSync EGLAPIENTRY
1803 eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint *int_list)
1804 {
1805 _EGLDisplay *disp = _eglLockDisplay(dpy);
1806 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1807
1808 EGLSync sync;
1809 EGLAttrib *attrib_list;
1810 EGLint err;
1811
1812 if (sizeof(int_list[0]) == sizeof(attrib_list[0])) {
1813 attrib_list = (EGLAttrib *) int_list;
1814 } else {
1815 err = _eglConvertIntsToAttribs(int_list, &attrib_list);
1816 if (err != EGL_SUCCESS)
1817 RETURN_EGL_ERROR(disp, err, EGL_NO_SYNC);
1818 }
1819
1820 sync = _eglCreateSync(disp, type, attrib_list, EGL_FALSE,
1821 EGL_BAD_ATTRIBUTE);
1822
1823 if (sizeof(int_list[0]) != sizeof(attrib_list[0]))
1824 free(attrib_list);
1825
1826 /* Don't double-unlock the display. _eglCreateSync already unlocked it. */
1827 return sync;
1828 }
1829
1830
1831 static EGLSync EGLAPIENTRY
1832 eglCreateSync64KHR(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_ATTRIBUTE);
1838 }
1839
1840
1841 EGLSync EGLAPIENTRY
1842 eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list)
1843 {
1844 _EGLDisplay *disp = _eglLockDisplay(dpy);
1845 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
1846 return _eglCreateSync(disp, type, attrib_list, EGL_TRUE,
1847 EGL_BAD_PARAMETER);
1848 }
1849
1850
1851 static EGLBoolean
1852 _eglDestroySync(_EGLDisplay *disp, _EGLSync *s)
1853 {
1854 _EGLDriver *drv;
1855 EGLBoolean ret;
1856
1857 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1858 assert(disp->Extensions.KHR_reusable_sync ||
1859 disp->Extensions.KHR_fence_sync ||
1860 disp->Extensions.ANDROID_native_fence_sync);
1861
1862 _eglUnlinkSync(s);
1863 ret = drv->API.DestroySyncKHR(drv, disp, s);
1864
1865 RETURN_EGL_EVAL(disp, ret);
1866 }
1867
1868 EGLBoolean EGLAPIENTRY
1869 eglDestroySync(EGLDisplay dpy, EGLSync sync)
1870 {
1871 _EGLDisplay *disp = _eglLockDisplay(dpy);
1872 _EGLSync *s = _eglLookupSync(sync, disp);
1873 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1874 return _eglDestroySync(disp, s);
1875 }
1876
1877 static EGLBoolean EGLAPIENTRY
1878 eglDestroySyncKHR(EGLDisplay dpy, EGLSync sync)
1879 {
1880 _EGLDisplay *disp = _eglLockDisplay(dpy);
1881 _EGLSync *s = _eglLookupSync(sync, disp);
1882 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1883 return _eglDestroySync(disp, s);
1884 }
1885
1886
1887 static EGLint
1888 _eglClientWaitSyncCommon(_EGLDisplay *disp, EGLDisplay dpy,
1889 _EGLSync *s, EGLint flags, EGLTime timeout)
1890 {
1891 _EGLDriver *drv;
1892 EGLint ret;
1893
1894 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1895 assert(disp->Extensions.KHR_reusable_sync ||
1896 disp->Extensions.KHR_fence_sync ||
1897 disp->Extensions.ANDROID_native_fence_sync);
1898
1899 if (s->SyncStatus == EGL_SIGNALED_KHR)
1900 RETURN_EGL_EVAL(disp, EGL_CONDITION_SATISFIED_KHR);
1901
1902 /* if sync type is EGL_SYNC_REUSABLE_KHR, dpy should be
1903 * unlocked here to allow other threads also to be able to
1904 * go into waiting state.
1905 */
1906
1907 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1908 _eglUnlockDisplay(dpy);
1909
1910 ret = drv->API.ClientWaitSyncKHR(drv, disp, s, flags, timeout);
1911
1912 /*
1913 * 'disp' is already unlocked for reusable sync type,
1914 * so passing 'NULL' to bypass unlocking display.
1915 */
1916 if (s->Type == EGL_SYNC_REUSABLE_KHR)
1917 RETURN_EGL_EVAL(NULL, ret);
1918 else
1919 RETURN_EGL_EVAL(disp, ret);
1920 }
1921
1922 EGLint EGLAPIENTRY
1923 eglClientWaitSync(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 static EGLint EGLAPIENTRY
1933 eglClientWaitSyncKHR(EGLDisplay dpy, EGLSync sync,
1934 EGLint flags, EGLTime timeout)
1935 {
1936 _EGLDisplay *disp = _eglLockDisplay(dpy);
1937 _EGLSync *s = _eglLookupSync(sync, disp);
1938 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1939 return _eglClientWaitSyncCommon(disp, dpy, s, flags, timeout);
1940 }
1941
1942
1943 static EGLint
1944 _eglWaitSyncCommon(_EGLDisplay *disp, _EGLSync *s, EGLint flags)
1945 {
1946 _EGLContext *ctx = _eglGetCurrentContext();
1947 _EGLDriver *drv;
1948 EGLint ret;
1949
1950 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
1951 assert(disp->Extensions.KHR_wait_sync);
1952
1953 /* return an error if the client API doesn't support GL_OES_EGL_sync */
1954 if (ctx == EGL_NO_CONTEXT || ctx->ClientAPI != EGL_OPENGL_ES_API)
1955 RETURN_EGL_ERROR(disp, EGL_BAD_MATCH, EGL_FALSE);
1956
1957 /* the API doesn't allow any flags yet */
1958 if (flags != 0)
1959 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
1960
1961 ret = drv->API.WaitSyncKHR(drv, disp, s);
1962
1963 RETURN_EGL_EVAL(disp, ret);
1964 }
1965
1966 static EGLint EGLAPIENTRY
1967 eglWaitSyncKHR(EGLDisplay dpy, EGLSync sync, EGLint flags)
1968 {
1969 _EGLDisplay *disp = _eglLockDisplay(dpy);
1970 _EGLSync *s = _eglLookupSync(sync, disp);
1971 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1972 return _eglWaitSyncCommon(disp, s, flags);
1973 }
1974
1975
1976 EGLBoolean EGLAPIENTRY
1977 eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags)
1978 {
1979 /* The KHR version returns EGLint, while the core version returns
1980 * EGLBoolean. In both cases, the return values can only be EGL_FALSE and
1981 * EGL_TRUE.
1982 */
1983 _EGLDisplay *disp = _eglLockDisplay(dpy);
1984 _EGLSync *s = _eglLookupSync(sync, disp);
1985 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1986 return _eglWaitSyncCommon(disp, s, flags);
1987 }
1988
1989
1990 static EGLBoolean EGLAPIENTRY
1991 eglSignalSyncKHR(EGLDisplay dpy, EGLSync sync, EGLenum mode)
1992 {
1993 _EGLDisplay *disp = _eglLockDisplay(dpy);
1994 _EGLSync *s = _eglLookupSync(sync, disp);
1995 _EGLDriver *drv;
1996 EGLBoolean ret;
1997
1998 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
1999
2000 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2001 assert(disp->Extensions.KHR_reusable_sync);
2002 ret = drv->API.SignalSyncKHR(drv, disp, s, mode);
2003
2004 RETURN_EGL_EVAL(disp, ret);
2005 }
2006
2007
2008 static EGLBoolean
2009 _eglGetSyncAttribCommon(_EGLDisplay *disp, _EGLSync *s, EGLint attribute, EGLAttrib *value)
2010 {
2011 _EGLDriver *drv;
2012 EGLBoolean ret;
2013
2014 _EGL_CHECK_SYNC(disp, s, EGL_FALSE, drv);
2015 assert(disp->Extensions.KHR_reusable_sync ||
2016 disp->Extensions.KHR_fence_sync ||
2017 disp->Extensions.ANDROID_native_fence_sync);
2018 ret = drv->API.GetSyncAttrib(drv, disp, s, attribute, value);
2019
2020 RETURN_EGL_EVAL(disp, ret);
2021 }
2022
2023 EGLBoolean EGLAPIENTRY
2024 eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value)
2025 {
2026 _EGLDisplay *disp = _eglLockDisplay(dpy);
2027 _EGLSync *s = _eglLookupSync(sync, disp);
2028 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2029 return _eglGetSyncAttribCommon(disp, s, attribute, value);
2030 }
2031
2032
2033 static EGLBoolean EGLAPIENTRY
2034 eglGetSyncAttribKHR(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLint *value)
2035 {
2036 _EGLDisplay *disp = _eglLockDisplay(dpy);
2037 _EGLSync *s = _eglLookupSync(sync, disp);
2038 EGLAttrib attrib;
2039 EGLBoolean result;
2040
2041 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2042
2043 if (!value)
2044 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2045
2046 attrib = *value;
2047 result = _eglGetSyncAttribCommon(disp, s, attribute, &attrib);
2048
2049 /* The EGL_KHR_fence_sync spec says this about eglGetSyncAttribKHR:
2050 *
2051 * If any error occurs, <*value> is not modified.
2052 */
2053 if (result == EGL_FALSE)
2054 return result;
2055
2056 *value = attrib;
2057 return result;
2058 }
2059
2060 static EGLint EGLAPIENTRY
2061 eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSync sync)
2062 {
2063 _EGLDisplay *disp = _eglLockDisplay(dpy);
2064 _EGLSync *s = _eglLookupSync(sync, disp);
2065 _EGLDriver *drv;
2066 EGLBoolean ret;
2067
2068 _EGL_FUNC_START(disp, EGL_OBJECT_SYNC_KHR, s, EGL_FALSE);
2069
2070 /* the spec doesn't seem to specify what happens if the fence
2071 * type is not EGL_SYNC_NATIVE_FENCE_ANDROID, but this seems
2072 * sensible:
2073 */
2074 if (!(s && (s->Type == EGL_SYNC_NATIVE_FENCE_ANDROID)))
2075 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_NO_NATIVE_FENCE_FD_ANDROID);
2076
2077 _EGL_CHECK_SYNC(disp, s, EGL_NO_NATIVE_FENCE_FD_ANDROID, drv);
2078 assert(disp->Extensions.ANDROID_native_fence_sync);
2079 ret = drv->API.DupNativeFenceFDANDROID(drv, disp, s);
2080
2081 RETURN_EGL_EVAL(disp, ret);
2082 }
2083
2084 static EGLBoolean EGLAPIENTRY
2085 eglSwapBuffersRegionNOK(EGLDisplay dpy, EGLSurface surface,
2086 EGLint numRects, const EGLint *rects)
2087 {
2088 _EGLContext *ctx = _eglGetCurrentContext();
2089 _EGLDisplay *disp = _eglLockDisplay(dpy);
2090 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2091 _EGLDriver *drv;
2092 EGLBoolean ret;
2093
2094 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2095
2096 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2097
2098 if (!disp->Extensions.NOK_swap_region)
2099 RETURN_EGL_EVAL(disp, EGL_FALSE);
2100
2101 /* surface must be bound to current context in EGL 1.4 */
2102 if (_eglGetContextHandle(ctx) == EGL_NO_CONTEXT ||
2103 surf != ctx->DrawSurface)
2104 RETURN_EGL_ERROR(disp, EGL_BAD_SURFACE, EGL_FALSE);
2105
2106 ret = drv->API.SwapBuffersRegionNOK(drv, disp, surf, numRects, rects);
2107
2108 RETURN_EGL_EVAL(disp, ret);
2109 }
2110
2111
2112 static EGLImage EGLAPIENTRY
2113 eglCreateDRMImageMESA(EGLDisplay dpy, const EGLint *attr_list)
2114 {
2115 _EGLDisplay *disp = _eglLockDisplay(dpy);
2116 _EGLDriver *drv;
2117 _EGLImage *img;
2118 EGLImage ret;
2119
2120 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2121
2122 _EGL_CHECK_DISPLAY(disp, EGL_NO_IMAGE_KHR, drv);
2123 if (!disp->Extensions.MESA_drm_image)
2124 RETURN_EGL_EVAL(disp, EGL_NO_IMAGE_KHR);
2125
2126 img = drv->API.CreateDRMImageMESA(drv, disp, attr_list);
2127 ret = (img) ? _eglLinkImage(img) : EGL_NO_IMAGE_KHR;
2128
2129 RETURN_EGL_EVAL(disp, ret);
2130 }
2131
2132 static EGLBoolean EGLAPIENTRY
2133 eglExportDRMImageMESA(EGLDisplay dpy, EGLImage image,
2134 EGLint *name, EGLint *handle, EGLint *stride)
2135 {
2136 _EGLDisplay *disp = _eglLockDisplay(dpy);
2137 _EGLImage *img = _eglLookupImage(image, disp);
2138 _EGLDriver *drv;
2139 EGLBoolean ret;
2140
2141 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2142
2143 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2144 assert(disp->Extensions.MESA_drm_image);
2145
2146 if (!img)
2147 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2148
2149 ret = drv->API.ExportDRMImageMESA(drv, disp, img, name, handle, stride);
2150
2151 RETURN_EGL_EVAL(disp, ret);
2152 }
2153
2154
2155 struct wl_display;
2156
2157 static EGLBoolean EGLAPIENTRY
2158 eglBindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2159 {
2160 _EGLDisplay *disp = _eglLockDisplay(dpy);
2161 _EGLDriver *drv;
2162 EGLBoolean ret;
2163
2164 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2165
2166 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2167 assert(disp->Extensions.WL_bind_wayland_display);
2168
2169 if (!display)
2170 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2171
2172 ret = drv->API.BindWaylandDisplayWL(drv, disp, display);
2173
2174 RETURN_EGL_EVAL(disp, ret);
2175 }
2176
2177 static EGLBoolean EGLAPIENTRY
2178 eglUnbindWaylandDisplayWL(EGLDisplay dpy, struct wl_display *display)
2179 {
2180 _EGLDisplay *disp = _eglLockDisplay(dpy);
2181 _EGLDriver *drv;
2182 EGLBoolean ret;
2183
2184 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2185
2186 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2187 assert(disp->Extensions.WL_bind_wayland_display);
2188
2189 if (!display)
2190 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2191
2192 ret = drv->API.UnbindWaylandDisplayWL(drv, disp, display);
2193
2194 RETURN_EGL_EVAL(disp, ret);
2195 }
2196
2197 static EGLBoolean EGLAPIENTRY
2198 eglQueryWaylandBufferWL(EGLDisplay dpy, struct wl_resource *buffer,
2199 EGLint attribute, EGLint *value)
2200 {
2201 _EGLDisplay *disp = _eglLockDisplay(dpy);
2202 _EGLDriver *drv;
2203 EGLBoolean ret;
2204
2205 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2206
2207 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2208 assert(disp->Extensions.WL_bind_wayland_display);
2209
2210 if (!buffer)
2211 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2212
2213 ret = drv->API.QueryWaylandBufferWL(drv, disp, buffer, attribute, value);
2214
2215 RETURN_EGL_EVAL(disp, ret);
2216 }
2217
2218
2219 static struct wl_buffer * EGLAPIENTRY
2220 eglCreateWaylandBufferFromImageWL(EGLDisplay dpy, EGLImage image)
2221 {
2222 _EGLDisplay *disp = _eglLockDisplay(dpy);
2223 _EGLImage *img;
2224 _EGLDriver *drv;
2225 struct wl_buffer *ret;
2226
2227 _EGL_FUNC_START(disp, EGL_OBJECT_DISPLAY_KHR, NULL, EGL_FALSE);
2228
2229 _EGL_CHECK_DISPLAY(disp, NULL, drv);
2230 if (!disp->Extensions.WL_create_wayland_buffer_from_image)
2231 RETURN_EGL_EVAL(disp, NULL);
2232
2233 img = _eglLookupImage(image, disp);
2234
2235 if (!img)
2236 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, NULL);
2237
2238 ret = drv->API.CreateWaylandBufferFromImageWL(drv, disp, img);
2239
2240 RETURN_EGL_EVAL(disp, ret);
2241 }
2242
2243 static EGLBoolean EGLAPIENTRY
2244 eglPostSubBufferNV(EGLDisplay dpy, EGLSurface surface,
2245 EGLint x, EGLint y, EGLint width, EGLint height)
2246 {
2247 _EGLDisplay *disp = _eglLockDisplay(dpy);
2248 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2249 _EGLDriver *drv;
2250 EGLBoolean ret;
2251
2252 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2253
2254 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2255
2256 if (!disp->Extensions.NV_post_sub_buffer)
2257 RETURN_EGL_EVAL(disp, EGL_FALSE);
2258
2259 ret = drv->API.PostSubBufferNV(drv, disp, surf, x, y, width, height);
2260
2261 RETURN_EGL_EVAL(disp, ret);
2262 }
2263
2264 static EGLBoolean EGLAPIENTRY
2265 eglGetSyncValuesCHROMIUM(EGLDisplay display, EGLSurface surface,
2266 EGLuint64KHR *ust, EGLuint64KHR *msc,
2267 EGLuint64KHR *sbc)
2268 {
2269 _EGLDisplay *disp = _eglLockDisplay(display);
2270 _EGLSurface *surf = _eglLookupSurface(surface, disp);
2271 _EGLDriver *drv;
2272 EGLBoolean ret;
2273
2274 _EGL_FUNC_START(disp, EGL_OBJECT_SURFACE_KHR, surf, EGL_FALSE);
2275
2276 _EGL_CHECK_SURFACE(disp, surf, EGL_FALSE, drv);
2277 if (!disp->Extensions.CHROMIUM_sync_control)
2278 RETURN_EGL_EVAL(disp, EGL_FALSE);
2279
2280 if (!ust || !msc || !sbc)
2281 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2282
2283 ret = drv->API.GetSyncValuesCHROMIUM(disp, surf, ust, msc, sbc);
2284
2285 RETURN_EGL_EVAL(disp, ret);
2286 }
2287
2288 static EGLBoolean EGLAPIENTRY
2289 eglExportDMABUFImageQueryMESA(EGLDisplay dpy, EGLImage image,
2290 EGLint *fourcc, EGLint *nplanes,
2291 EGLuint64KHR *modifiers)
2292 {
2293 _EGLDisplay *disp = _eglLockDisplay(dpy);
2294 _EGLImage *img = _eglLookupImage(image, disp);
2295 _EGLDriver *drv;
2296 EGLBoolean ret;
2297
2298 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2299
2300 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2301 assert(disp->Extensions.MESA_image_dma_buf_export);
2302
2303 if (!img)
2304 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2305
2306 ret = drv->API.ExportDMABUFImageQueryMESA(drv, disp, img, fourcc, nplanes,
2307 modifiers);
2308
2309 RETURN_EGL_EVAL(disp, ret);
2310 }
2311
2312 static EGLBoolean EGLAPIENTRY
2313 eglExportDMABUFImageMESA(EGLDisplay dpy, EGLImage image,
2314 int *fds, EGLint *strides, EGLint *offsets)
2315 {
2316 _EGLDisplay *disp = _eglLockDisplay(dpy);
2317 _EGLImage *img = _eglLookupImage(image, disp);
2318 _EGLDriver *drv;
2319 EGLBoolean ret;
2320
2321 _EGL_FUNC_START(disp, EGL_OBJECT_IMAGE_KHR, img, EGL_FALSE);
2322
2323 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2324 assert(disp->Extensions.MESA_image_dma_buf_export);
2325
2326 if (!img)
2327 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_FALSE);
2328
2329 ret = drv->API.ExportDMABUFImageMESA(drv, disp, img, fds, strides, offsets);
2330
2331 RETURN_EGL_EVAL(disp, ret);
2332 }
2333
2334 static EGLint EGLAPIENTRY
2335 eglLabelObjectKHR(EGLDisplay dpy, EGLenum objectType, EGLObjectKHR object,
2336 EGLLabelKHR label)
2337 {
2338 _EGLDisplay *disp = NULL;
2339 _EGLResourceType type;
2340
2341 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2342
2343 if (objectType == EGL_OBJECT_THREAD_KHR) {
2344 _EGLThreadInfo *t = _eglGetCurrentThread();
2345
2346 if (!_eglIsCurrentThreadDummy()) {
2347 t->Label = label;
2348 return EGL_SUCCESS;
2349 }
2350
2351 RETURN_EGL_ERROR(NULL, EGL_BAD_ALLOC, EGL_BAD_ALLOC);
2352 }
2353
2354 disp = _eglLockDisplay(dpy);
2355 if (disp == NULL)
2356 RETURN_EGL_ERROR(disp, EGL_BAD_DISPLAY, EGL_BAD_DISPLAY);
2357
2358 if (objectType == EGL_OBJECT_DISPLAY_KHR) {
2359 if (dpy != (EGLDisplay) object)
2360 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2361
2362 disp->Label = label;
2363 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2364 }
2365
2366 switch (objectType) {
2367 case EGL_OBJECT_CONTEXT_KHR:
2368 type = _EGL_RESOURCE_CONTEXT;
2369 break;
2370 case EGL_OBJECT_SURFACE_KHR:
2371 type = _EGL_RESOURCE_SURFACE;
2372 break;
2373 case EGL_OBJECT_IMAGE_KHR:
2374 type = _EGL_RESOURCE_IMAGE;
2375 break;
2376 case EGL_OBJECT_SYNC_KHR:
2377 type = _EGL_RESOURCE_SYNC;
2378 break;
2379 case EGL_OBJECT_STREAM_KHR:
2380 default:
2381 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2382 }
2383
2384 if (_eglCheckResource(object, type, disp)) {
2385 _EGLResource *res = (_EGLResource *) object;
2386
2387 res->Label = label;
2388 RETURN_EGL_EVAL(disp, EGL_SUCCESS);
2389 }
2390
2391 RETURN_EGL_ERROR(disp, EGL_BAD_PARAMETER, EGL_BAD_PARAMETER);
2392 }
2393
2394 static EGLBoolean
2395 _validDebugMessageLevel(EGLAttrib level)
2396 {
2397 return (level >= EGL_DEBUG_MSG_CRITICAL_KHR &&
2398 level <= EGL_DEBUG_MSG_INFO_KHR);
2399 }
2400
2401 static EGLint EGLAPIENTRY
2402 eglDebugMessageControlKHR(EGLDEBUGPROCKHR callback,
2403 const EGLAttrib *attrib_list)
2404 {
2405 unsigned int newEnabled;
2406
2407 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2408
2409 mtx_lock(_eglGlobal.Mutex);
2410
2411 newEnabled = _eglGlobal.debugTypesEnabled;
2412 if (attrib_list != NULL) {
2413 int i;
2414
2415 for (i = 0; attrib_list[i] != EGL_NONE; i += 2) {
2416 if (_validDebugMessageLevel(attrib_list[i])) {
2417 if (attrib_list[i + 1])
2418 newEnabled |= DebugBitFromType(attrib_list[i]);
2419 else
2420 newEnabled &= ~DebugBitFromType(attrib_list[i]);
2421 continue;
2422 }
2423
2424 // On error, set the last error code, call the current
2425 // debug callback, and return the error code.
2426 mtx_unlock(_eglGlobal.Mutex);
2427 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2428 "Invalid attribute 0x%04lx", (unsigned long) attrib_list[i]);
2429 return EGL_BAD_ATTRIBUTE;
2430 }
2431 }
2432
2433 if (callback != NULL) {
2434 _eglGlobal.debugCallback = callback;
2435 _eglGlobal.debugTypesEnabled = newEnabled;
2436 } else {
2437 _eglGlobal.debugCallback = NULL;
2438 _eglGlobal.debugTypesEnabled = _EGL_DEBUG_BIT_CRITICAL | _EGL_DEBUG_BIT_ERROR;
2439 }
2440
2441 mtx_unlock(_eglGlobal.Mutex);
2442 return EGL_SUCCESS;
2443 }
2444
2445 static EGLBoolean EGLAPIENTRY
2446 eglQueryDebugKHR(EGLint attribute, EGLAttrib *value)
2447 {
2448 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_BAD_ALLOC);
2449
2450 mtx_lock(_eglGlobal.Mutex);
2451
2452 do {
2453 if (_validDebugMessageLevel(attribute)) {
2454 if (_eglGlobal.debugTypesEnabled & DebugBitFromType(attribute))
2455 *value = EGL_TRUE;
2456 else
2457 *value = EGL_FALSE;
2458 break;
2459 }
2460
2461 if (attribute == EGL_DEBUG_CALLBACK_KHR) {
2462 *value = (EGLAttrib) _eglGlobal.debugCallback;
2463 break;
2464 }
2465
2466 mtx_unlock(_eglGlobal.Mutex);
2467 _eglReportError(EGL_BAD_ATTRIBUTE, NULL,
2468 "Invalid attribute 0x%04lx", (unsigned long) attribute);
2469 return EGL_FALSE;
2470 } while (0);
2471
2472 mtx_unlock(_eglGlobal.Mutex);
2473 return EGL_TRUE;
2474 }
2475
2476 static int
2477 _eglFunctionCompare(const void *key, const void *elem)
2478 {
2479 const char *procname = key;
2480 const struct _egl_entrypoint *entrypoint = elem;
2481 return strcmp(procname, entrypoint->name);
2482 }
2483
2484 static EGLBoolean EGLAPIENTRY
2485 eglQueryDmaBufFormatsEXT(EGLDisplay dpy, EGLint max_formats,
2486 EGLint *formats, EGLint *num_formats)
2487 {
2488 _EGLDisplay *disp = _eglLockDisplay(dpy);
2489 _EGLDriver *drv;
2490 EGLBoolean ret;
2491
2492 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2493
2494 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2495
2496 ret = drv->API.QueryDmaBufFormatsEXT(drv, disp, max_formats, formats,
2497 num_formats);
2498
2499 RETURN_EGL_EVAL(disp, ret);
2500 }
2501
2502 static EGLBoolean EGLAPIENTRY
2503 eglQueryDmaBufModifiersEXT(EGLDisplay dpy, EGLint format, EGLint max_modifiers,
2504 EGLuint64KHR *modifiers, EGLBoolean *external_only,
2505 EGLint *num_modifiers)
2506 {
2507 _EGLDisplay *disp = _eglLockDisplay(dpy);
2508 _EGLDriver *drv;
2509 EGLBoolean ret;
2510
2511 _EGL_FUNC_START(NULL, EGL_NONE, NULL, EGL_FALSE);
2512
2513 _EGL_CHECK_DISPLAY(disp, EGL_FALSE, drv);
2514
2515 ret = drv->API.QueryDmaBufModifiersEXT(drv, disp, format, max_modifiers,
2516 modifiers, external_only,
2517 num_modifiers);
2518
2519 RETURN_EGL_EVAL(disp, ret);
2520 }
2521
2522 __eglMustCastToProperFunctionPointerType EGLAPIENTRY
2523 eglGetProcAddress(const char *procname)
2524 {
2525 static const struct _egl_entrypoint egl_functions[] = {
2526 #define EGL_ENTRYPOINT(f) { .name = #f, .function = (_EGLProc) f },
2527 #include "eglentrypoint.h"
2528 #undef EGL_ENTRYPOINT
2529 };
2530 _EGLProc ret = NULL;
2531
2532 if (!procname)
2533 RETURN_EGL_SUCCESS(NULL, NULL);
2534
2535 _EGL_FUNC_START(NULL, EGL_NONE, NULL, NULL);
2536
2537 if (strncmp(procname, "egl", 3) == 0) {
2538 const struct _egl_entrypoint *entrypoint =
2539 bsearch(procname,
2540 egl_functions, ARRAY_SIZE(egl_functions),
2541 sizeof(egl_functions[0]),
2542 _eglFunctionCompare);
2543 if (entrypoint)
2544 ret = entrypoint->function;
2545 }
2546
2547 if (!ret)
2548 ret = _eglGetDriverProc(procname);
2549
2550 RETURN_EGL_SUCCESS(NULL, ret);
2551 }
2552
2553 static int
2554 _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context,
2555 _EGLDisplay **disp, _EGLDriver **drv,
2556 _EGLContext **ctx)
2557 {
2558
2559 *disp = _eglLockDisplay(dpy);
2560 if (!*disp || !(*disp)->Initialized || !(*disp)->Driver) {
2561 if (*disp)
2562 _eglUnlockDisplay(*disp);
2563 return MESA_GLINTEROP_INVALID_DISPLAY;
2564 }
2565
2566 *drv = (*disp)->Driver;
2567
2568 *ctx = _eglLookupContext(context, *disp);
2569 if (!*ctx ||
2570 ((*ctx)->ClientAPI != EGL_OPENGL_API &&
2571 (*ctx)->ClientAPI != EGL_OPENGL_ES_API)) {
2572 _eglUnlockDisplay(*disp);
2573 return MESA_GLINTEROP_INVALID_CONTEXT;
2574 }
2575
2576 return MESA_GLINTEROP_SUCCESS;
2577 }
2578
2579 PUBLIC int
2580 MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context,
2581 struct mesa_glinterop_device_info *out)
2582 {
2583 _EGLDisplay *disp;
2584 _EGLDriver *drv;
2585 _EGLContext *ctx;
2586 int ret;
2587
2588 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2589 if (ret != MESA_GLINTEROP_SUCCESS)
2590 return ret;
2591
2592 if (drv->API.GLInteropQueryDeviceInfo)
2593 ret = drv->API.GLInteropQueryDeviceInfo(disp, ctx, out);
2594 else
2595 ret = MESA_GLINTEROP_UNSUPPORTED;
2596
2597 _eglUnlockDisplay(disp);
2598 return ret;
2599 }
2600
2601 PUBLIC int
2602 MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context,
2603 struct mesa_glinterop_export_in *in,
2604 struct mesa_glinterop_export_out *out)
2605 {
2606 _EGLDisplay *disp;
2607 _EGLDriver *drv;
2608 _EGLContext *ctx;
2609 int ret;
2610
2611 ret = _eglLockDisplayInterop(dpy, context, &disp, &drv, &ctx);
2612 if (ret != MESA_GLINTEROP_SUCCESS)
2613 return ret;
2614
2615 if (drv->API.GLInteropExportObject)
2616 ret = drv->API.GLInteropExportObject(disp, ctx, in, out);
2617 else
2618 ret = MESA_GLINTEROP_UNSUPPORTED;
2619
2620 _eglUnlockDisplay(disp);
2621 return ret;
2622 }