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