egl: check the correct function pointer
[mesa.git] / src / egl / drivers / dri2 / egl_dri2.c
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #define WL_HIDE_DEPRECATED
29
30 #include <stdbool.h>
31 #include <stdint.h>
32 #include <stdbool.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <stdio.h>
36 #include <limits.h>
37 #include <dlfcn.h>
38 #include <fcntl.h>
39 #include <errno.h>
40 #include <unistd.h>
41 #include <c11/threads.h>
42 #include <time.h>
43 #ifdef HAVE_LIBDRM
44 #include <xf86drm.h>
45 #include <drm_fourcc.h>
46 #endif
47 #include <GL/gl.h>
48 #include <GL/internal/dri_interface.h>
49 #include "GL/mesa_glinterop.h"
50 #include <sys/types.h>
51 #include <sys/stat.h>
52
53 #ifdef HAVE_WAYLAND_PLATFORM
54 #include "wayland-drm.h"
55 #include "wayland-drm-client-protocol.h"
56 #include "linux-dmabuf-unstable-v1-client-protocol.h"
57 #endif
58
59 #ifdef HAVE_X11_PLATFORM
60 #include "X11/Xlibint.h"
61 #endif
62
63 #include "egl_dri2.h"
64 #include "loader/loader.h"
65 #include "util/u_atomic.h"
66 #include "util/u_vector.h"
67
68 /* The kernel header drm_fourcc.h defines the DRM formats below. We duplicate
69 * some of the definitions here so that building Mesa won't bleeding-edge
70 * kernel headers.
71 */
72 #ifndef DRM_FORMAT_R8
73 #define DRM_FORMAT_R8 fourcc_code('R', '8', ' ', ' ') /* [7:0] R */
74 #endif
75
76 #ifndef DRM_FORMAT_RG88
77 #define DRM_FORMAT_RG88 fourcc_code('R', 'G', '8', '8') /* [15:0] R:G 8:8 little endian */
78 #endif
79
80 #ifndef DRM_FORMAT_GR88
81 #define DRM_FORMAT_GR88 fourcc_code('G', 'R', '8', '8') /* [15:0] G:R 8:8 little endian */
82 #endif
83
84 #ifndef DRM_FORMAT_R16
85 #define DRM_FORMAT_R16 fourcc_code('R', '1', '6', ' ') /* [15:0] R 16 little endian */
86 #endif
87
88 #ifndef DRM_FORMAT_GR1616
89 #define DRM_FORMAT_GR1616 fourcc_code('G', 'R', '3', '2') /* [31:0] R:G 16:16 little endian */
90 #endif
91
92 #ifndef DRM_FORMAT_MOD_INVALID
93 #define DRM_FORMAT_MOD_INVALID ((1ULL<<56) - 1)
94 #endif
95
96 static void
97 dri_set_background_context(void *loaderPrivate)
98 {
99 _EGLContext *ctx = _eglGetCurrentContext();
100 _EGLThreadInfo *t = _eglGetCurrentThread();
101
102 _eglBindContextToThread(ctx, t);
103 }
104
105 static GLboolean
106 dri_is_thread_safe(void *loaderPrivate)
107 {
108 struct dri2_egl_surface *dri2_surf = loaderPrivate;
109 _EGLDisplay *display = dri2_surf->base.Resource.Display;
110
111 #ifdef HAVE_X11_PLATFORM
112 Display *xdpy = (Display*)display->PlatformDisplay;
113
114 /* Check Xlib is running in thread safe mode when running on EGL/X11-xlib
115 * platform
116 *
117 * 'lock_fns' is the XLockDisplay function pointer of the X11 display 'dpy'.
118 * It wll be NULL if XInitThreads wasn't called.
119 */
120 if (display->Platform == _EGL_PLATFORM_X11 && xdpy && !xdpy->lock_fns)
121 return false;
122 #endif
123
124 #ifdef HAVE_WAYLAND_PLATFORM
125 if (display->Platform == _EGL_PLATFORM_WAYLAND)
126 return true;
127 #endif
128
129 return true;
130 }
131
132 const __DRIbackgroundCallableExtension background_callable_extension = {
133 .base = { __DRI_BACKGROUND_CALLABLE, 2 },
134
135 .setBackgroundContext = dri_set_background_context,
136 .isThreadSafe = dri_is_thread_safe,
137 };
138
139 const __DRIuseInvalidateExtension use_invalidate = {
140 .base = { __DRI_USE_INVALIDATE, 1 }
141 };
142
143 static const EGLint dri2_to_egl_attribute_map[__DRI_ATTRIB_MAX] = {
144 [__DRI_ATTRIB_BUFFER_SIZE ] = EGL_BUFFER_SIZE,
145 [__DRI_ATTRIB_LEVEL] = EGL_LEVEL,
146 [__DRI_ATTRIB_RED_SIZE] = EGL_RED_SIZE,
147 [__DRI_ATTRIB_GREEN_SIZE] = EGL_GREEN_SIZE,
148 [__DRI_ATTRIB_BLUE_SIZE] = EGL_BLUE_SIZE,
149 [__DRI_ATTRIB_LUMINANCE_SIZE] = EGL_LUMINANCE_SIZE,
150 [__DRI_ATTRIB_ALPHA_SIZE] = EGL_ALPHA_SIZE,
151 [__DRI_ATTRIB_DEPTH_SIZE] = EGL_DEPTH_SIZE,
152 [__DRI_ATTRIB_STENCIL_SIZE] = EGL_STENCIL_SIZE,
153 [__DRI_ATTRIB_SAMPLE_BUFFERS] = EGL_SAMPLE_BUFFERS,
154 [__DRI_ATTRIB_SAMPLES] = EGL_SAMPLES,
155 [__DRI_ATTRIB_MAX_PBUFFER_WIDTH] = EGL_MAX_PBUFFER_WIDTH,
156 [__DRI_ATTRIB_MAX_PBUFFER_HEIGHT] = EGL_MAX_PBUFFER_HEIGHT,
157 [__DRI_ATTRIB_MAX_PBUFFER_PIXELS] = EGL_MAX_PBUFFER_PIXELS,
158 [__DRI_ATTRIB_MAX_SWAP_INTERVAL] = EGL_MAX_SWAP_INTERVAL,
159 [__DRI_ATTRIB_MIN_SWAP_INTERVAL] = EGL_MIN_SWAP_INTERVAL,
160 [__DRI_ATTRIB_YINVERTED] = EGL_Y_INVERTED_NOK,
161 };
162
163 const __DRIconfig *
164 dri2_get_dri_config(struct dri2_egl_config *conf, EGLint surface_type,
165 EGLenum colorspace)
166 {
167 const bool double_buffer = surface_type == EGL_WINDOW_BIT;
168 const bool srgb = colorspace == EGL_GL_COLORSPACE_SRGB_KHR;
169
170 return conf->dri_config[double_buffer][srgb];
171 }
172
173 static EGLBoolean
174 dri2_match_config(const _EGLConfig *conf, const _EGLConfig *criteria)
175 {
176 if (_eglCompareConfigs(conf, criteria, NULL, EGL_FALSE) != 0)
177 return EGL_FALSE;
178
179 if (!_eglMatchConfig(conf, criteria))
180 return EGL_FALSE;
181
182 return EGL_TRUE;
183 }
184
185 struct dri2_egl_config *
186 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
187 EGLint surface_type, const EGLint *attr_list,
188 const unsigned int *rgba_masks)
189 {
190 struct dri2_egl_config *conf;
191 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
192 _EGLConfig base;
193 unsigned int attrib, value, double_buffer;
194 bool srgb = false;
195 EGLint key, bind_to_texture_rgb, bind_to_texture_rgba;
196 unsigned int dri_masks[4] = { 0, 0, 0, 0 };
197 _EGLConfig *matching_config;
198 EGLint num_configs = 0;
199 EGLint config_id;
200
201 _eglInitConfig(&base, disp, id);
202
203 double_buffer = 0;
204 bind_to_texture_rgb = 0;
205 bind_to_texture_rgba = 0;
206
207 for (int i = 0; dri2_dpy->core->indexConfigAttrib(dri_config, i, &attrib,
208 &value); ++i) {
209 switch (attrib) {
210 case __DRI_ATTRIB_RENDER_TYPE:
211 if (value & __DRI_ATTRIB_RGBA_BIT)
212 value = EGL_RGB_BUFFER;
213 else if (value & __DRI_ATTRIB_LUMINANCE_BIT)
214 value = EGL_LUMINANCE_BUFFER;
215 else
216 return NULL;
217 _eglSetConfigKey(&base, EGL_COLOR_BUFFER_TYPE, value);
218 break;
219
220 case __DRI_ATTRIB_CONFIG_CAVEAT:
221 if (value & __DRI_ATTRIB_NON_CONFORMANT_CONFIG)
222 value = EGL_NON_CONFORMANT_CONFIG;
223 else if (value & __DRI_ATTRIB_SLOW_BIT)
224 value = EGL_SLOW_CONFIG;
225 else
226 value = EGL_NONE;
227 _eglSetConfigKey(&base, EGL_CONFIG_CAVEAT, value);
228 break;
229
230 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGB:
231 bind_to_texture_rgb = value;
232 break;
233
234 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA:
235 bind_to_texture_rgba = value;
236 break;
237
238 case __DRI_ATTRIB_DOUBLE_BUFFER:
239 double_buffer = value;
240 break;
241
242 case __DRI_ATTRIB_RED_MASK:
243 dri_masks[0] = value;
244 break;
245
246 case __DRI_ATTRIB_GREEN_MASK:
247 dri_masks[1] = value;
248 break;
249
250 case __DRI_ATTRIB_BLUE_MASK:
251 dri_masks[2] = value;
252 break;
253
254 case __DRI_ATTRIB_ALPHA_MASK:
255 dri_masks[3] = value;
256 break;
257
258 case __DRI_ATTRIB_ACCUM_RED_SIZE:
259 case __DRI_ATTRIB_ACCUM_GREEN_SIZE:
260 case __DRI_ATTRIB_ACCUM_BLUE_SIZE:
261 case __DRI_ATTRIB_ACCUM_ALPHA_SIZE:
262 /* Don't expose visuals with the accumulation buffer. */
263 if (value > 0)
264 return NULL;
265 break;
266
267 case __DRI_ATTRIB_FRAMEBUFFER_SRGB_CAPABLE:
268 srgb = value != 0;
269 if (!disp->Extensions.KHR_gl_colorspace && srgb)
270 return NULL;
271 break;
272
273 case __DRI_ATTRIB_MAX_PBUFFER_WIDTH:
274 _eglSetConfigKey(&base, EGL_MAX_PBUFFER_WIDTH,
275 _EGL_MAX_PBUFFER_WIDTH);
276 break;
277 case __DRI_ATTRIB_MAX_PBUFFER_HEIGHT:
278 _eglSetConfigKey(&base, EGL_MAX_PBUFFER_HEIGHT,
279 _EGL_MAX_PBUFFER_HEIGHT);
280 break;
281
282 default:
283 key = dri2_to_egl_attribute_map[attrib];
284 if (key != 0)
285 _eglSetConfigKey(&base, key, value);
286 break;
287 }
288 }
289
290 if (attr_list)
291 for (int i = 0; attr_list[i] != EGL_NONE; i += 2)
292 _eglSetConfigKey(&base, attr_list[i], attr_list[i+1]);
293
294 if (rgba_masks && memcmp(rgba_masks, dri_masks, sizeof(dri_masks)))
295 return NULL;
296
297 base.NativeRenderable = EGL_TRUE;
298
299 base.SurfaceType = surface_type;
300 if (surface_type & (EGL_PBUFFER_BIT |
301 (disp->Extensions.NOK_texture_from_pixmap ? EGL_PIXMAP_BIT : 0))) {
302 base.BindToTextureRGB = bind_to_texture_rgb;
303 if (base.AlphaSize > 0)
304 base.BindToTextureRGBA = bind_to_texture_rgba;
305 }
306
307 base.RenderableType = disp->ClientAPIs;
308 base.Conformant = disp->ClientAPIs;
309
310 base.MinSwapInterval = dri2_dpy->min_swap_interval;
311 base.MaxSwapInterval = dri2_dpy->max_swap_interval;
312
313 if (!_eglValidateConfig(&base, EGL_FALSE)) {
314 _eglLog(_EGL_DEBUG, "DRI2: failed to validate config %d", id);
315 return NULL;
316 }
317
318 config_id = base.ConfigID;
319 base.ConfigID = EGL_DONT_CARE;
320 base.SurfaceType = EGL_DONT_CARE;
321 num_configs = _eglFilterArray(disp->Configs, (void **) &matching_config, 1,
322 (_EGLArrayForEach) dri2_match_config, &base);
323
324 if (num_configs == 1) {
325 conf = (struct dri2_egl_config *) matching_config;
326
327 if (!conf->dri_config[double_buffer][srgb])
328 conf->dri_config[double_buffer][srgb] = dri_config;
329 else
330 /* a similar config type is already added (unlikely) => discard */
331 return NULL;
332 }
333 else if (num_configs == 0) {
334 conf = calloc(1, sizeof *conf);
335 if (conf == NULL)
336 return NULL;
337
338 conf->dri_config[double_buffer][srgb] = dri_config;
339
340 memcpy(&conf->base, &base, sizeof base);
341 conf->base.SurfaceType = 0;
342 conf->base.ConfigID = config_id;
343
344 _eglLinkConfig(&conf->base);
345 }
346 else {
347 assert(0);
348 return NULL;
349 }
350
351 if (double_buffer) {
352 surface_type &= ~EGL_PIXMAP_BIT;
353 }
354
355 /* No support for pbuffer + MSAA for now.
356 *
357 * XXX TODO: pbuffer + MSAA does not work and causes crashes.
358 * See QT bugreport: https://bugreports.qt.io/browse/QTBUG-47509
359 */
360 if (base.Samples) {
361 surface_type &= ~EGL_PBUFFER_BIT;
362 }
363
364 conf->base.SurfaceType |= surface_type;
365
366 return conf;
367 }
368
369 __DRIimage *
370 dri2_lookup_egl_image(__DRIscreen *screen, void *image, void *data)
371 {
372 _EGLDisplay *disp = data;
373 struct dri2_egl_image *dri2_img;
374 _EGLImage *img;
375
376 (void) screen;
377
378 img = _eglLookupImage(image, disp);
379 if (img == NULL) {
380 _eglError(EGL_BAD_PARAMETER, "dri2_lookup_egl_image");
381 return NULL;
382 }
383
384 dri2_img = dri2_egl_image(image);
385
386 return dri2_img->dri_image;
387 }
388
389 const __DRIimageLookupExtension image_lookup_extension = {
390 .base = { __DRI_IMAGE_LOOKUP, 1 },
391
392 .lookupEGLImage = dri2_lookup_egl_image
393 };
394
395 struct dri2_extension_match {
396 const char *name;
397 int version;
398 int offset;
399 };
400
401 static const struct dri2_extension_match dri3_driver_extensions[] = {
402 { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
403 { __DRI_IMAGE_DRIVER, 1, offsetof(struct dri2_egl_display, image_driver) },
404 { NULL, 0, 0 }
405 };
406
407 static const struct dri2_extension_match dri2_driver_extensions[] = {
408 { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
409 { __DRI_DRI2, 2, offsetof(struct dri2_egl_display, dri2) },
410 { NULL, 0, 0 }
411 };
412
413 static const struct dri2_extension_match dri2_core_extensions[] = {
414 { __DRI2_FLUSH, 1, offsetof(struct dri2_egl_display, flush) },
415 { __DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer) },
416 { __DRI_IMAGE, 1, offsetof(struct dri2_egl_display, image) },
417 { NULL, 0, 0 }
418 };
419
420 static const struct dri2_extension_match swrast_driver_extensions[] = {
421 { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
422 { __DRI_SWRAST, 2, offsetof(struct dri2_egl_display, swrast) },
423 { NULL, 0, 0 }
424 };
425
426 static const struct dri2_extension_match swrast_core_extensions[] = {
427 { __DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer) },
428 { NULL, 0, 0 }
429 };
430
431 static const struct dri2_extension_match optional_core_extensions[] = {
432 { __DRI2_ROBUSTNESS, 1, offsetof(struct dri2_egl_display, robustness) },
433 { __DRI2_NO_ERROR, 1, offsetof(struct dri2_egl_display, no_error) },
434 { __DRI2_CONFIG_QUERY, 1, offsetof(struct dri2_egl_display, config) },
435 { __DRI2_FENCE, 1, offsetof(struct dri2_egl_display, fence) },
436 { __DRI2_RENDERER_QUERY, 1, offsetof(struct dri2_egl_display, rendererQuery) },
437 { __DRI2_INTEROP, 1, offsetof(struct dri2_egl_display, interop) },
438 { NULL, 0, 0 }
439 };
440
441 static EGLBoolean
442 dri2_bind_extensions(struct dri2_egl_display *dri2_dpy,
443 const struct dri2_extension_match *matches,
444 const __DRIextension **extensions,
445 bool optional)
446 {
447 int ret = EGL_TRUE;
448 void *field;
449
450 for (int i = 0; extensions[i]; i++) {
451 _eglLog(_EGL_DEBUG, "found extension `%s'", extensions[i]->name);
452 for (int j = 0; matches[j].name; j++) {
453 if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
454 extensions[i]->version >= matches[j].version) {
455 field = ((char *) dri2_dpy + matches[j].offset);
456 *(const __DRIextension **) field = extensions[i];
457 _eglLog(_EGL_INFO, "found extension %s version %d",
458 extensions[i]->name, extensions[i]->version);
459 break;
460 }
461 }
462 }
463
464 for (int j = 0; matches[j].name; j++) {
465 field = ((char *) dri2_dpy + matches[j].offset);
466 if (*(const __DRIextension **) field == NULL) {
467 if (optional) {
468 _eglLog(_EGL_DEBUG, "did not find optional extension %s version %d",
469 matches[j].name, matches[j].version);
470 } else {
471 _eglLog(_EGL_WARNING, "did not find extension %s version %d",
472 matches[j].name, matches[j].version);
473 ret = EGL_FALSE;
474 }
475 }
476 }
477
478 return ret;
479 }
480
481 static const __DRIextension **
482 dri2_open_driver(_EGLDisplay *disp)
483 {
484 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
485 const __DRIextension **extensions = NULL;
486 char path[PATH_MAX], *search_paths, *next, *end;
487 char *get_extensions_name;
488 const __DRIextension **(*get_extensions)(void);
489
490 search_paths = NULL;
491 if (geteuid() == getuid()) {
492 /* don't allow setuid apps to use LIBGL_DRIVERS_PATH */
493 search_paths = getenv("LIBGL_DRIVERS_PATH");
494 }
495 if (search_paths == NULL)
496 search_paths = DEFAULT_DRIVER_DIR;
497
498 dri2_dpy->driver = NULL;
499 end = search_paths + strlen(search_paths);
500 for (char *p = search_paths; p < end; p = next + 1) {
501 int len;
502 next = strchr(p, ':');
503 if (next == NULL)
504 next = end;
505
506 len = next - p;
507 #if GLX_USE_TLS
508 snprintf(path, sizeof path,
509 "%.*s/tls/%s_dri.so", len, p, dri2_dpy->driver_name);
510 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
511 #endif
512 if (dri2_dpy->driver == NULL) {
513 snprintf(path, sizeof path,
514 "%.*s/%s_dri.so", len, p, dri2_dpy->driver_name);
515 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
516 if (dri2_dpy->driver == NULL)
517 _eglLog(_EGL_DEBUG, "failed to open %s: %s\n", path, dlerror());
518 }
519 /* not need continue to loop all paths once the driver is found */
520 if (dri2_dpy->driver != NULL)
521 break;
522 }
523
524 if (dri2_dpy->driver == NULL) {
525 _eglLog(_EGL_WARNING,
526 "DRI2: failed to open %s (search paths %s)",
527 dri2_dpy->driver_name, search_paths);
528 return NULL;
529 }
530
531 _eglLog(_EGL_DEBUG, "DRI2: dlopen(%s)", path);
532
533 get_extensions_name = loader_get_extensions_name(dri2_dpy->driver_name);
534 if (get_extensions_name) {
535 get_extensions = dlsym(dri2_dpy->driver, get_extensions_name);
536 if (get_extensions) {
537 extensions = get_extensions();
538 } else {
539 _eglLog(_EGL_DEBUG, "driver does not expose %s(): %s\n",
540 get_extensions_name, dlerror());
541 }
542 free(get_extensions_name);
543 }
544
545 if (!extensions)
546 extensions = dlsym(dri2_dpy->driver, __DRI_DRIVER_EXTENSIONS);
547 if (extensions == NULL) {
548 _eglLog(_EGL_WARNING,
549 "DRI2: driver exports no extensions (%s)", dlerror());
550 dlclose(dri2_dpy->driver);
551 }
552
553 return extensions;
554 }
555
556 EGLBoolean
557 dri2_load_driver_dri3(_EGLDisplay *disp)
558 {
559 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
560 const __DRIextension **extensions;
561
562 extensions = dri2_open_driver(disp);
563 if (!extensions)
564 return EGL_FALSE;
565
566 if (!dri2_bind_extensions(dri2_dpy, dri3_driver_extensions, extensions, false)) {
567 dlclose(dri2_dpy->driver);
568 return EGL_FALSE;
569 }
570 dri2_dpy->driver_extensions = extensions;
571
572 return EGL_TRUE;
573 }
574
575 EGLBoolean
576 dri2_load_driver(_EGLDisplay *disp)
577 {
578 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
579 const __DRIextension **extensions;
580
581 extensions = dri2_open_driver(disp);
582 if (!extensions)
583 return EGL_FALSE;
584
585 if (!dri2_bind_extensions(dri2_dpy, dri2_driver_extensions, extensions, false)) {
586 dlclose(dri2_dpy->driver);
587 return EGL_FALSE;
588 }
589 dri2_dpy->driver_extensions = extensions;
590
591 return EGL_TRUE;
592 }
593
594 EGLBoolean
595 dri2_load_driver_swrast(_EGLDisplay *disp)
596 {
597 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
598 const __DRIextension **extensions;
599
600 extensions = dri2_open_driver(disp);
601 if (!extensions)
602 return EGL_FALSE;
603
604 if (!dri2_bind_extensions(dri2_dpy, swrast_driver_extensions, extensions, false)) {
605 dlclose(dri2_dpy->driver);
606 return EGL_FALSE;
607 }
608 dri2_dpy->driver_extensions = extensions;
609
610 return EGL_TRUE;
611 }
612
613 static unsigned
614 dri2_renderer_query_integer(struct dri2_egl_display *dri2_dpy, int param)
615 {
616 const __DRI2rendererQueryExtension *rendererQuery = dri2_dpy->rendererQuery;
617 unsigned int value = 0;
618
619 if (!rendererQuery ||
620 rendererQuery->queryInteger(dri2_dpy->dri_screen, param, &value) == -1)
621 return 0;
622
623 return value;
624 }
625
626 void
627 dri2_setup_screen(_EGLDisplay *disp)
628 {
629 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
630 unsigned int api_mask;
631
632 if (dri2_dpy->image_driver) {
633 api_mask = dri2_dpy->image_driver->getAPIMask(dri2_dpy->dri_screen);
634 } else if (dri2_dpy->dri2) {
635 api_mask = dri2_dpy->dri2->getAPIMask(dri2_dpy->dri_screen);
636 } else {
637 assert(dri2_dpy->swrast);
638 api_mask = 1 << __DRI_API_OPENGL |
639 1 << __DRI_API_GLES |
640 1 << __DRI_API_GLES2 |
641 1 << __DRI_API_GLES3;
642 }
643
644 disp->ClientAPIs = 0;
645 if ((api_mask & (1 <<__DRI_API_OPENGL)) && _eglIsApiValid(EGL_OPENGL_API))
646 disp->ClientAPIs |= EGL_OPENGL_BIT;
647 if ((api_mask & (1 << __DRI_API_GLES)) && _eglIsApiValid(EGL_OPENGL_ES_API))
648 disp->ClientAPIs |= EGL_OPENGL_ES_BIT;
649 if ((api_mask & (1 << __DRI_API_GLES2)) && _eglIsApiValid(EGL_OPENGL_ES_API))
650 disp->ClientAPIs |= EGL_OPENGL_ES2_BIT;
651 if ((api_mask & (1 << __DRI_API_GLES3)) && _eglIsApiValid(EGL_OPENGL_ES_API))
652 disp->ClientAPIs |= EGL_OPENGL_ES3_BIT_KHR;
653
654 assert(dri2_dpy->image_driver || dri2_dpy->dri2 || dri2_dpy->swrast);
655 disp->Extensions.KHR_no_config_context = EGL_TRUE;
656 disp->Extensions.KHR_surfaceless_context = EGL_TRUE;
657
658 if (dri2_renderer_query_integer(dri2_dpy,
659 __DRI2_RENDERER_HAS_FRAMEBUFFER_SRGB))
660 disp->Extensions.KHR_gl_colorspace = EGL_TRUE;
661
662 if (dri2_dpy->image_driver ||
663 (dri2_dpy->dri2 && dri2_dpy->dri2->base.version >= 3) ||
664 (dri2_dpy->swrast && dri2_dpy->swrast->base.version >= 3)) {
665 disp->Extensions.KHR_create_context = EGL_TRUE;
666
667 if (dri2_dpy->robustness)
668 disp->Extensions.EXT_create_context_robustness = EGL_TRUE;
669 }
670
671 if (dri2_dpy->no_error)
672 disp->Extensions.KHR_create_context_no_error = EGL_TRUE;
673
674 if (dri2_dpy->fence) {
675 disp->Extensions.KHR_fence_sync = EGL_TRUE;
676 disp->Extensions.KHR_wait_sync = EGL_TRUE;
677 if (dri2_dpy->fence->get_fence_from_cl_event)
678 disp->Extensions.KHR_cl_event2 = EGL_TRUE;
679 if (dri2_dpy->fence->base.version >= 2) {
680 unsigned capabilities =
681 dri2_dpy->fence->get_capabilities(dri2_dpy->dri_screen);
682 disp->Extensions.ANDROID_native_fence_sync =
683 (capabilities & __DRI_FENCE_CAP_NATIVE_FD) != 0;
684 }
685 }
686
687 disp->Extensions.KHR_reusable_sync = EGL_TRUE;
688
689 if (dri2_dpy->image) {
690 if (dri2_dpy->image->base.version >= 10 &&
691 dri2_dpy->image->getCapabilities != NULL) {
692 int capabilities;
693
694 capabilities = dri2_dpy->image->getCapabilities(dri2_dpy->dri_screen);
695 disp->Extensions.MESA_drm_image = (capabilities & __DRI_IMAGE_CAP_GLOBAL_NAMES) != 0;
696
697 if (dri2_dpy->image->base.version >= 11)
698 disp->Extensions.MESA_image_dma_buf_export = EGL_TRUE;
699 } else {
700 disp->Extensions.MESA_drm_image = EGL_TRUE;
701 if (dri2_dpy->image->base.version >= 11)
702 disp->Extensions.MESA_image_dma_buf_export = EGL_TRUE;
703 }
704
705 disp->Extensions.KHR_image_base = EGL_TRUE;
706 disp->Extensions.KHR_gl_renderbuffer_image = EGL_TRUE;
707 if (dri2_dpy->image->base.version >= 5 &&
708 dri2_dpy->image->createImageFromTexture) {
709 disp->Extensions.KHR_gl_texture_2D_image = EGL_TRUE;
710 disp->Extensions.KHR_gl_texture_cubemap_image = EGL_TRUE;
711
712 if (dri2_renderer_query_integer(dri2_dpy,
713 __DRI2_RENDERER_HAS_TEXTURE_3D))
714 disp->Extensions.KHR_gl_texture_3D_image = EGL_TRUE;
715 }
716 #ifdef HAVE_LIBDRM
717 if (dri2_dpy->image->base.version >= 8 &&
718 dri2_dpy->image->createImageFromDmaBufs) {
719 disp->Extensions.EXT_image_dma_buf_import = EGL_TRUE;
720 }
721 if (dri2_dpy->image->base.version >= 15 &&
722 dri2_dpy->image->createImageFromDmaBufs2 &&
723 dri2_dpy->image->queryDmaBufFormats &&
724 dri2_dpy->image->queryDmaBufModifiers) {
725 disp->Extensions.EXT_image_dma_buf_import_modifiers = EGL_TRUE;
726 }
727 #endif
728 }
729 }
730
731 /* All platforms but DRM call this function to create the screen and populate
732 * the driver_configs. DRM inherits that information from its display - GBM.
733 */
734 EGLBoolean
735 dri2_create_screen(_EGLDisplay *disp)
736 {
737 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
738
739 if (dri2_dpy->image_driver) {
740 dri2_dpy->dri_screen =
741 dri2_dpy->image_driver->createNewScreen2(0, dri2_dpy->fd,
742 dri2_dpy->loader_extensions,
743 dri2_dpy->driver_extensions,
744 &dri2_dpy->driver_configs,
745 disp);
746 } else if (dri2_dpy->dri2) {
747 if (dri2_dpy->dri2->base.version >= 4) {
748 dri2_dpy->dri_screen =
749 dri2_dpy->dri2->createNewScreen2(0, dri2_dpy->fd,
750 dri2_dpy->loader_extensions,
751 dri2_dpy->driver_extensions,
752 &dri2_dpy->driver_configs, disp);
753 } else {
754 dri2_dpy->dri_screen =
755 dri2_dpy->dri2->createNewScreen(0, dri2_dpy->fd,
756 dri2_dpy->loader_extensions,
757 &dri2_dpy->driver_configs, disp);
758 }
759 } else {
760 assert(dri2_dpy->swrast);
761 if (dri2_dpy->swrast->base.version >= 4) {
762 dri2_dpy->dri_screen =
763 dri2_dpy->swrast->createNewScreen2(0, dri2_dpy->loader_extensions,
764 dri2_dpy->driver_extensions,
765 &dri2_dpy->driver_configs, disp);
766 } else {
767 dri2_dpy->dri_screen =
768 dri2_dpy->swrast->createNewScreen(0, dri2_dpy->loader_extensions,
769 &dri2_dpy->driver_configs, disp);
770 }
771 }
772
773 if (dri2_dpy->dri_screen == NULL) {
774 _eglLog(_EGL_WARNING, "DRI2: failed to create dri screen");
775 return EGL_FALSE;
776 }
777
778 dri2_dpy->own_dri_screen = true;
779 return EGL_TRUE;
780 }
781
782 EGLBoolean
783 dri2_setup_extensions(_EGLDisplay *disp)
784 {
785 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
786 const struct dri2_extension_match *mandatory_core_extensions;
787 const __DRIextension **extensions;
788
789 extensions = dri2_dpy->core->getExtensions(dri2_dpy->dri_screen);
790
791 if (dri2_dpy->image_driver || dri2_dpy->dri2)
792 mandatory_core_extensions = dri2_core_extensions;
793 else
794 mandatory_core_extensions = swrast_core_extensions;
795
796 if (!dri2_bind_extensions(dri2_dpy, mandatory_core_extensions, extensions, false))
797 return EGL_FALSE;
798
799 dri2_bind_extensions(dri2_dpy, optional_core_extensions, extensions, true);
800 return EGL_TRUE;
801 }
802
803 /**
804 * Called via eglInitialize(), GLX_drv->API.Initialize().
805 *
806 * This must be guaranteed to be called exactly once, even if eglInitialize is
807 * called many times (without a eglTerminate in between).
808 */
809 static EGLBoolean
810 dri2_initialize(_EGLDriver *drv, _EGLDisplay *disp)
811 {
812 EGLBoolean ret = EGL_FALSE;
813 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
814
815 /* In the case where the application calls eglMakeCurrent(context1),
816 * eglTerminate, then eglInitialize again (without a call to eglReleaseThread
817 * or eglMakeCurrent(NULL) before that), dri2_dpy structure is still
818 * initialized, as we need it to be able to free context1 correctly.
819 *
820 * It would probably be safest to forcibly release the display with
821 * dri2_display_release, to make sure the display is reinitialized correctly.
822 * However, the EGL spec states that we need to keep a reference to the
823 * current context (so we cannot call dri2_make_current(NULL)), and therefore
824 * we would leak context1 as we would be missing the old display connection
825 * to free it up correctly.
826 */
827 if (dri2_dpy) {
828 dri2_dpy->ref_count++;
829 return EGL_TRUE;
830 }
831
832 /* not until swrast_dri is supported */
833 if (disp->Options.UseFallback)
834 return EGL_FALSE;
835
836 /* Nothing to initialize for a test only display */
837 if (disp->Options.TestOnly)
838 return EGL_TRUE;
839
840 switch (disp->Platform) {
841 #ifdef HAVE_SURFACELESS_PLATFORM
842 case _EGL_PLATFORM_SURFACELESS:
843 ret = dri2_initialize_surfaceless(drv, disp);
844 break;
845 #endif
846 #ifdef HAVE_X11_PLATFORM
847 case _EGL_PLATFORM_X11:
848 ret = dri2_initialize_x11(drv, disp);
849 break;
850 #endif
851 #ifdef HAVE_DRM_PLATFORM
852 case _EGL_PLATFORM_DRM:
853 ret = dri2_initialize_drm(drv, disp);
854 break;
855 #endif
856 #ifdef HAVE_WAYLAND_PLATFORM
857 case _EGL_PLATFORM_WAYLAND:
858 ret = dri2_initialize_wayland(drv, disp);
859 break;
860 #endif
861 #ifdef HAVE_ANDROID_PLATFORM
862 case _EGL_PLATFORM_ANDROID:
863 ret = dri2_initialize_android(drv, disp);
864 break;
865 #endif
866 default:
867 _eglLog(_EGL_WARNING, "No EGL platform enabled.");
868 return EGL_FALSE;
869 }
870
871 if (ret) {
872 dri2_dpy = dri2_egl_display(disp);
873
874 if (!dri2_dpy) {
875 return EGL_FALSE;
876 }
877
878 dri2_dpy->ref_count++;
879 }
880
881 return ret;
882 }
883
884 /**
885 * Decrement display reference count, and free up display if necessary.
886 */
887 static void
888 dri2_display_release(_EGLDisplay *disp)
889 {
890 struct dri2_egl_display *dri2_dpy;
891
892 if (!disp)
893 return;
894
895 dri2_dpy = dri2_egl_display(disp);
896
897 assert(dri2_dpy->ref_count > 0);
898 dri2_dpy->ref_count--;
899
900 if (dri2_dpy->ref_count > 0)
901 return;
902
903 _eglCleanupDisplay(disp);
904 dri2_display_destroy(disp);
905 }
906
907 void
908 dri2_display_destroy(_EGLDisplay *disp)
909 {
910 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
911
912 if (dri2_dpy->own_dri_screen)
913 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
914 if (dri2_dpy->fd >= 0)
915 close(dri2_dpy->fd);
916 if (dri2_dpy->driver)
917 dlclose(dri2_dpy->driver);
918 free(dri2_dpy->driver_name);
919
920 #ifdef HAVE_WAYLAND_PLATFORM
921 free(dri2_dpy->device_name);
922 #endif
923
924 switch (disp->Platform) {
925 #ifdef HAVE_X11_PLATFORM
926 case _EGL_PLATFORM_X11:
927 if (dri2_dpy->own_device) {
928 xcb_disconnect(dri2_dpy->conn);
929 }
930 break;
931 #endif
932 #ifdef HAVE_DRM_PLATFORM
933 case _EGL_PLATFORM_DRM:
934 if (dri2_dpy->own_device) {
935 gbm_device_destroy(&dri2_dpy->gbm_dri->base);
936 }
937 break;
938 #endif
939 #ifdef HAVE_WAYLAND_PLATFORM
940 case _EGL_PLATFORM_WAYLAND:
941 if (dri2_dpy->wl_drm)
942 wl_drm_destroy(dri2_dpy->wl_drm);
943 if (dri2_dpy->wl_dmabuf)
944 zwp_linux_dmabuf_v1_destroy(dri2_dpy->wl_dmabuf);
945 if (dri2_dpy->wl_shm)
946 wl_shm_destroy(dri2_dpy->wl_shm);
947 wl_registry_destroy(dri2_dpy->wl_registry);
948 wl_event_queue_destroy(dri2_dpy->wl_queue);
949 wl_proxy_wrapper_destroy(dri2_dpy->wl_dpy_wrapper);
950 u_vector_finish(&dri2_dpy->wl_modifiers.argb8888);
951 u_vector_finish(&dri2_dpy->wl_modifiers.xrgb8888);
952 u_vector_finish(&dri2_dpy->wl_modifiers.rgb565);
953 if (dri2_dpy->own_device) {
954 wl_display_disconnect(dri2_dpy->wl_dpy);
955 }
956 break;
957 #endif
958 default:
959 break;
960 }
961
962 /* The drm platform does not create the screen/driver_configs but reuses
963 * the ones from the gbm device. As such the gbm itself is responsible
964 * for the cleanup.
965 */
966 if (disp->Platform != _EGL_PLATFORM_DRM && dri2_dpy->driver_configs) {
967 for (unsigned i = 0; dri2_dpy->driver_configs[i]; i++)
968 free((__DRIconfig *) dri2_dpy->driver_configs[i]);
969 free(dri2_dpy->driver_configs);
970 }
971 free(dri2_dpy);
972 disp->DriverData = NULL;
973 }
974
975 /**
976 * Called via eglTerminate(), drv->API.Terminate().
977 *
978 * This must be guaranteed to be called exactly once, even if eglTerminate is
979 * called many times (without a eglInitialize in between).
980 */
981 static EGLBoolean
982 dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp)
983 {
984 /* Release all non-current Context/Surfaces. */
985 _eglReleaseDisplayResources(drv, disp);
986
987 dri2_display_release(disp);
988
989 return EGL_TRUE;
990 }
991
992 /**
993 * Set the error code after a call to
994 * dri2_egl_display::dri2::createContextAttribs.
995 */
996 static void
997 dri2_create_context_attribs_error(int dri_error)
998 {
999 EGLint egl_error;
1000
1001 switch (dri_error) {
1002 case __DRI_CTX_ERROR_SUCCESS:
1003 return;
1004
1005 case __DRI_CTX_ERROR_NO_MEMORY:
1006 egl_error = EGL_BAD_ALLOC;
1007 break;
1008
1009 /* From the EGL_KHR_create_context spec, section "Errors":
1010 *
1011 * * If <config> does not support a client API context compatible
1012 * with the requested API major and minor version, [...] context flags,
1013 * and context reset notification behavior (for client API types where
1014 * these attributes are supported), then an EGL_BAD_MATCH error is
1015 * generated.
1016 *
1017 * * If an OpenGL ES context is requested and the values for
1018 * attributes EGL_CONTEXT_MAJOR_VERSION_KHR and
1019 * EGL_CONTEXT_MINOR_VERSION_KHR specify an OpenGL ES version that
1020 * is not defined, than an EGL_BAD_MATCH error is generated.
1021 *
1022 * * If an OpenGL context is requested, the requested version is
1023 * greater than 3.2, and the value for attribute
1024 * EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR has no bits set; has any
1025 * bits set other than EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR and
1026 * EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT_KHR; has more than
1027 * one of these bits set; or if the implementation does not support
1028 * the requested profile, then an EGL_BAD_MATCH error is generated.
1029 */
1030 case __DRI_CTX_ERROR_BAD_API:
1031 case __DRI_CTX_ERROR_BAD_VERSION:
1032 case __DRI_CTX_ERROR_BAD_FLAG:
1033 egl_error = EGL_BAD_MATCH;
1034 break;
1035
1036 /* From the EGL_KHR_create_context spec, section "Errors":
1037 *
1038 * * If an attribute name or attribute value in <attrib_list> is not
1039 * recognized (including unrecognized bits in bitmask attributes),
1040 * then an EGL_BAD_ATTRIBUTE error is generated."
1041 */
1042 case __DRI_CTX_ERROR_UNKNOWN_ATTRIBUTE:
1043 case __DRI_CTX_ERROR_UNKNOWN_FLAG:
1044 egl_error = EGL_BAD_ATTRIBUTE;
1045 break;
1046
1047 default:
1048 assert(0);
1049 egl_error = EGL_BAD_MATCH;
1050 break;
1051 }
1052
1053 _eglError(egl_error, "dri2_create_context");
1054 }
1055
1056 static bool
1057 dri2_fill_context_attribs(struct dri2_egl_context *dri2_ctx,
1058 struct dri2_egl_display *dri2_dpy,
1059 uint32_t *ctx_attribs,
1060 unsigned *num_attribs)
1061 {
1062 int pos = 0;
1063
1064 assert(*num_attribs >= 8);
1065
1066 ctx_attribs[pos++] = __DRI_CTX_ATTRIB_MAJOR_VERSION;
1067 ctx_attribs[pos++] = dri2_ctx->base.ClientMajorVersion;
1068 ctx_attribs[pos++] = __DRI_CTX_ATTRIB_MINOR_VERSION;
1069 ctx_attribs[pos++] = dri2_ctx->base.ClientMinorVersion;
1070
1071 if (dri2_ctx->base.Flags != 0 || dri2_ctx->base.NoError) {
1072 /* If the implementation doesn't support the __DRI2_ROBUSTNESS
1073 * extension, don't even try to send it the robust-access flag.
1074 * It may explode. Instead, generate the required EGL error here.
1075 */
1076 if ((dri2_ctx->base.Flags & EGL_CONTEXT_OPENGL_ROBUST_ACCESS_BIT_KHR) != 0
1077 && !dri2_dpy->robustness) {
1078 _eglError(EGL_BAD_MATCH, "eglCreateContext");
1079 return false;
1080 }
1081
1082 ctx_attribs[pos++] = __DRI_CTX_ATTRIB_FLAGS;
1083 ctx_attribs[pos++] = dri2_ctx->base.Flags |
1084 (dri2_ctx->base.NoError ? __DRI_CTX_FLAG_NO_ERROR : 0);
1085 }
1086
1087 if (dri2_ctx->base.ResetNotificationStrategy != EGL_NO_RESET_NOTIFICATION_KHR) {
1088 /* If the implementation doesn't support the __DRI2_ROBUSTNESS
1089 * extension, don't even try to send it a reset strategy. It may
1090 * explode. Instead, generate the required EGL error here.
1091 */
1092 if (!dri2_dpy->robustness) {
1093 _eglError(EGL_BAD_CONFIG, "eglCreateContext");
1094 return false;
1095 }
1096
1097 ctx_attribs[pos++] = __DRI_CTX_ATTRIB_RESET_STRATEGY;
1098 ctx_attribs[pos++] = __DRI_CTX_RESET_LOSE_CONTEXT;
1099 }
1100
1101 *num_attribs = pos;
1102
1103 return true;
1104 }
1105
1106 /**
1107 * Called via eglCreateContext(), drv->API.CreateContext().
1108 */
1109 static _EGLContext *
1110 dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf,
1111 _EGLContext *share_list, const EGLint *attrib_list)
1112 {
1113 struct dri2_egl_context *dri2_ctx;
1114 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1115 struct dri2_egl_context *dri2_ctx_shared = dri2_egl_context(share_list);
1116 __DRIcontext *shared =
1117 dri2_ctx_shared ? dri2_ctx_shared->dri_context : NULL;
1118 struct dri2_egl_config *dri2_config = dri2_egl_config(conf);
1119 const __DRIconfig *dri_config;
1120 int api;
1121
1122 (void) drv;
1123
1124 dri2_ctx = malloc(sizeof *dri2_ctx);
1125 if (!dri2_ctx) {
1126 _eglError(EGL_BAD_ALLOC, "eglCreateContext");
1127 return NULL;
1128 }
1129
1130 if (!_eglInitContext(&dri2_ctx->base, disp, conf, attrib_list))
1131 goto cleanup;
1132
1133 /* The EGL_EXT_create_context_robustness spec says:
1134 *
1135 * "Add to the eglCreateContext context creation errors: [...]
1136 *
1137 * * If the reset notification behavior of <share_context> and the
1138 * newly created context are different then an EGL_BAD_MATCH error is
1139 * generated."
1140 */
1141 if (share_list && share_list->ResetNotificationStrategy !=
1142 dri2_ctx->base.ResetNotificationStrategy) {
1143 _eglError(EGL_BAD_MATCH, "eglCreateContext");
1144 goto cleanup;
1145 }
1146
1147 /* The EGL_KHR_create_context_no_error spec says:
1148 *
1149 * "BAD_MATCH is generated if the value of EGL_CONTEXT_OPENGL_NO_ERROR_KHR
1150 * used to create <share_context> does not match the value of
1151 * EGL_CONTEXT_OPENGL_NO_ERROR_KHR for the context being created."
1152 */
1153 if (share_list && share_list->NoError != dri2_ctx->base.NoError) {
1154 _eglError(EGL_BAD_MATCH, "eglCreateContext");
1155 goto cleanup;
1156 }
1157
1158 switch (dri2_ctx->base.ClientAPI) {
1159 case EGL_OPENGL_ES_API:
1160 switch (dri2_ctx->base.ClientMajorVersion) {
1161 case 1:
1162 api = __DRI_API_GLES;
1163 break;
1164 case 2:
1165 api = __DRI_API_GLES2;
1166 break;
1167 case 3:
1168 api = __DRI_API_GLES3;
1169 break;
1170 default:
1171 _eglError(EGL_BAD_PARAMETER, "eglCreateContext");
1172 free(dri2_ctx);
1173 return NULL;
1174 }
1175 break;
1176 case EGL_OPENGL_API:
1177 if ((dri2_ctx->base.ClientMajorVersion >= 4
1178 || (dri2_ctx->base.ClientMajorVersion == 3
1179 && dri2_ctx->base.ClientMinorVersion >= 2))
1180 && dri2_ctx->base.Profile == EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR)
1181 api = __DRI_API_OPENGL_CORE;
1182 else
1183 api = __DRI_API_OPENGL;
1184 break;
1185 default:
1186 _eglError(EGL_BAD_PARAMETER, "eglCreateContext");
1187 free(dri2_ctx);
1188 return NULL;
1189 }
1190
1191 if (conf != NULL) {
1192 /* The config chosen here isn't necessarily
1193 * used for surfaces later.
1194 * A pixmap surface will use the single config.
1195 * This opportunity depends on disabling the
1196 * doubleBufferMode check in
1197 * src/mesa/main/context.c:check_compatible()
1198 */
1199 if (dri2_config->dri_config[1][0])
1200 dri_config = dri2_config->dri_config[1][0];
1201 else
1202 dri_config = dri2_config->dri_config[0][0];
1203
1204 /* EGL_WINDOW_BIT is set only when there is a double-buffered dri_config.
1205 * This makes sure the back buffer will always be used.
1206 */
1207 if (conf->SurfaceType & EGL_WINDOW_BIT)
1208 dri2_ctx->base.WindowRenderBuffer = EGL_BACK_BUFFER;
1209 }
1210 else
1211 dri_config = NULL;
1212
1213 if (dri2_dpy->image_driver) {
1214 unsigned error;
1215 unsigned num_attribs = 8;
1216 uint32_t ctx_attribs[8];
1217
1218 if (!dri2_fill_context_attribs(dri2_ctx, dri2_dpy, ctx_attribs,
1219 &num_attribs))
1220 goto cleanup;
1221
1222 dri2_ctx->dri_context =
1223 dri2_dpy->image_driver->createContextAttribs(dri2_dpy->dri_screen,
1224 api,
1225 dri_config,
1226 shared,
1227 num_attribs / 2,
1228 ctx_attribs,
1229 & error,
1230 dri2_ctx);
1231 dri2_create_context_attribs_error(error);
1232 } else if (dri2_dpy->dri2) {
1233 if (dri2_dpy->dri2->base.version >= 3) {
1234 unsigned error;
1235 unsigned num_attribs = 8;
1236 uint32_t ctx_attribs[8];
1237
1238 if (!dri2_fill_context_attribs(dri2_ctx, dri2_dpy, ctx_attribs,
1239 &num_attribs))
1240 goto cleanup;
1241
1242 dri2_ctx->dri_context =
1243 dri2_dpy->dri2->createContextAttribs(dri2_dpy->dri_screen,
1244 api,
1245 dri_config,
1246 shared,
1247 num_attribs / 2,
1248 ctx_attribs,
1249 & error,
1250 dri2_ctx);
1251 dri2_create_context_attribs_error(error);
1252 } else {
1253 dri2_ctx->dri_context =
1254 dri2_dpy->dri2->createNewContextForAPI(dri2_dpy->dri_screen,
1255 api,
1256 dri_config,
1257 shared,
1258 dri2_ctx);
1259 }
1260 } else {
1261 assert(dri2_dpy->swrast);
1262 if (dri2_dpy->swrast->base.version >= 3) {
1263 unsigned error;
1264 unsigned num_attribs = 8;
1265 uint32_t ctx_attribs[8];
1266
1267 if (!dri2_fill_context_attribs(dri2_ctx, dri2_dpy, ctx_attribs,
1268 &num_attribs))
1269 goto cleanup;
1270
1271 dri2_ctx->dri_context =
1272 dri2_dpy->swrast->createContextAttribs(dri2_dpy->dri_screen,
1273 api,
1274 dri_config,
1275 shared,
1276 num_attribs / 2,
1277 ctx_attribs,
1278 & error,
1279 dri2_ctx);
1280 dri2_create_context_attribs_error(error);
1281 } else {
1282 dri2_ctx->dri_context =
1283 dri2_dpy->swrast->createNewContextForAPI(dri2_dpy->dri_screen,
1284 api,
1285 dri_config,
1286 shared,
1287 dri2_ctx);
1288 }
1289 }
1290
1291 if (!dri2_ctx->dri_context)
1292 goto cleanup;
1293
1294 return &dri2_ctx->base;
1295
1296 cleanup:
1297 free(dri2_ctx);
1298 return NULL;
1299 }
1300
1301 /**
1302 * Called via eglDestroyContext(), drv->API.DestroyContext().
1303 */
1304 static EGLBoolean
1305 dri2_destroy_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLContext *ctx)
1306 {
1307 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1308 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1309
1310 if (_eglPutContext(ctx)) {
1311 dri2_dpy->core->destroyContext(dri2_ctx->dri_context);
1312 free(dri2_ctx);
1313 }
1314
1315 return EGL_TRUE;
1316 }
1317
1318 static EGLBoolean
1319 dri2_destroy_surface(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf)
1320 {
1321 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1322
1323 if (!_eglPutSurface(surf))
1324 return EGL_TRUE;
1325
1326 return dri2_dpy->vtbl->destroy_surface(drv, dpy, surf);
1327 }
1328
1329 /**
1330 * Called via eglMakeCurrent(), drv->API.MakeCurrent().
1331 */
1332 static EGLBoolean
1333 dri2_make_current(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *dsurf,
1334 _EGLSurface *rsurf, _EGLContext *ctx)
1335 {
1336 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
1337 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1338 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1339 _EGLContext *old_ctx;
1340 _EGLSurface *old_dsurf, *old_rsurf;
1341 _EGLSurface *tmp_dsurf, *tmp_rsurf;
1342 __DRIdrawable *ddraw, *rdraw;
1343 __DRIcontext *cctx;
1344 EGLBoolean unbind;
1345
1346 if (!dri2_dpy)
1347 return _eglError(EGL_NOT_INITIALIZED, "eglMakeCurrent");
1348
1349 /* make new bindings */
1350 if (!_eglBindContext(ctx, dsurf, rsurf, &old_ctx, &old_dsurf, &old_rsurf)) {
1351 /* _eglBindContext already sets the EGL error (in _eglCheckMakeCurrent) */
1352 return EGL_FALSE;
1353 }
1354
1355 /* flush before context switch */
1356 if (old_ctx)
1357 dri2_drv->glFlush();
1358
1359 ddraw = (dsurf) ? dri2_dpy->vtbl->get_dri_drawable(dsurf) : NULL;
1360 rdraw = (rsurf) ? dri2_dpy->vtbl->get_dri_drawable(rsurf) : NULL;
1361 cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL;
1362
1363 if (old_ctx) {
1364 __DRIcontext *old_cctx = dri2_egl_context(old_ctx)->dri_context;
1365 dri2_dpy->core->unbindContext(old_cctx);
1366 }
1367
1368 unbind = (cctx == NULL && ddraw == NULL && rdraw == NULL);
1369
1370 if (unbind || dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) {
1371 dri2_destroy_surface(drv, disp, old_dsurf);
1372 dri2_destroy_surface(drv, disp, old_rsurf);
1373
1374 if (!unbind)
1375 dri2_dpy->ref_count++;
1376 if (old_ctx) {
1377 EGLDisplay old_disp = _eglGetDisplayHandle(old_ctx->Resource.Display);
1378 dri2_destroy_context(drv, disp, old_ctx);
1379 dri2_display_release(old_disp);
1380 }
1381
1382 return EGL_TRUE;
1383 } else {
1384 /* undo the previous _eglBindContext */
1385 _eglBindContext(old_ctx, old_dsurf, old_rsurf, &ctx, &tmp_dsurf, &tmp_rsurf);
1386 assert(&dri2_ctx->base == ctx &&
1387 tmp_dsurf == dsurf &&
1388 tmp_rsurf == rsurf);
1389
1390 _eglPutSurface(dsurf);
1391 _eglPutSurface(rsurf);
1392 _eglPutContext(ctx);
1393
1394 _eglPutSurface(old_dsurf);
1395 _eglPutSurface(old_rsurf);
1396 _eglPutContext(old_ctx);
1397
1398 /* dri2_dpy->core->bindContext failed. We cannot tell for sure why, but
1399 * setting the error to EGL_BAD_MATCH is surely better than leaving it
1400 * as EGL_SUCCESS.
1401 */
1402 return _eglError(EGL_BAD_MATCH, "eglMakeCurrent");
1403 }
1404 }
1405
1406 __DRIdrawable *
1407 dri2_surface_get_dri_drawable(_EGLSurface *surf)
1408 {
1409 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1410
1411 return dri2_surf->dri_drawable;
1412 }
1413
1414 /*
1415 * Called from eglGetProcAddress() via drv->API.GetProcAddress().
1416 */
1417 static _EGLProc
1418 dri2_get_proc_address(_EGLDriver *drv, const char *procname)
1419 {
1420 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
1421
1422 return dri2_drv->get_proc_address(procname);
1423 }
1424
1425 static _EGLSurface*
1426 dri2_create_window_surface(_EGLDriver *drv, _EGLDisplay *dpy,
1427 _EGLConfig *conf, void *native_window,
1428 const EGLint *attrib_list)
1429 {
1430 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1431 return dri2_dpy->vtbl->create_window_surface(drv, dpy, conf, native_window,
1432 attrib_list);
1433 }
1434
1435 static _EGLSurface*
1436 dri2_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *dpy,
1437 _EGLConfig *conf, void *native_pixmap,
1438 const EGLint *attrib_list)
1439 {
1440 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1441 return dri2_dpy->vtbl->create_pixmap_surface(drv, dpy, conf, native_pixmap,
1442 attrib_list);
1443 }
1444
1445 static _EGLSurface*
1446 dri2_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *dpy,
1447 _EGLConfig *conf, const EGLint *attrib_list)
1448 {
1449 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1450 return dri2_dpy->vtbl->create_pbuffer_surface(drv, dpy, conf, attrib_list);
1451 }
1452
1453 static EGLBoolean
1454 dri2_swap_interval(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1455 EGLint interval)
1456 {
1457 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1458 if (!dri2_dpy->vtbl->swap_interval)
1459 return EGL_TRUE;
1460 return dri2_dpy->vtbl->swap_interval(drv, dpy, surf, interval);
1461 }
1462
1463 /**
1464 * Asks the client API to flush any rendering to the drawable so that we can
1465 * do our swapbuffers.
1466 */
1467 void
1468 dri2_flush_drawable_for_swapbuffers(_EGLDisplay *disp, _EGLSurface *draw)
1469 {
1470 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1471 __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(draw);
1472
1473 if (dri2_dpy->flush) {
1474 if (dri2_dpy->flush->base.version >= 4) {
1475 /* We know there's a current context because:
1476 *
1477 * "If surface is not bound to the calling thread’s current
1478 * context, an EGL_BAD_SURFACE error is generated."
1479 */
1480 _EGLContext *ctx = _eglGetCurrentContext();
1481 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1482
1483 /* From the EGL 1.4 spec (page 52):
1484 *
1485 * "The contents of ancillary buffers are always undefined
1486 * after calling eglSwapBuffers."
1487 */
1488 dri2_dpy->flush->flush_with_flags(dri2_ctx->dri_context,
1489 dri_drawable,
1490 __DRI2_FLUSH_DRAWABLE |
1491 __DRI2_FLUSH_INVALIDATE_ANCILLARY,
1492 __DRI2_THROTTLE_SWAPBUFFER);
1493 } else {
1494 dri2_dpy->flush->flush(dri_drawable);
1495 }
1496 }
1497 }
1498
1499 static EGLBoolean
1500 dri2_swap_buffers(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf)
1501 {
1502 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1503 return dri2_dpy->vtbl->swap_buffers(drv, dpy, surf);
1504 }
1505
1506 static EGLBoolean
1507 dri2_swap_buffers_with_damage(_EGLDriver *drv, _EGLDisplay *dpy,
1508 _EGLSurface *surf,
1509 const EGLint *rects, EGLint n_rects)
1510 {
1511 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1512 return dri2_dpy->vtbl->swap_buffers_with_damage(drv, dpy, surf,
1513 rects, n_rects);
1514 }
1515
1516 static EGLBoolean
1517 dri2_swap_buffers_region(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1518 EGLint numRects, const EGLint *rects)
1519 {
1520 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1521 return dri2_dpy->vtbl->swap_buffers_region(drv, dpy, surf, numRects, rects);
1522 }
1523
1524 static EGLBoolean
1525 dri2_set_damage_region(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1526 EGLint *rects, EGLint n_rects)
1527 {
1528 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1529 return dri2_dpy->vtbl->set_damage_region(drv, dpy, surf, rects, n_rects);
1530 }
1531
1532 static EGLBoolean
1533 dri2_post_sub_buffer(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1534 EGLint x, EGLint y, EGLint width, EGLint height)
1535 {
1536 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1537 return dri2_dpy->vtbl->post_sub_buffer(drv, dpy, surf, x, y, width, height);
1538 }
1539
1540 static EGLBoolean
1541 dri2_copy_buffers(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1542 void *native_pixmap_target)
1543 {
1544 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1545 return dri2_dpy->vtbl->copy_buffers(drv, dpy, surf, native_pixmap_target);
1546 }
1547
1548 static EGLint
1549 dri2_query_buffer_age(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf)
1550 {
1551 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1552 return dri2_dpy->vtbl->query_buffer_age(drv, dpy, surf);
1553 }
1554
1555 static EGLBoolean
1556 dri2_wait_client(_EGLDriver *drv, _EGLDisplay *disp, _EGLContext *ctx)
1557 {
1558 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1559 _EGLSurface *surf = ctx->DrawSurface;
1560 __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
1561
1562 (void) drv;
1563
1564 /* FIXME: If EGL allows frontbuffer rendering for window surfaces,
1565 * we need to copy fake to real here.*/
1566
1567 if (dri2_dpy->flush != NULL)
1568 dri2_dpy->flush->flush(dri_drawable);
1569
1570 return EGL_TRUE;
1571 }
1572
1573 static EGLBoolean
1574 dri2_wait_native(_EGLDriver *drv, _EGLDisplay *disp, EGLint engine)
1575 {
1576 (void) drv;
1577 (void) disp;
1578
1579 if (engine != EGL_CORE_NATIVE_ENGINE)
1580 return _eglError(EGL_BAD_PARAMETER, "eglWaitNative");
1581 /* glXWaitX(); */
1582
1583 return EGL_TRUE;
1584 }
1585
1586 static EGLBoolean
1587 dri2_bind_tex_image(_EGLDriver *drv,
1588 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1589 {
1590 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1591 struct dri2_egl_context *dri2_ctx;
1592 _EGLContext *ctx;
1593 GLint format, target;
1594 __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
1595
1596 ctx = _eglGetCurrentContext();
1597 dri2_ctx = dri2_egl_context(ctx);
1598
1599 if (!_eglBindTexImage(drv, disp, surf, buffer))
1600 return EGL_FALSE;
1601
1602 switch (surf->TextureFormat) {
1603 case EGL_TEXTURE_RGB:
1604 format = __DRI_TEXTURE_FORMAT_RGB;
1605 break;
1606 case EGL_TEXTURE_RGBA:
1607 format = __DRI_TEXTURE_FORMAT_RGBA;
1608 break;
1609 default:
1610 assert(!"Unexpected texture format in dri2_bind_tex_image()");
1611 format = __DRI_TEXTURE_FORMAT_RGBA;
1612 }
1613
1614 switch (surf->TextureTarget) {
1615 case EGL_TEXTURE_2D:
1616 target = GL_TEXTURE_2D;
1617 break;
1618 default:
1619 target = GL_TEXTURE_2D;
1620 assert(!"Unexpected texture target in dri2_bind_tex_image()");
1621 }
1622
1623 dri2_dpy->tex_buffer->setTexBuffer2(dri2_ctx->dri_context,
1624 target, format,
1625 dri_drawable);
1626
1627 return EGL_TRUE;
1628 }
1629
1630 static EGLBoolean
1631 dri2_release_tex_image(_EGLDriver *drv,
1632 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1633 {
1634 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1635 struct dri2_egl_context *dri2_ctx;
1636 _EGLContext *ctx;
1637 GLint target;
1638 __DRIdrawable *dri_drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
1639
1640 ctx = _eglGetCurrentContext();
1641 dri2_ctx = dri2_egl_context(ctx);
1642
1643 if (!_eglReleaseTexImage(drv, disp, surf, buffer))
1644 return EGL_FALSE;
1645
1646 switch (surf->TextureTarget) {
1647 case EGL_TEXTURE_2D:
1648 target = GL_TEXTURE_2D;
1649 break;
1650 default:
1651 assert(0);
1652 }
1653
1654 if (dri2_dpy->tex_buffer->base.version >= 3 &&
1655 dri2_dpy->tex_buffer->releaseTexBuffer != NULL) {
1656 dri2_dpy->tex_buffer->releaseTexBuffer(dri2_ctx->dri_context,
1657 target, dri_drawable);
1658 }
1659
1660 return EGL_TRUE;
1661 }
1662
1663 static _EGLImage*
1664 dri2_create_image(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx,
1665 EGLenum target, EGLClientBuffer buffer,
1666 const EGLint *attr_list)
1667 {
1668 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1669 return dri2_dpy->vtbl->create_image(drv, dpy, ctx, target, buffer,
1670 attr_list);
1671 }
1672
1673 static _EGLImage *
1674 dri2_create_image_from_dri(_EGLDisplay *disp, __DRIimage *dri_image)
1675 {
1676 struct dri2_egl_image *dri2_img;
1677
1678 if (dri_image == NULL) {
1679 _eglError(EGL_BAD_ALLOC, "dri2_create_image");
1680 return NULL;
1681 }
1682
1683 dri2_img = malloc(sizeof *dri2_img);
1684 if (!dri2_img) {
1685 _eglError(EGL_BAD_ALLOC, "dri2_create_image");
1686 return NULL;
1687 }
1688
1689 _eglInitImage(&dri2_img->base, disp);
1690
1691 dri2_img->dri_image = dri_image;
1692
1693 return &dri2_img->base;
1694 }
1695
1696 static _EGLImage *
1697 dri2_create_image_khr_renderbuffer(_EGLDisplay *disp, _EGLContext *ctx,
1698 EGLClientBuffer buffer,
1699 const EGLint *attr_list)
1700 {
1701 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1702 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1703 GLuint renderbuffer = (GLuint) (uintptr_t) buffer;
1704 __DRIimage *dri_image;
1705
1706 if (renderbuffer == 0) {
1707 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1708 return EGL_NO_IMAGE_KHR;
1709 }
1710
1711 if (!disp->Extensions.KHR_gl_renderbuffer_image) {
1712 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1713 return EGL_NO_IMAGE_KHR;
1714 }
1715
1716 dri_image =
1717 dri2_dpy->image->createImageFromRenderbuffer(dri2_ctx->dri_context,
1718 renderbuffer, NULL);
1719
1720 return dri2_create_image_from_dri(disp, dri_image);
1721 }
1722
1723 #ifdef HAVE_WAYLAND_PLATFORM
1724
1725 /* This structure describes how a wl_buffer maps to one or more
1726 * __DRIimages. A wl_drm_buffer stores the wl_drm format code and the
1727 * offsets and strides of the planes in the buffer. This table maps a
1728 * wl_drm format code to a description of the planes in the buffer
1729 * that lets us create a __DRIimage for each of the planes. */
1730
1731 static const struct wl_drm_components_descriptor {
1732 uint32_t dri_components;
1733 EGLint components;
1734 int nplanes;
1735 } wl_drm_components[] = {
1736 { __DRI_IMAGE_COMPONENTS_RGB, EGL_TEXTURE_RGB, 1 },
1737 { __DRI_IMAGE_COMPONENTS_RGBA, EGL_TEXTURE_RGBA, 1 },
1738 { __DRI_IMAGE_COMPONENTS_Y_U_V, EGL_TEXTURE_Y_U_V_WL, 3 },
1739 { __DRI_IMAGE_COMPONENTS_Y_UV, EGL_TEXTURE_Y_UV_WL, 2 },
1740 { __DRI_IMAGE_COMPONENTS_Y_XUXV, EGL_TEXTURE_Y_XUXV_WL, 2 },
1741 };
1742
1743 static _EGLImage *
1744 dri2_create_image_wayland_wl_buffer(_EGLDisplay *disp, _EGLContext *ctx,
1745 EGLClientBuffer _buffer,
1746 const EGLint *attr_list)
1747 {
1748 struct wl_drm_buffer *buffer;
1749 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1750 const struct wl_drm_components_descriptor *f;
1751 __DRIimage *dri_image;
1752 _EGLImageAttribs attrs;
1753 int32_t plane;
1754
1755 buffer = wayland_drm_buffer_get(dri2_dpy->wl_server_drm,
1756 (struct wl_resource *) _buffer);
1757 if (!buffer)
1758 return NULL;
1759
1760 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
1761 return NULL;
1762
1763 plane = attrs.PlaneWL;
1764 f = buffer->driver_format;
1765 if (plane < 0 || plane >= f->nplanes) {
1766 _eglError(EGL_BAD_PARAMETER,
1767 "dri2_create_image_wayland_wl_buffer (plane out of bounds)");
1768 return NULL;
1769 }
1770
1771 dri_image = dri2_dpy->image->fromPlanar(buffer->driver_buffer, plane, NULL);
1772
1773 if (dri_image == NULL) {
1774 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_wayland_wl_buffer");
1775 return NULL;
1776 }
1777
1778 return dri2_create_image_from_dri(disp, dri_image);
1779 }
1780 #endif
1781
1782 static EGLBoolean
1783 dri2_get_sync_values_chromium(_EGLDisplay *dpy, _EGLSurface *surf,
1784 EGLuint64KHR *ust, EGLuint64KHR *msc,
1785 EGLuint64KHR *sbc)
1786 {
1787 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1788 return dri2_dpy->vtbl->get_sync_values(dpy, surf, ust, msc, sbc);
1789 }
1790
1791 /**
1792 * Set the error code after a call to
1793 * dri2_egl_image::dri_image::createImageFromTexture.
1794 */
1795 static void
1796 dri2_create_image_khr_texture_error(int dri_error)
1797 {
1798 EGLint egl_error;
1799
1800 switch (dri_error) {
1801 case __DRI_IMAGE_ERROR_SUCCESS:
1802 return;
1803
1804 case __DRI_IMAGE_ERROR_BAD_ALLOC:
1805 egl_error = EGL_BAD_ALLOC;
1806 break;
1807
1808 case __DRI_IMAGE_ERROR_BAD_MATCH:
1809 egl_error = EGL_BAD_MATCH;
1810 break;
1811
1812 case __DRI_IMAGE_ERROR_BAD_PARAMETER:
1813 egl_error = EGL_BAD_PARAMETER;
1814 break;
1815
1816 case __DRI_IMAGE_ERROR_BAD_ACCESS:
1817 egl_error = EGL_BAD_ACCESS;
1818 break;
1819
1820 default:
1821 assert(0);
1822 egl_error = EGL_BAD_MATCH;
1823 break;
1824 }
1825
1826 _eglError(egl_error, "dri2_create_image_khr_texture");
1827 }
1828
1829 static _EGLImage *
1830 dri2_create_image_khr_texture(_EGLDisplay *disp, _EGLContext *ctx,
1831 EGLenum target,
1832 EGLClientBuffer buffer,
1833 const EGLint *attr_list)
1834 {
1835 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1836 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1837 struct dri2_egl_image *dri2_img;
1838 GLuint texture = (GLuint) (uintptr_t) buffer;
1839 _EGLImageAttribs attrs;
1840 GLuint depth;
1841 GLenum gl_target;
1842 unsigned error;
1843
1844 if (texture == 0) {
1845 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1846 return EGL_NO_IMAGE_KHR;
1847 }
1848
1849 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
1850 return EGL_NO_IMAGE_KHR;
1851
1852 switch (target) {
1853 case EGL_GL_TEXTURE_2D_KHR:
1854 if (!disp->Extensions.KHR_gl_texture_2D_image) {
1855 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1856 return EGL_NO_IMAGE_KHR;
1857 }
1858 depth = 0;
1859 gl_target = GL_TEXTURE_2D;
1860 break;
1861 case EGL_GL_TEXTURE_3D_KHR:
1862 if (!disp->Extensions.KHR_gl_texture_3D_image) {
1863 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1864 return EGL_NO_IMAGE_KHR;
1865 }
1866
1867 depth = attrs.GLTextureZOffset;
1868 gl_target = GL_TEXTURE_3D;
1869 break;
1870 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR:
1871 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR:
1872 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR:
1873 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR:
1874 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR:
1875 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR:
1876 if (!disp->Extensions.KHR_gl_texture_cubemap_image) {
1877 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1878 return EGL_NO_IMAGE_KHR;
1879 }
1880
1881 depth = target - EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR;
1882 gl_target = GL_TEXTURE_CUBE_MAP;
1883 break;
1884 default:
1885 unreachable("Unexpected target in dri2_create_image_khr_texture()");
1886 return EGL_NO_IMAGE_KHR;
1887 }
1888
1889 dri2_img = malloc(sizeof *dri2_img);
1890 if (!dri2_img) {
1891 _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
1892 return EGL_NO_IMAGE_KHR;
1893 }
1894
1895 _eglInitImage(&dri2_img->base, disp);
1896
1897 dri2_img->dri_image =
1898 dri2_dpy->image->createImageFromTexture(dri2_ctx->dri_context,
1899 gl_target,
1900 texture,
1901 depth,
1902 attrs.GLTextureLevel,
1903 &error,
1904 dri2_img);
1905 dri2_create_image_khr_texture_error(error);
1906
1907 if (!dri2_img->dri_image) {
1908 free(dri2_img);
1909 return EGL_NO_IMAGE_KHR;
1910 }
1911 return &dri2_img->base;
1912 }
1913
1914 static EGLBoolean
1915 dri2_query_surface(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf,
1916 EGLint attribute, EGLint *value)
1917 {
1918 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1919 if (!dri2_dpy->vtbl->query_surface)
1920 return _eglQuerySurface(drv, dpy, surf, attribute, value);
1921 return dri2_dpy->vtbl->query_surface(drv, dpy, surf, attribute, value);
1922 }
1923
1924 static struct wl_buffer*
1925 dri2_create_wayland_buffer_from_image(_EGLDriver *drv, _EGLDisplay *dpy,
1926 _EGLImage *img)
1927 {
1928 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
1929 return dri2_dpy->vtbl->create_wayland_buffer_from_image(drv, dpy, img);
1930 }
1931
1932 #ifdef HAVE_LIBDRM
1933 static _EGLImage *
1934 dri2_create_image_mesa_drm_buffer(_EGLDisplay *disp, _EGLContext *ctx,
1935 EGLClientBuffer buffer, const EGLint *attr_list)
1936 {
1937 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1938 EGLint format, name, pitch;
1939 _EGLImageAttribs attrs;
1940 __DRIimage *dri_image;
1941
1942 name = (EGLint) (uintptr_t) buffer;
1943
1944 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
1945 return NULL;
1946
1947 if (attrs.Width <= 0 || attrs.Height <= 0 ||
1948 attrs.DRMBufferStrideMESA <= 0) {
1949 _eglError(EGL_BAD_PARAMETER,
1950 "bad width, height or stride");
1951 return NULL;
1952 }
1953
1954 switch (attrs.DRMBufferFormatMESA) {
1955 case EGL_DRM_BUFFER_FORMAT_ARGB32_MESA:
1956 format = __DRI_IMAGE_FORMAT_ARGB8888;
1957 pitch = attrs.DRMBufferStrideMESA;
1958 break;
1959 default:
1960 _eglError(EGL_BAD_PARAMETER,
1961 "dri2_create_image_khr: unsupported pixmap depth");
1962 return NULL;
1963 }
1964
1965 dri_image =
1966 dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
1967 attrs.Width,
1968 attrs.Height,
1969 format,
1970 name,
1971 pitch,
1972 NULL);
1973
1974 return dri2_create_image_from_dri(disp, dri_image);
1975 }
1976
1977 static EGLBoolean
1978 dri2_check_dma_buf_attribs(const _EGLImageAttribs *attrs)
1979 {
1980 /**
1981 * The spec says:
1982 *
1983 * "Required attributes and their values are as follows:
1984 *
1985 * * EGL_WIDTH & EGL_HEIGHT: The logical dimensions of the buffer in pixels
1986 *
1987 * * EGL_LINUX_DRM_FOURCC_EXT: The pixel format of the buffer, as specified
1988 * by drm_fourcc.h and used as the pixel_format parameter of the
1989 * drm_mode_fb_cmd2 ioctl."
1990 *
1991 * and
1992 *
1993 * "* If <target> is EGL_LINUX_DMA_BUF_EXT, and the list of attributes is
1994 * incomplete, EGL_BAD_PARAMETER is generated."
1995 */
1996 if (attrs->Width <= 0 || attrs->Height <= 0 ||
1997 !attrs->DMABufFourCC.IsPresent)
1998 return _eglError(EGL_BAD_PARAMETER, "attribute(s) missing");
1999
2000 /**
2001 * Also:
2002 *
2003 * "If <target> is EGL_LINUX_DMA_BUF_EXT and one or more of the values
2004 * specified for a plane's pitch or offset isn't supported by EGL,
2005 * EGL_BAD_ACCESS is generated."
2006 */
2007 for (unsigned i = 0; i < ARRAY_SIZE(attrs->DMABufPlanePitches); ++i) {
2008 if (attrs->DMABufPlanePitches[i].IsPresent &&
2009 attrs->DMABufPlanePitches[i].Value <= 0)
2010 return _eglError(EGL_BAD_ACCESS, "invalid pitch");
2011 }
2012
2013 /**
2014 * If <target> is EGL_LINUX_DMA_BUF_EXT, both or neither of the following
2015 * attribute values may be given.
2016 *
2017 * This is referring to EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT and
2018 * EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT, and the same for other planes.
2019 */
2020 for (unsigned i = 0; i < DMA_BUF_MAX_PLANES; ++i) {
2021 if (attrs->DMABufPlaneModifiersLo[i].IsPresent !=
2022 attrs->DMABufPlaneModifiersHi[i].IsPresent)
2023 return _eglError(EGL_BAD_PARAMETER, "modifier attribute lo or hi missing");
2024 }
2025
2026 /* Although the EGL_EXT_image_dma_buf_import_modifiers spec doesn't
2027 * mandate it, we only accept the same modifier across all planes. */
2028 for (unsigned i = 1; i < DMA_BUF_MAX_PLANES; ++i) {
2029 if (attrs->DMABufPlaneFds[i].IsPresent) {
2030 if ((attrs->DMABufPlaneModifiersLo[0].IsPresent !=
2031 attrs->DMABufPlaneModifiersLo[i].IsPresent) ||
2032 (attrs->DMABufPlaneModifiersLo[0].Value !=
2033 attrs->DMABufPlaneModifiersLo[i].Value) ||
2034 (attrs->DMABufPlaneModifiersHi[0].Value !=
2035 attrs->DMABufPlaneModifiersHi[i].Value))
2036 return _eglError(EGL_BAD_PARAMETER, "modifier attributes not equal");
2037 }
2038 }
2039
2040 return EGL_TRUE;
2041 }
2042
2043 /* Returns the total number of file descriptors. Zero indicates an error. */
2044 static unsigned
2045 dri2_check_dma_buf_format(const _EGLImageAttribs *attrs)
2046 {
2047 unsigned plane_n;
2048
2049 switch (attrs->DMABufFourCC.Value) {
2050 case DRM_FORMAT_R8:
2051 case DRM_FORMAT_RG88:
2052 case DRM_FORMAT_GR88:
2053 case DRM_FORMAT_R16:
2054 case DRM_FORMAT_GR1616:
2055 case DRM_FORMAT_RGB332:
2056 case DRM_FORMAT_BGR233:
2057 case DRM_FORMAT_XRGB4444:
2058 case DRM_FORMAT_XBGR4444:
2059 case DRM_FORMAT_RGBX4444:
2060 case DRM_FORMAT_BGRX4444:
2061 case DRM_FORMAT_ARGB4444:
2062 case DRM_FORMAT_ABGR4444:
2063 case DRM_FORMAT_RGBA4444:
2064 case DRM_FORMAT_BGRA4444:
2065 case DRM_FORMAT_XRGB1555:
2066 case DRM_FORMAT_XBGR1555:
2067 case DRM_FORMAT_RGBX5551:
2068 case DRM_FORMAT_BGRX5551:
2069 case DRM_FORMAT_ARGB1555:
2070 case DRM_FORMAT_ABGR1555:
2071 case DRM_FORMAT_RGBA5551:
2072 case DRM_FORMAT_BGRA5551:
2073 case DRM_FORMAT_RGB565:
2074 case DRM_FORMAT_BGR565:
2075 case DRM_FORMAT_RGB888:
2076 case DRM_FORMAT_BGR888:
2077 case DRM_FORMAT_XRGB8888:
2078 case DRM_FORMAT_XBGR8888:
2079 case DRM_FORMAT_RGBX8888:
2080 case DRM_FORMAT_BGRX8888:
2081 case DRM_FORMAT_ARGB8888:
2082 case DRM_FORMAT_ABGR8888:
2083 case DRM_FORMAT_RGBA8888:
2084 case DRM_FORMAT_BGRA8888:
2085 case DRM_FORMAT_XRGB2101010:
2086 case DRM_FORMAT_XBGR2101010:
2087 case DRM_FORMAT_RGBX1010102:
2088 case DRM_FORMAT_BGRX1010102:
2089 case DRM_FORMAT_ARGB2101010:
2090 case DRM_FORMAT_ABGR2101010:
2091 case DRM_FORMAT_RGBA1010102:
2092 case DRM_FORMAT_BGRA1010102:
2093 case DRM_FORMAT_YUYV:
2094 case DRM_FORMAT_YVYU:
2095 case DRM_FORMAT_UYVY:
2096 case DRM_FORMAT_VYUY:
2097 plane_n = 1;
2098 break;
2099 case DRM_FORMAT_NV12:
2100 case DRM_FORMAT_NV21:
2101 case DRM_FORMAT_NV16:
2102 case DRM_FORMAT_NV61:
2103 plane_n = 2;
2104 break;
2105 case DRM_FORMAT_YUV410:
2106 case DRM_FORMAT_YVU410:
2107 case DRM_FORMAT_YUV411:
2108 case DRM_FORMAT_YVU411:
2109 case DRM_FORMAT_YUV420:
2110 case DRM_FORMAT_YVU420:
2111 case DRM_FORMAT_YUV422:
2112 case DRM_FORMAT_YVU422:
2113 case DRM_FORMAT_YUV444:
2114 case DRM_FORMAT_YVU444:
2115 plane_n = 3;
2116 break;
2117 default:
2118 _eglError(EGL_BAD_ATTRIBUTE, "invalid format");
2119 return 0;
2120 }
2121
2122 /**
2123 * The spec says:
2124 *
2125 * "* If <target> is EGL_LINUX_DMA_BUF_EXT, and the list of attributes is
2126 * incomplete, EGL_BAD_PARAMETER is generated."
2127 */
2128 for (unsigned i = 0; i < plane_n; ++i) {
2129 if (!attrs->DMABufPlaneFds[i].IsPresent ||
2130 !attrs->DMABufPlaneOffsets[i].IsPresent ||
2131 !attrs->DMABufPlanePitches[i].IsPresent) {
2132 _eglError(EGL_BAD_PARAMETER, "plane attribute(s) missing");
2133 return 0;
2134 }
2135 }
2136
2137 /**
2138 * The spec also says:
2139 *
2140 * "If <target> is EGL_LINUX_DMA_BUF_EXT, and the EGL_LINUX_DRM_FOURCC_EXT
2141 * attribute indicates a single-plane format, EGL_BAD_ATTRIBUTE is
2142 * generated if any of the EGL_DMA_BUF_PLANE1_* or EGL_DMA_BUF_PLANE2_*
2143 * or EGL_DMA_BUF_PLANE3_* attributes are specified."
2144 */
2145 for (unsigned i = plane_n; i < DMA_BUF_MAX_PLANES; ++i) {
2146 if (attrs->DMABufPlaneFds[i].IsPresent ||
2147 attrs->DMABufPlaneOffsets[i].IsPresent ||
2148 attrs->DMABufPlanePitches[i].IsPresent ||
2149 attrs->DMABufPlaneModifiersLo[i].IsPresent ||
2150 attrs->DMABufPlaneModifiersHi[i].IsPresent) {
2151
2152 /**
2153 * The modifiers extension spec says:
2154 *
2155 * "Modifiers may modify any attribute of a buffer import, including
2156 * but not limited to adding extra planes to a format which
2157 * otherwise does not have those planes. As an example, a modifier
2158 * may add a plane for an external compression buffer to a
2159 * single-plane format. The exact meaning and effect of any
2160 * modifier is canonically defined by drm_fourcc.h, not as part of
2161 * this extension."
2162 */
2163 if (attrs->DMABufPlaneModifiersLo[i].IsPresent &&
2164 attrs->DMABufPlaneModifiersHi[i].IsPresent)
2165 continue;
2166
2167 _eglError(EGL_BAD_ATTRIBUTE, "too many plane attributes");
2168 return 0;
2169 }
2170 }
2171
2172 return plane_n;
2173 }
2174
2175 static EGLBoolean
2176 dri2_query_dma_buf_formats(_EGLDriver *drv, _EGLDisplay *disp,
2177 EGLint max, EGLint *formats, EGLint *count)
2178 {
2179 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2180 if (max < 0 || (max > 0 && formats == NULL))
2181 return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats");
2182
2183 if (dri2_dpy->image->base.version < 15 ||
2184 dri2_dpy->image->queryDmaBufFormats == NULL)
2185 return EGL_FALSE;
2186
2187 if (!dri2_dpy->image->queryDmaBufFormats(dri2_dpy->dri_screen, max,
2188 formats, count))
2189 return EGL_FALSE;
2190
2191 return EGL_TRUE;
2192 }
2193
2194 static EGLBoolean
2195 dri2_query_dma_buf_modifiers(_EGLDriver *drv, _EGLDisplay *disp, EGLint format,
2196 EGLint max, EGLuint64KHR *modifiers,
2197 EGLBoolean *external_only, EGLint *count)
2198 {
2199 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2200
2201 if (max < 0)
2202 return _eglError(EGL_BAD_PARAMETER, "invalid value for max count of formats");
2203
2204 if (max > 0 && modifiers == NULL)
2205 return _eglError(EGL_BAD_PARAMETER, "invalid modifiers array");
2206
2207 if (dri2_dpy->image->base.version < 15 ||
2208 dri2_dpy->image->queryDmaBufModifiers == NULL)
2209 return EGL_FALSE;
2210
2211 if (dri2_dpy->image->queryDmaBufModifiers(dri2_dpy->dri_screen, format,
2212 max, modifiers,
2213 (unsigned int *) external_only,
2214 count) == false)
2215 return _eglError(EGL_BAD_PARAMETER, "invalid format");
2216
2217 return EGL_TRUE;
2218 }
2219
2220 /**
2221 * The spec says:
2222 *
2223 * "If eglCreateImageKHR is successful for a EGL_LINUX_DMA_BUF_EXT target, the
2224 * EGL will take a reference to the dma_buf(s) which it will release at any
2225 * time while the EGLDisplay is initialized. It is the responsibility of the
2226 * application to close the dma_buf file descriptors."
2227 *
2228 * Therefore we must never close or otherwise modify the file descriptors.
2229 */
2230 _EGLImage *
2231 dri2_create_image_dma_buf(_EGLDisplay *disp, _EGLContext *ctx,
2232 EGLClientBuffer buffer, const EGLint *attr_list)
2233 {
2234 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2235 _EGLImage *res;
2236 _EGLImageAttribs attrs;
2237 __DRIimage *dri_image;
2238 unsigned num_fds;
2239 int fds[DMA_BUF_MAX_PLANES];
2240 int pitches[DMA_BUF_MAX_PLANES];
2241 int offsets[DMA_BUF_MAX_PLANES];
2242 uint64_t modifier;
2243 bool has_modifier = false;
2244 unsigned error;
2245
2246 /**
2247 * The spec says:
2248 *
2249 * ""* If <target> is EGL_LINUX_DMA_BUF_EXT and <buffer> is not NULL, the
2250 * error EGL_BAD_PARAMETER is generated."
2251 */
2252 if (buffer != NULL) {
2253 _eglError(EGL_BAD_PARAMETER, "buffer not NULL");
2254 return NULL;
2255 }
2256
2257 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2258 return NULL;
2259
2260 if (!dri2_check_dma_buf_attribs(&attrs))
2261 return NULL;
2262
2263 num_fds = dri2_check_dma_buf_format(&attrs);
2264 if (!num_fds)
2265 return NULL;
2266
2267 for (unsigned i = 0; i < num_fds; ++i) {
2268 fds[i] = attrs.DMABufPlaneFds[i].Value;
2269 pitches[i] = attrs.DMABufPlanePitches[i].Value;
2270 offsets[i] = attrs.DMABufPlaneOffsets[i].Value;
2271 }
2272
2273 /* dri2_check_dma_buf_attribs ensures that the modifier, if available,
2274 * will be present in attrs.DMABufPlaneModifiersLo[0] and
2275 * attrs.DMABufPlaneModifiersHi[0] */
2276 if (attrs.DMABufPlaneModifiersLo[0].IsPresent) {
2277 modifier = (uint64_t) attrs.DMABufPlaneModifiersHi[0].Value << 32;
2278 modifier |= (uint64_t) (attrs.DMABufPlaneModifiersLo[0].Value & 0xffffffff);
2279 has_modifier = true;
2280 }
2281
2282 if (has_modifier) {
2283 if (dri2_dpy->image->base.version < 15 ||
2284 dri2_dpy->image->createImageFromDmaBufs2 == NULL) {
2285 _eglError(EGL_BAD_MATCH, "unsupported dma_buf format modifier");
2286 return EGL_NO_IMAGE_KHR;
2287 }
2288 dri_image =
2289 dri2_dpy->image->createImageFromDmaBufs2(dri2_dpy->dri_screen,
2290 attrs.Width, attrs.Height, attrs.DMABufFourCC.Value,
2291 modifier, fds, num_fds, pitches, offsets,
2292 attrs.DMABufYuvColorSpaceHint.Value,
2293 attrs.DMABufSampleRangeHint.Value,
2294 attrs.DMABufChromaHorizontalSiting.Value,
2295 attrs.DMABufChromaVerticalSiting.Value,
2296 &error,
2297 NULL);
2298 }
2299 else {
2300 dri_image =
2301 dri2_dpy->image->createImageFromDmaBufs(dri2_dpy->dri_screen,
2302 attrs.Width, attrs.Height, attrs.DMABufFourCC.Value,
2303 fds, num_fds, pitches, offsets,
2304 attrs.DMABufYuvColorSpaceHint.Value,
2305 attrs.DMABufSampleRangeHint.Value,
2306 attrs.DMABufChromaHorizontalSiting.Value,
2307 attrs.DMABufChromaVerticalSiting.Value,
2308 &error,
2309 NULL);
2310 }
2311 dri2_create_image_khr_texture_error(error);
2312
2313 if (!dri_image)
2314 return EGL_NO_IMAGE_KHR;
2315
2316 res = dri2_create_image_from_dri(disp, dri_image);
2317
2318 return res;
2319 }
2320 static _EGLImage *
2321 dri2_create_drm_image_mesa(_EGLDriver *drv, _EGLDisplay *disp,
2322 const EGLint *attr_list)
2323 {
2324 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2325 struct dri2_egl_image *dri2_img;
2326 _EGLImageAttribs attrs;
2327 unsigned int dri_use, valid_mask;
2328 int format;
2329
2330 (void) drv;
2331
2332 if (!attr_list) {
2333 _eglError(EGL_BAD_PARAMETER, __func__);
2334 return EGL_NO_IMAGE_KHR;
2335 }
2336
2337 if (!_eglParseImageAttribList(&attrs, disp, attr_list))
2338 return EGL_NO_IMAGE_KHR;
2339
2340 if (attrs.Width <= 0 || attrs.Height <= 0) {
2341 _eglError(EGL_BAD_PARAMETER, __func__);
2342 return EGL_NO_IMAGE_KHR;
2343 }
2344
2345 switch (attrs.DRMBufferFormatMESA) {
2346 case EGL_DRM_BUFFER_FORMAT_ARGB32_MESA:
2347 format = __DRI_IMAGE_FORMAT_ARGB8888;
2348 break;
2349 default:
2350 _eglError(EGL_BAD_PARAMETER, __func__);
2351 return EGL_NO_IMAGE_KHR;
2352 }
2353
2354 valid_mask =
2355 EGL_DRM_BUFFER_USE_SCANOUT_MESA |
2356 EGL_DRM_BUFFER_USE_SHARE_MESA |
2357 EGL_DRM_BUFFER_USE_CURSOR_MESA;
2358 if (attrs.DRMBufferUseMESA & ~valid_mask) {
2359 _eglError(EGL_BAD_PARAMETER, __func__);
2360 return EGL_NO_IMAGE_KHR;
2361 }
2362
2363 dri_use = 0;
2364 if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_SHARE_MESA)
2365 dri_use |= __DRI_IMAGE_USE_SHARE;
2366 if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_SCANOUT_MESA)
2367 dri_use |= __DRI_IMAGE_USE_SCANOUT;
2368 if (attrs.DRMBufferUseMESA & EGL_DRM_BUFFER_USE_CURSOR_MESA)
2369 dri_use |= __DRI_IMAGE_USE_CURSOR;
2370
2371 dri2_img = malloc(sizeof *dri2_img);
2372 if (!dri2_img) {
2373 _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
2374 return EGL_NO_IMAGE_KHR;
2375 }
2376
2377 _eglInitImage(&dri2_img->base, disp);
2378
2379 dri2_img->dri_image =
2380 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
2381 attrs.Width, attrs.Height,
2382 format, dri_use, dri2_img);
2383 if (dri2_img->dri_image == NULL) {
2384 free(dri2_img);
2385 _eglError(EGL_BAD_ALLOC, "dri2_create_drm_image_mesa");
2386 return EGL_NO_IMAGE_KHR;
2387 }
2388
2389 return &dri2_img->base;
2390 }
2391
2392 static EGLBoolean
2393 dri2_export_drm_image_mesa(_EGLDriver *drv, _EGLDisplay *disp, _EGLImage *img,
2394 EGLint *name, EGLint *handle, EGLint *stride)
2395 {
2396 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2397 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
2398
2399 (void) drv;
2400
2401 if (name && !dri2_dpy->image->queryImage(dri2_img->dri_image,
2402 __DRI_IMAGE_ATTRIB_NAME, name))
2403 return _eglError(EGL_BAD_ALLOC, "dri2_export_drm_image_mesa");
2404
2405 if (handle)
2406 dri2_dpy->image->queryImage(dri2_img->dri_image,
2407 __DRI_IMAGE_ATTRIB_HANDLE, handle);
2408
2409 if (stride)
2410 dri2_dpy->image->queryImage(dri2_img->dri_image,
2411 __DRI_IMAGE_ATTRIB_STRIDE, stride);
2412
2413 return EGL_TRUE;
2414 }
2415
2416 static EGLBoolean
2417 dri2_export_dma_buf_image_query_mesa(_EGLDriver *drv, _EGLDisplay *disp,
2418 _EGLImage *img,
2419 EGLint *fourcc, EGLint *nplanes,
2420 EGLuint64KHR *modifiers)
2421 {
2422 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2423 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
2424
2425 (void) drv;
2426
2427
2428 if (nplanes)
2429 dri2_dpy->image->queryImage(dri2_img->dri_image,
2430 __DRI_IMAGE_ATTRIB_NUM_PLANES, nplanes);
2431 if (fourcc)
2432 dri2_dpy->image->queryImage(dri2_img->dri_image,
2433 __DRI_IMAGE_ATTRIB_FOURCC, fourcc);
2434
2435 if (modifiers)
2436 *modifiers = 0;
2437
2438 return EGL_TRUE;
2439 }
2440
2441 static EGLBoolean
2442 dri2_export_dma_buf_image_mesa(_EGLDriver *drv, _EGLDisplay *disp, _EGLImage *img,
2443 int *fds, EGLint *strides, EGLint *offsets)
2444 {
2445 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2446 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
2447
2448 (void) drv;
2449
2450 /* rework later to provide multiple fds/strides/offsets */
2451 if (fds)
2452 dri2_dpy->image->queryImage(dri2_img->dri_image,
2453 __DRI_IMAGE_ATTRIB_FD, fds);
2454
2455 if (strides)
2456 dri2_dpy->image->queryImage(dri2_img->dri_image,
2457 __DRI_IMAGE_ATTRIB_STRIDE, strides);
2458
2459 if (offsets) {
2460 int img_offset;
2461 bool ret = dri2_dpy->image->queryImage(dri2_img->dri_image,
2462 __DRI_IMAGE_ATTRIB_OFFSET, &img_offset);
2463 if (ret)
2464 offsets[0] = img_offset;
2465 else
2466 offsets[0] = 0;
2467 }
2468
2469 return EGL_TRUE;
2470 }
2471
2472 #endif
2473
2474 _EGLImage *
2475 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
2476 _EGLContext *ctx, EGLenum target,
2477 EGLClientBuffer buffer, const EGLint *attr_list)
2478 {
2479 (void) drv;
2480
2481 switch (target) {
2482 case EGL_GL_TEXTURE_2D_KHR:
2483 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_X_KHR:
2484 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X_KHR:
2485 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y_KHR:
2486 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_KHR:
2487 case EGL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z_KHR:
2488 case EGL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_KHR:
2489 case EGL_GL_TEXTURE_3D_KHR:
2490 return dri2_create_image_khr_texture(disp, ctx, target, buffer, attr_list);
2491 case EGL_GL_RENDERBUFFER_KHR:
2492 return dri2_create_image_khr_renderbuffer(disp, ctx, buffer, attr_list);
2493 #ifdef HAVE_LIBDRM
2494 case EGL_DRM_BUFFER_MESA:
2495 return dri2_create_image_mesa_drm_buffer(disp, ctx, buffer, attr_list);
2496 case EGL_LINUX_DMA_BUF_EXT:
2497 return dri2_create_image_dma_buf(disp, ctx, buffer, attr_list);
2498 #endif
2499 #ifdef HAVE_WAYLAND_PLATFORM
2500 case EGL_WAYLAND_BUFFER_WL:
2501 return dri2_create_image_wayland_wl_buffer(disp, ctx, buffer, attr_list);
2502 #endif
2503 default:
2504 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
2505 return EGL_NO_IMAGE_KHR;
2506 }
2507 }
2508
2509 static EGLBoolean
2510 dri2_destroy_image_khr(_EGLDriver *drv, _EGLDisplay *disp, _EGLImage *image)
2511 {
2512 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2513 struct dri2_egl_image *dri2_img = dri2_egl_image(image);
2514
2515 (void) drv;
2516
2517 dri2_dpy->image->destroyImage(dri2_img->dri_image);
2518 free(dri2_img);
2519
2520 return EGL_TRUE;
2521 }
2522
2523 #ifdef HAVE_WAYLAND_PLATFORM
2524
2525 static void
2526 dri2_wl_reference_buffer(void *user_data, uint32_t name, int fd,
2527 struct wl_drm_buffer *buffer)
2528 {
2529 _EGLDisplay *disp = user_data;
2530 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2531 __DRIimage *img;
2532 int dri_components = 0;
2533
2534 if (fd == -1)
2535 img = dri2_dpy->image->createImageFromNames(dri2_dpy->dri_screen,
2536 buffer->width,
2537 buffer->height,
2538 buffer->format,
2539 (int*)&name, 1,
2540 buffer->stride,
2541 buffer->offset,
2542 NULL);
2543 else
2544 img = dri2_dpy->image->createImageFromFds(dri2_dpy->dri_screen,
2545 buffer->width,
2546 buffer->height,
2547 buffer->format,
2548 &fd, 1,
2549 buffer->stride,
2550 buffer->offset,
2551 NULL);
2552
2553 if (img == NULL)
2554 return;
2555
2556 dri2_dpy->image->queryImage(img, __DRI_IMAGE_ATTRIB_COMPONENTS, &dri_components);
2557
2558 buffer->driver_format = NULL;
2559 for (int i = 0; i < ARRAY_SIZE(wl_drm_components); i++)
2560 if (wl_drm_components[i].dri_components == dri_components)
2561 buffer->driver_format = &wl_drm_components[i];
2562
2563 if (buffer->driver_format == NULL)
2564 dri2_dpy->image->destroyImage(img);
2565 else
2566 buffer->driver_buffer = img;
2567 }
2568
2569 static void
2570 dri2_wl_release_buffer(void *user_data, struct wl_drm_buffer *buffer)
2571 {
2572 _EGLDisplay *disp = user_data;
2573 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2574
2575 dri2_dpy->image->destroyImage(buffer->driver_buffer);
2576 }
2577
2578 static struct wayland_drm_callbacks wl_drm_callbacks = {
2579 .authenticate = NULL,
2580 .reference_buffer = dri2_wl_reference_buffer,
2581 .release_buffer = dri2_wl_release_buffer
2582 };
2583
2584 static EGLBoolean
2585 dri2_bind_wayland_display_wl(_EGLDriver *drv, _EGLDisplay *disp,
2586 struct wl_display *wl_dpy)
2587 {
2588 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2589 int flags = 0;
2590 uint64_t cap;
2591
2592 (void) drv;
2593
2594 if (dri2_dpy->wl_server_drm)
2595 return EGL_FALSE;
2596
2597 wl_drm_callbacks.authenticate =
2598 (int(*)(void *, uint32_t)) dri2_dpy->vtbl->authenticate;
2599
2600 if (drmGetCap(dri2_dpy->fd, DRM_CAP_PRIME, &cap) == 0 &&
2601 cap == (DRM_PRIME_CAP_IMPORT | DRM_PRIME_CAP_EXPORT) &&
2602 dri2_dpy->image->base.version >= 7 &&
2603 dri2_dpy->image->createImageFromFds != NULL)
2604 flags |= WAYLAND_DRM_PRIME;
2605
2606 dri2_dpy->wl_server_drm =
2607 wayland_drm_init(wl_dpy, dri2_dpy->device_name,
2608 &wl_drm_callbacks, disp, flags);
2609
2610 if (!dri2_dpy->wl_server_drm)
2611 return EGL_FALSE;
2612
2613 #ifdef HAVE_DRM_PLATFORM
2614 /* We have to share the wl_drm instance with gbm, so gbm can convert
2615 * wl_buffers to gbm bos. */
2616 if (dri2_dpy->gbm_dri)
2617 dri2_dpy->gbm_dri->wl_drm = dri2_dpy->wl_server_drm;
2618 #endif
2619
2620 return EGL_TRUE;
2621 }
2622
2623 static EGLBoolean
2624 dri2_unbind_wayland_display_wl(_EGLDriver *drv, _EGLDisplay *disp,
2625 struct wl_display *wl_dpy)
2626 {
2627 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2628
2629 (void) drv;
2630
2631 if (!dri2_dpy->wl_server_drm)
2632 return EGL_FALSE;
2633
2634 wayland_drm_uninit(dri2_dpy->wl_server_drm);
2635 dri2_dpy->wl_server_drm = NULL;
2636
2637 return EGL_TRUE;
2638 }
2639
2640 static EGLBoolean
2641 dri2_query_wayland_buffer_wl(_EGLDriver *drv, _EGLDisplay *disp,
2642 struct wl_resource *buffer_resource,
2643 EGLint attribute, EGLint *value)
2644 {
2645 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
2646 struct wl_drm_buffer *buffer;
2647 const struct wl_drm_components_descriptor *format;
2648
2649 buffer = wayland_drm_buffer_get(dri2_dpy->wl_server_drm, buffer_resource);
2650 if (!buffer)
2651 return EGL_FALSE;
2652
2653 format = buffer->driver_format;
2654 switch (attribute) {
2655 case EGL_TEXTURE_FORMAT:
2656 *value = format->components;
2657 return EGL_TRUE;
2658 case EGL_WIDTH:
2659 *value = buffer->width;
2660 return EGL_TRUE;
2661 case EGL_HEIGHT:
2662 *value = buffer->height;
2663 return EGL_TRUE;
2664 }
2665
2666 return EGL_FALSE;
2667 }
2668 #endif
2669
2670 static void
2671 dri2_egl_ref_sync(struct dri2_egl_sync *sync)
2672 {
2673 p_atomic_inc(&sync->refcount);
2674 }
2675
2676 static void
2677 dri2_egl_unref_sync(struct dri2_egl_display *dri2_dpy,
2678 struct dri2_egl_sync *dri2_sync)
2679 {
2680 if (p_atomic_dec_zero(&dri2_sync->refcount)) {
2681 switch (dri2_sync->base.Type) {
2682 case EGL_SYNC_REUSABLE_KHR:
2683 cnd_destroy(&dri2_sync->cond);
2684 break;
2685 case EGL_SYNC_NATIVE_FENCE_ANDROID:
2686 if (dri2_sync->base.SyncFd != EGL_NO_NATIVE_FENCE_FD_ANDROID)
2687 close(dri2_sync->base.SyncFd);
2688 break;
2689 default:
2690 break;
2691 }
2692
2693 if (dri2_sync->fence)
2694 dri2_dpy->fence->destroy_fence(dri2_dpy->dri_screen, dri2_sync->fence);
2695
2696 free(dri2_sync);
2697 }
2698 }
2699
2700 static _EGLSync *
2701 dri2_create_sync(_EGLDriver *drv, _EGLDisplay *dpy,
2702 EGLenum type, const EGLAttrib *attrib_list)
2703 {
2704 _EGLContext *ctx = _eglGetCurrentContext();
2705 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2706 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2707 struct dri2_egl_sync *dri2_sync;
2708 EGLint ret;
2709 pthread_condattr_t attr;
2710
2711 dri2_sync = calloc(1, sizeof(struct dri2_egl_sync));
2712 if (!dri2_sync) {
2713 _eglError(EGL_BAD_ALLOC, "eglCreateSyncKHR");
2714 return NULL;
2715 }
2716
2717 if (!_eglInitSync(&dri2_sync->base, dpy, type, attrib_list)) {
2718 free(dri2_sync);
2719 return NULL;
2720 }
2721
2722 switch (type) {
2723 case EGL_SYNC_FENCE_KHR:
2724 dri2_sync->fence = dri2_dpy->fence->create_fence(dri2_ctx->dri_context);
2725 if (!dri2_sync->fence) {
2726 /* Why did it fail? DRI doesn't return an error code, so we emit
2727 * a generic EGL error that doesn't communicate user error.
2728 */
2729 _eglError(EGL_BAD_ALLOC, "eglCreateSyncKHR");
2730 free(dri2_sync);
2731 return NULL;
2732 }
2733 break;
2734
2735 case EGL_SYNC_CL_EVENT_KHR:
2736 dri2_sync->fence = dri2_dpy->fence->get_fence_from_cl_event(
2737 dri2_dpy->dri_screen,
2738 dri2_sync->base.CLEvent);
2739 /* this can only happen if the cl_event passed in is invalid. */
2740 if (!dri2_sync->fence) {
2741 _eglError(EGL_BAD_ATTRIBUTE, "eglCreateSyncKHR");
2742 free(dri2_sync);
2743 return NULL;
2744 }
2745
2746 /* the initial status must be "signaled" if the cl_event is signaled */
2747 if (dri2_dpy->fence->client_wait_sync(dri2_ctx->dri_context,
2748 dri2_sync->fence, 0, 0))
2749 dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
2750 break;
2751
2752 case EGL_SYNC_REUSABLE_KHR:
2753 /* intialize attr */
2754 ret = pthread_condattr_init(&attr);
2755
2756 if (ret) {
2757 _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
2758 free(dri2_sync);
2759 return NULL;
2760 }
2761
2762 /* change clock attribute to CLOCK_MONOTONIC */
2763 ret = pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
2764
2765 if (ret) {
2766 _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
2767 free(dri2_sync);
2768 return NULL;
2769 }
2770
2771 ret = pthread_cond_init(&dri2_sync->cond, &attr);
2772
2773 if (ret) {
2774 _eglError(EGL_BAD_ACCESS, "eglCreateSyncKHR");
2775 free(dri2_sync);
2776 return NULL;
2777 }
2778
2779 /* initial status of reusable sync must be "unsignaled" */
2780 dri2_sync->base.SyncStatus = EGL_UNSIGNALED_KHR;
2781 break;
2782
2783 case EGL_SYNC_NATIVE_FENCE_ANDROID:
2784 if (dri2_dpy->fence->create_fence_fd) {
2785 dri2_sync->fence = dri2_dpy->fence->create_fence_fd(
2786 dri2_ctx->dri_context,
2787 dri2_sync->base.SyncFd);
2788 }
2789 if (!dri2_sync->fence) {
2790 _eglError(EGL_BAD_ATTRIBUTE, "eglCreateSyncKHR");
2791 free(dri2_sync);
2792 return NULL;
2793 }
2794 break;
2795 }
2796
2797 p_atomic_set(&dri2_sync->refcount, 1);
2798 return &dri2_sync->base;
2799 }
2800
2801 static EGLBoolean
2802 dri2_destroy_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync)
2803 {
2804 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2805 struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
2806 EGLint ret = EGL_TRUE;
2807 EGLint err;
2808
2809 /* if type of sync is EGL_SYNC_REUSABLE_KHR and it is not signaled yet,
2810 * then unlock all threads possibly blocked by the reusable sync before
2811 * destroying it.
2812 */
2813 if (dri2_sync->base.Type == EGL_SYNC_REUSABLE_KHR &&
2814 dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR) {
2815 dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
2816 /* unblock all threads currently blocked by sync */
2817 err = cnd_broadcast(&dri2_sync->cond);
2818
2819 if (err) {
2820 _eglError(EGL_BAD_ACCESS, "eglDestroySyncKHR");
2821 ret = EGL_FALSE;
2822 }
2823 }
2824
2825 dri2_egl_unref_sync(dri2_dpy, dri2_sync);
2826
2827 return ret;
2828 }
2829
2830 static EGLint
2831 dri2_dup_native_fence_fd(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync)
2832 {
2833 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2834 struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
2835
2836 assert(sync->Type == EGL_SYNC_NATIVE_FENCE_ANDROID);
2837
2838 if (sync->SyncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
2839 /* try to retrieve the actual native fence fd.. if rendering is
2840 * not flushed this will just return -1, aka NO_NATIVE_FENCE_FD:
2841 */
2842 sync->SyncFd = dri2_dpy->fence->get_fence_fd(dri2_dpy->dri_screen,
2843 dri2_sync->fence);
2844 }
2845
2846 if (sync->SyncFd == EGL_NO_NATIVE_FENCE_FD_ANDROID) {
2847 /* if native fence fd still not created, return an error: */
2848 _eglError(EGL_BAD_PARAMETER, "eglDupNativeFenceFDANDROID");
2849 return EGL_NO_NATIVE_FENCE_FD_ANDROID;
2850 }
2851
2852 return dup(sync->SyncFd);
2853 }
2854
2855 static EGLint
2856 dri2_client_wait_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,
2857 EGLint flags, EGLTime timeout)
2858 {
2859 _EGLContext *ctx = _eglGetCurrentContext();
2860 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
2861 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2862 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2863 struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
2864 unsigned wait_flags = 0;
2865
2866 /* timespecs for cnd_timedwait */
2867 struct timespec current;
2868 xtime expire;
2869
2870 EGLint ret = EGL_CONDITION_SATISFIED_KHR;
2871
2872 /* The EGL_KHR_fence_sync spec states:
2873 *
2874 * "If no context is current for the bound API,
2875 * the EGL_SYNC_FLUSH_COMMANDS_BIT_KHR bit is ignored.
2876 */
2877 if (dri2_ctx && flags & EGL_SYNC_FLUSH_COMMANDS_BIT_KHR)
2878 wait_flags |= __DRI2_FENCE_FLAG_FLUSH_COMMANDS;
2879
2880 /* the sync object should take a reference while waiting */
2881 dri2_egl_ref_sync(dri2_sync);
2882
2883 switch (sync->Type) {
2884 case EGL_SYNC_FENCE_KHR:
2885 case EGL_SYNC_NATIVE_FENCE_ANDROID:
2886 case EGL_SYNC_CL_EVENT_KHR:
2887 if (dri2_dpy->fence->client_wait_sync(dri2_ctx ? dri2_ctx->dri_context : NULL,
2888 dri2_sync->fence, wait_flags,
2889 timeout))
2890 dri2_sync->base.SyncStatus = EGL_SIGNALED_KHR;
2891 else
2892 ret = EGL_TIMEOUT_EXPIRED_KHR;
2893 break;
2894
2895 case EGL_SYNC_REUSABLE_KHR:
2896 if (dri2_ctx && dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR &&
2897 (flags & EGL_SYNC_FLUSH_COMMANDS_BIT_KHR)) {
2898 /* flush context if EGL_SYNC_FLUSH_COMMANDS_BIT_KHR is set */
2899 dri2_drv->glFlush();
2900 }
2901
2902 /* if timeout is EGL_FOREVER_KHR, it should wait without any timeout.*/
2903 if (timeout == EGL_FOREVER_KHR) {
2904 mtx_lock(&dri2_sync->mutex);
2905 cnd_wait(&dri2_sync->cond, &dri2_sync->mutex);
2906 mtx_unlock(&dri2_sync->mutex);
2907 } else {
2908 /* if reusable sync has not been yet signaled */
2909 if (dri2_sync->base.SyncStatus != EGL_SIGNALED_KHR) {
2910 clock_gettime(CLOCK_MONOTONIC, &current);
2911
2912 /* calculating when to expire */
2913 expire.nsec = timeout % 1000000000L;
2914 expire.sec = timeout / 1000000000L;
2915
2916 expire.nsec += current.tv_nsec;
2917 expire.sec += current.tv_sec;
2918
2919 /* expire.nsec now is a number between 0 and 1999999998 */
2920 if (expire.nsec > 999999999L) {
2921 expire.sec++;
2922 expire.nsec -= 1000000000L;
2923 }
2924
2925 mtx_lock(&dri2_sync->mutex);
2926 ret = cnd_timedwait(&dri2_sync->cond, &dri2_sync->mutex, &expire);
2927 mtx_unlock(&dri2_sync->mutex);
2928
2929 if (ret == thrd_busy) {
2930 if (dri2_sync->base.SyncStatus == EGL_UNSIGNALED_KHR) {
2931 ret = EGL_TIMEOUT_EXPIRED_KHR;
2932 } else {
2933 _eglError(EGL_BAD_ACCESS, "eglClientWaitSyncKHR");
2934 ret = EGL_FALSE;
2935 }
2936 }
2937 }
2938 }
2939 break;
2940 }
2941 dri2_egl_unref_sync(dri2_dpy, dri2_sync);
2942
2943 return ret;
2944 }
2945
2946 static EGLBoolean
2947 dri2_signal_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync,
2948 EGLenum mode)
2949 {
2950 struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
2951 EGLint ret;
2952
2953 if (sync->Type != EGL_SYNC_REUSABLE_KHR)
2954 return _eglError(EGL_BAD_MATCH, "eglSignalSyncKHR");
2955
2956 if (mode != EGL_SIGNALED_KHR && mode != EGL_UNSIGNALED_KHR)
2957 return _eglError(EGL_BAD_ATTRIBUTE, "eglSignalSyncKHR");
2958
2959 dri2_sync->base.SyncStatus = mode;
2960
2961 if (mode == EGL_SIGNALED_KHR) {
2962 ret = cnd_broadcast(&dri2_sync->cond);
2963
2964 /* fail to broadcast */
2965 if (ret)
2966 return _eglError(EGL_BAD_ACCESS, "eglSignalSyncKHR");
2967 }
2968
2969 return EGL_TRUE;
2970 }
2971
2972 static EGLint
2973 dri2_server_wait_sync(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSync *sync)
2974 {
2975 _EGLContext *ctx = _eglGetCurrentContext();
2976 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2977 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2978 struct dri2_egl_sync *dri2_sync = dri2_egl_sync(sync);
2979
2980 dri2_dpy->fence->server_wait_sync(dri2_ctx->dri_context,
2981 dri2_sync->fence, 0);
2982 return EGL_TRUE;
2983 }
2984
2985 static int
2986 dri2_interop_query_device_info(_EGLDisplay *dpy, _EGLContext *ctx,
2987 struct mesa_glinterop_device_info *out)
2988 {
2989 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
2990 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
2991
2992 if (!dri2_dpy->interop)
2993 return MESA_GLINTEROP_UNSUPPORTED;
2994
2995 return dri2_dpy->interop->query_device_info(dri2_ctx->dri_context, out);
2996 }
2997
2998 static int
2999 dri2_interop_export_object(_EGLDisplay *dpy, _EGLContext *ctx,
3000 struct mesa_glinterop_export_in *in,
3001 struct mesa_glinterop_export_out *out)
3002 {
3003 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy);
3004 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
3005
3006 if (!dri2_dpy->interop)
3007 return MESA_GLINTEROP_UNSUPPORTED;
3008
3009 return dri2_dpy->interop->export_object(dri2_ctx->dri_context, in, out);
3010 }
3011
3012 static void
3013 dri2_unload(_EGLDriver *drv)
3014 {
3015 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
3016
3017 dlclose(dri2_drv->handle);
3018 free(dri2_drv);
3019 }
3020
3021 static EGLBoolean
3022 dri2_load(_EGLDriver *drv)
3023 {
3024 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
3025 #ifdef HAVE_ANDROID_PLATFORM
3026 const char *libname = "libglapi.so";
3027 #elif defined(__APPLE__)
3028 const char *libname = "libglapi.0.dylib";
3029 #elif defined(__CYGWIN__)
3030 const char *libname = "cygglapi-0.dll";
3031 #else
3032 const char *libname = "libglapi.so.0";
3033 #endif
3034 void *handle;
3035
3036 /* RTLD_GLOBAL to make sure glapi symbols are visible to DRI drivers */
3037 handle = dlopen(libname, RTLD_LAZY | RTLD_GLOBAL);
3038 if (!handle) {
3039 _eglLog(_EGL_WARNING, "DRI2: failed to open glapi provider");
3040 goto no_handle;
3041 }
3042
3043 dri2_drv->get_proc_address = (_EGLProc (*)(const char *))
3044 dlsym(handle, "_glapi_get_proc_address");
3045
3046 /* if glapi is not available, loading DRI drivers will fail */
3047 if (!dri2_drv->get_proc_address) {
3048 _eglLog(_EGL_WARNING, "DRI2: failed to find _glapi_get_proc_address");
3049 goto no_symbol;
3050 }
3051
3052 dri2_drv->glFlush = (void (*)(void))
3053 dri2_drv->get_proc_address("glFlush");
3054
3055 /* if glFlush is not available things are horribly broken */
3056 if (!dri2_drv->glFlush) {
3057 _eglLog(_EGL_WARNING, "DRI2: failed to find glFlush entry point");
3058 goto no_symbol;
3059 }
3060
3061 dri2_drv->handle = handle;
3062 return EGL_TRUE;
3063
3064 no_symbol:
3065 dlclose(handle);
3066 no_handle:
3067 return EGL_FALSE;
3068 }
3069
3070 /**
3071 * This is the main entrypoint into the driver, called by libEGL.
3072 * Create a new _EGLDriver object and init its dispatch table.
3073 */
3074 _EGLDriver *
3075 _eglBuiltInDriverDRI2(const char *args)
3076 {
3077 struct dri2_egl_driver *dri2_drv;
3078
3079 (void) args;
3080
3081 dri2_drv = calloc(1, sizeof *dri2_drv);
3082 if (!dri2_drv)
3083 return NULL;
3084
3085 if (!dri2_load(&dri2_drv->base)) {
3086 free(dri2_drv);
3087 return NULL;
3088 }
3089
3090 _eglInitDriverFallbacks(&dri2_drv->base);
3091 dri2_drv->base.API.Initialize = dri2_initialize;
3092 dri2_drv->base.API.Terminate = dri2_terminate;
3093 dri2_drv->base.API.CreateContext = dri2_create_context;
3094 dri2_drv->base.API.DestroyContext = dri2_destroy_context;
3095 dri2_drv->base.API.MakeCurrent = dri2_make_current;
3096 dri2_drv->base.API.CreateWindowSurface = dri2_create_window_surface;
3097 dri2_drv->base.API.CreatePixmapSurface = dri2_create_pixmap_surface;
3098 dri2_drv->base.API.CreatePbufferSurface = dri2_create_pbuffer_surface;
3099 dri2_drv->base.API.DestroySurface = dri2_destroy_surface;
3100 dri2_drv->base.API.GetProcAddress = dri2_get_proc_address;
3101 dri2_drv->base.API.WaitClient = dri2_wait_client;
3102 dri2_drv->base.API.WaitNative = dri2_wait_native;
3103 dri2_drv->base.API.BindTexImage = dri2_bind_tex_image;
3104 dri2_drv->base.API.ReleaseTexImage = dri2_release_tex_image;
3105 dri2_drv->base.API.SwapInterval = dri2_swap_interval;
3106 dri2_drv->base.API.SwapBuffers = dri2_swap_buffers;
3107 dri2_drv->base.API.SwapBuffersWithDamageEXT = dri2_swap_buffers_with_damage;
3108 dri2_drv->base.API.SwapBuffersRegionNOK = dri2_swap_buffers_region;
3109 dri2_drv->base.API.SetDamageRegion = dri2_set_damage_region;
3110 dri2_drv->base.API.PostSubBufferNV = dri2_post_sub_buffer;
3111 dri2_drv->base.API.CopyBuffers = dri2_copy_buffers,
3112 dri2_drv->base.API.QueryBufferAge = dri2_query_buffer_age;
3113 dri2_drv->base.API.CreateImageKHR = dri2_create_image;
3114 dri2_drv->base.API.DestroyImageKHR = dri2_destroy_image_khr;
3115 dri2_drv->base.API.CreateWaylandBufferFromImageWL = dri2_create_wayland_buffer_from_image;
3116 dri2_drv->base.API.QuerySurface = dri2_query_surface;
3117 #ifdef HAVE_LIBDRM
3118 dri2_drv->base.API.CreateDRMImageMESA = dri2_create_drm_image_mesa;
3119 dri2_drv->base.API.ExportDRMImageMESA = dri2_export_drm_image_mesa;
3120 dri2_drv->base.API.ExportDMABUFImageQueryMESA = dri2_export_dma_buf_image_query_mesa;
3121 dri2_drv->base.API.ExportDMABUFImageMESA = dri2_export_dma_buf_image_mesa;
3122 dri2_drv->base.API.QueryDmaBufFormatsEXT = dri2_query_dma_buf_formats;
3123 dri2_drv->base.API.QueryDmaBufModifiersEXT = dri2_query_dma_buf_modifiers;
3124 #endif
3125 #ifdef HAVE_WAYLAND_PLATFORM
3126 dri2_drv->base.API.BindWaylandDisplayWL = dri2_bind_wayland_display_wl;
3127 dri2_drv->base.API.UnbindWaylandDisplayWL = dri2_unbind_wayland_display_wl;
3128 dri2_drv->base.API.QueryWaylandBufferWL = dri2_query_wayland_buffer_wl;
3129 #endif
3130 dri2_drv->base.API.GetSyncValuesCHROMIUM = dri2_get_sync_values_chromium;
3131 dri2_drv->base.API.CreateSyncKHR = dri2_create_sync;
3132 dri2_drv->base.API.ClientWaitSyncKHR = dri2_client_wait_sync;
3133 dri2_drv->base.API.SignalSyncKHR = dri2_signal_sync;
3134 dri2_drv->base.API.WaitSyncKHR = dri2_server_wait_sync;
3135 dri2_drv->base.API.DestroySyncKHR = dri2_destroy_sync;
3136 dri2_drv->base.API.GLInteropQueryDeviceInfo = dri2_interop_query_device_info;
3137 dri2_drv->base.API.GLInteropExportObject = dri2_interop_export_object;
3138 dri2_drv->base.API.DupNativeFenceFDANDROID = dri2_dup_native_fence_fd;
3139
3140 dri2_drv->base.Name = "DRI2";
3141 dri2_drv->base.Unload = dri2_unload;
3142
3143 return &dri2_drv->base;
3144 }