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