egl/wayland: don't populate dri2_dpy->dri2_loader_extension
[mesa.git] / src / egl / drivers / dri2 / platform_wayland.c
1 /*
2 * Copyright © 2011-2012 Intel Corporation
3 * Copyright © 2012 Collabora, Ltd.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Kristian Høgsberg <krh@bitplanet.net>
27 * Benjamin Franzke <benjaminfranzke@googlemail.com>
28 */
29
30 #include <stdint.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <limits.h>
34 #include <dlfcn.h>
35 #include <errno.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38 #include <xf86drm.h>
39 #include <sys/mman.h>
40
41 #include "egl_dri2.h"
42 #include "egl_dri2_fallbacks.h"
43 #include "loader.h"
44
45 #include <wayland-client.h>
46 #include "wayland-drm-client-protocol.h"
47
48 enum wl_drm_format_flags {
49 HAS_ARGB8888 = 1,
50 HAS_XRGB8888 = 2,
51 HAS_RGB565 = 4,
52 };
53
54 static EGLBoolean
55 dri2_wl_swap_interval(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
56 EGLint interval);
57
58 static void
59 sync_callback(void *data, struct wl_callback *callback, uint32_t serial)
60 {
61 int *done = data;
62
63 *done = 1;
64 wl_callback_destroy(callback);
65 }
66
67 static const struct wl_callback_listener sync_listener = {
68 .done = sync_callback
69 };
70
71 static int
72 roundtrip(struct dri2_egl_display *dri2_dpy)
73 {
74 struct wl_callback *callback;
75 int done = 0, ret = 0;
76
77 callback = wl_display_sync(dri2_dpy->wl_dpy);
78 wl_callback_add_listener(callback, &sync_listener, &done);
79 wl_proxy_set_queue((struct wl_proxy *) callback, dri2_dpy->wl_queue);
80 while (ret != -1 && !done)
81 ret = wl_display_dispatch_queue(dri2_dpy->wl_dpy, dri2_dpy->wl_queue);
82
83 if (!done)
84 wl_callback_destroy(callback);
85
86 return ret;
87 }
88
89 static void
90 wl_buffer_release(void *data, struct wl_buffer *buffer)
91 {
92 struct dri2_egl_surface *dri2_surf = data;
93 int i;
94
95 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); ++i)
96 if (dri2_surf->color_buffers[i].wl_buffer == buffer)
97 break;
98
99 if (i == ARRAY_SIZE(dri2_surf->color_buffers)) {
100 wl_buffer_destroy(buffer);
101 return;
102 }
103
104 dri2_surf->color_buffers[i].locked = 0;
105 }
106
107 static const struct wl_buffer_listener wl_buffer_listener = {
108 .release = wl_buffer_release
109 };
110
111 static void
112 resize_callback(struct wl_egl_window *wl_win, void *data)
113 {
114 struct dri2_egl_surface *dri2_surf = data;
115 struct dri2_egl_display *dri2_dpy =
116 dri2_egl_display(dri2_surf->base.Resource.Display);
117
118 (*dri2_dpy->flush->invalidate)(dri2_surf->dri_drawable);
119 }
120
121 /**
122 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
123 */
124 static _EGLSurface *
125 dri2_wl_create_surface(_EGLDriver *drv, _EGLDisplay *disp,
126 _EGLConfig *conf, void *native_window,
127 const EGLint *attrib_list)
128 {
129 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
130 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
131 struct wl_egl_window *window = native_window;
132 struct dri2_egl_surface *dri2_surf;
133 const __DRIconfig *config;
134
135 (void) drv;
136
137 dri2_surf = calloc(1, sizeof *dri2_surf);
138 if (!dri2_surf) {
139 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
140 return NULL;
141 }
142
143 if (!_eglInitSurface(&dri2_surf->base, disp, EGL_WINDOW_BIT, conf, attrib_list))
144 goto cleanup_surf;
145
146 if (conf->RedSize == 5)
147 dri2_surf->format = WL_DRM_FORMAT_RGB565;
148 else if (conf->AlphaSize == 0)
149 dri2_surf->format = WL_DRM_FORMAT_XRGB8888;
150 else
151 dri2_surf->format = WL_DRM_FORMAT_ARGB8888;
152
153 if (!window) {
154 _eglError(EGL_BAD_NATIVE_WINDOW, "dri2_create_surface");
155 goto cleanup_surf;
156 }
157
158 dri2_surf->wl_win = window;
159
160 dri2_surf->wl_win->private = dri2_surf;
161 dri2_surf->wl_win->resize_callback = resize_callback;
162
163 dri2_surf->base.Width = -1;
164 dri2_surf->base.Height = -1;
165
166 config = dri2_get_dri_config(dri2_conf, EGL_WINDOW_BIT,
167 dri2_surf->base.GLColorspace);
168
169 dri2_surf->dri_drawable =
170 (*dri2_dpy->dri2->createNewDrawable)(dri2_dpy->dri_screen, config,
171 dri2_surf);
172 if (dri2_surf->dri_drawable == NULL) {
173 _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
174 goto cleanup_surf;
175 }
176
177 return &dri2_surf->base;
178
179 cleanup_surf:
180 free(dri2_surf);
181
182 return NULL;
183 }
184
185 /**
186 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
187 */
188 static _EGLSurface *
189 dri2_wl_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
190 _EGLConfig *conf, void *native_window,
191 const EGLint *attrib_list)
192 {
193 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
194 _EGLSurface *surf;
195
196 surf = dri2_wl_create_surface(drv, disp, conf, native_window, attrib_list);
197
198 if (surf != NULL)
199 dri2_wl_swap_interval(drv, disp, surf, dri2_dpy->default_swap_interval);
200
201 return surf;
202 }
203
204 static _EGLSurface *
205 dri2_wl_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *disp,
206 _EGLConfig *conf, void *native_window,
207 const EGLint *attrib_list)
208 {
209 /* From the EGL_EXT_platform_wayland spec, version 3:
210 *
211 * It is not valid to call eglCreatePlatformPixmapSurfaceEXT with a <dpy>
212 * that belongs to Wayland. Any such call fails and generates
213 * EGL_BAD_PARAMETER.
214 */
215 _eglError(EGL_BAD_PARAMETER, "cannot create EGL pixmap surfaces on "
216 "Wayland");
217 return NULL;
218 }
219
220 /**
221 * Called via eglDestroySurface(), drv->API.DestroySurface().
222 */
223 static EGLBoolean
224 dri2_wl_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
225 {
226 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
227 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
228 int i;
229
230 (void) drv;
231
232 (*dri2_dpy->core->destroyDrawable)(dri2_surf->dri_drawable);
233
234 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
235 if (dri2_surf->color_buffers[i].wl_buffer)
236 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
237 if (dri2_surf->color_buffers[i].dri_image)
238 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
239 if (dri2_surf->color_buffers[i].linear_copy)
240 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
241 if (dri2_surf->color_buffers[i].data)
242 munmap(dri2_surf->color_buffers[i].data,
243 dri2_surf->color_buffers[i].data_size);
244 }
245
246 if (dri2_dpy->dri2) {
247 for (i = 0; i < __DRI_BUFFER_COUNT; i++)
248 if (dri2_surf->dri_buffers[i] &&
249 dri2_surf->dri_buffers[i]->attachment != __DRI_BUFFER_BACK_LEFT)
250 dri2_dpy->dri2->releaseBuffer(dri2_dpy->dri_screen,
251 dri2_surf->dri_buffers[i]);
252 }
253
254 if (dri2_surf->throttle_callback)
255 wl_callback_destroy(dri2_surf->throttle_callback);
256
257 dri2_surf->wl_win->private = NULL;
258 dri2_surf->wl_win->resize_callback = NULL;
259
260 free(surf);
261
262 return EGL_TRUE;
263 }
264
265 static void
266 dri2_wl_release_buffers(struct dri2_egl_surface *dri2_surf)
267 {
268 struct dri2_egl_display *dri2_dpy =
269 dri2_egl_display(dri2_surf->base.Resource.Display);
270 int i;
271
272 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
273 if (dri2_surf->color_buffers[i].wl_buffer &&
274 !dri2_surf->color_buffers[i].locked)
275 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
276 if (dri2_surf->color_buffers[i].dri_image)
277 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
278 if (dri2_surf->color_buffers[i].linear_copy)
279 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
280 if (dri2_surf->color_buffers[i].data)
281 munmap(dri2_surf->color_buffers[i].data,
282 dri2_surf->color_buffers[i].data_size);
283
284 dri2_surf->color_buffers[i].wl_buffer = NULL;
285 dri2_surf->color_buffers[i].dri_image = NULL;
286 dri2_surf->color_buffers[i].linear_copy = NULL;
287 dri2_surf->color_buffers[i].data = NULL;
288 dri2_surf->color_buffers[i].locked = 0;
289 }
290
291 if (dri2_dpy->dri2) {
292 for (i = 0; i < __DRI_BUFFER_COUNT; i++)
293 if (dri2_surf->dri_buffers[i] &&
294 dri2_surf->dri_buffers[i]->attachment != __DRI_BUFFER_BACK_LEFT)
295 dri2_dpy->dri2->releaseBuffer(dri2_dpy->dri_screen,
296 dri2_surf->dri_buffers[i]);
297 }
298 }
299
300 static int
301 get_back_bo(struct dri2_egl_surface *dri2_surf)
302 {
303 struct dri2_egl_display *dri2_dpy =
304 dri2_egl_display(dri2_surf->base.Resource.Display);
305 int i, use_flags;
306 unsigned int dri_image_format;
307
308 /* currently supports three WL DRM formats,
309 * WL_DRM_FORMAT_ARGB8888, WL_DRM_FORMAT_XRGB8888,
310 * and WL_DRM_FORMAT_RGB565
311 */
312 switch (dri2_surf->format) {
313 case WL_DRM_FORMAT_ARGB8888:
314 dri_image_format = __DRI_IMAGE_FORMAT_ARGB8888;
315 break;
316 case WL_DRM_FORMAT_XRGB8888:
317 dri_image_format = __DRI_IMAGE_FORMAT_XRGB8888;
318 break;
319 case WL_DRM_FORMAT_RGB565:
320 dri_image_format = __DRI_IMAGE_FORMAT_RGB565;
321 break;
322 default:
323 /* format is not supported */
324 return -1;
325 }
326
327 /* We always want to throttle to some event (either a frame callback or
328 * a sync request) after the commit so that we can be sure the
329 * compositor has had a chance to handle it and send us a release event
330 * before we look for a free buffer */
331 while (dri2_surf->throttle_callback != NULL)
332 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
333 dri2_dpy->wl_queue) == -1)
334 return -1;
335
336 if (dri2_surf->back == NULL) {
337 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
338 /* Get an unlocked buffer, preferrably one with a dri_buffer
339 * already allocated. */
340 if (dri2_surf->color_buffers[i].locked)
341 continue;
342 if (dri2_surf->back == NULL)
343 dri2_surf->back = &dri2_surf->color_buffers[i];
344 else if (dri2_surf->back->dri_image == NULL)
345 dri2_surf->back = &dri2_surf->color_buffers[i];
346 }
347 }
348
349 if (dri2_surf->back == NULL)
350 return -1;
351
352 use_flags = __DRI_IMAGE_USE_SHARE | __DRI_IMAGE_USE_BACKBUFFER;
353
354 if (dri2_dpy->is_different_gpu &&
355 dri2_surf->back->linear_copy == NULL) {
356 dri2_surf->back->linear_copy =
357 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
358 dri2_surf->base.Width,
359 dri2_surf->base.Height,
360 dri_image_format,
361 use_flags |
362 __DRI_IMAGE_USE_LINEAR,
363 NULL);
364 if (dri2_surf->back->linear_copy == NULL)
365 return -1;
366 }
367
368 if (dri2_surf->back->dri_image == NULL) {
369 dri2_surf->back->dri_image =
370 dri2_dpy->image->createImage(dri2_dpy->dri_screen,
371 dri2_surf->base.Width,
372 dri2_surf->base.Height,
373 dri_image_format,
374 dri2_dpy->is_different_gpu ?
375 0 : use_flags,
376 NULL);
377 dri2_surf->back->age = 0;
378 }
379 if (dri2_surf->back->dri_image == NULL)
380 return -1;
381
382 dri2_surf->back->locked = 1;
383
384 return 0;
385 }
386
387
388 static void
389 back_bo_to_dri_buffer(struct dri2_egl_surface *dri2_surf, __DRIbuffer *buffer)
390 {
391 struct dri2_egl_display *dri2_dpy =
392 dri2_egl_display(dri2_surf->base.Resource.Display);
393 __DRIimage *image;
394 int name, pitch;
395
396 image = dri2_surf->back->dri_image;
397
398 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
399 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
400
401 buffer->attachment = __DRI_BUFFER_BACK_LEFT;
402 buffer->name = name;
403 buffer->pitch = pitch;
404 buffer->cpp = 4;
405 buffer->flags = 0;
406 }
407
408 static int
409 get_aux_bo(struct dri2_egl_surface *dri2_surf,
410 unsigned int attachment, unsigned int format, __DRIbuffer *buffer)
411 {
412 struct dri2_egl_display *dri2_dpy =
413 dri2_egl_display(dri2_surf->base.Resource.Display);
414 __DRIbuffer *b = dri2_surf->dri_buffers[attachment];
415
416 if (b == NULL) {
417 b = dri2_dpy->dri2->allocateBuffer(dri2_dpy->dri_screen,
418 attachment, format,
419 dri2_surf->base.Width,
420 dri2_surf->base.Height);
421 dri2_surf->dri_buffers[attachment] = b;
422 }
423 if (b == NULL)
424 return -1;
425
426 memcpy(buffer, b, sizeof *buffer);
427
428 return 0;
429 }
430
431 static int
432 update_buffers(struct dri2_egl_surface *dri2_surf)
433 {
434 struct dri2_egl_display *dri2_dpy =
435 dri2_egl_display(dri2_surf->base.Resource.Display);
436 int i;
437
438 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
439 dri2_surf->base.Height != dri2_surf->wl_win->height) {
440
441 dri2_wl_release_buffers(dri2_surf);
442
443 dri2_surf->base.Width = dri2_surf->wl_win->width;
444 dri2_surf->base.Height = dri2_surf->wl_win->height;
445 dri2_surf->dx = dri2_surf->wl_win->dx;
446 dri2_surf->dy = dri2_surf->wl_win->dy;
447 }
448
449 if (get_back_bo(dri2_surf) < 0) {
450 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
451 return -1;
452 }
453
454 /* If we have an extra unlocked buffer at this point, we had to do triple
455 * buffering for a while, but now can go back to just double buffering.
456 * That means we can free any unlocked buffer now. */
457 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
458 if (!dri2_surf->color_buffers[i].locked &&
459 dri2_surf->color_buffers[i].wl_buffer) {
460 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
461 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].dri_image);
462 if (dri2_dpy->is_different_gpu)
463 dri2_dpy->image->destroyImage(dri2_surf->color_buffers[i].linear_copy);
464 dri2_surf->color_buffers[i].wl_buffer = NULL;
465 dri2_surf->color_buffers[i].dri_image = NULL;
466 dri2_surf->color_buffers[i].linear_copy = NULL;
467 }
468 }
469
470 return 0;
471 }
472
473 static __DRIbuffer *
474 dri2_wl_get_buffers_with_format(__DRIdrawable * driDrawable,
475 int *width, int *height,
476 unsigned int *attachments, int count,
477 int *out_count, void *loaderPrivate)
478 {
479 struct dri2_egl_surface *dri2_surf = loaderPrivate;
480 int i, j;
481
482 if (update_buffers(dri2_surf) < 0)
483 return NULL;
484
485 for (i = 0, j = 0; i < 2 * count; i += 2, j++) {
486 switch (attachments[i]) {
487 case __DRI_BUFFER_BACK_LEFT:
488 back_bo_to_dri_buffer(dri2_surf, &dri2_surf->buffers[j]);
489 break;
490 default:
491 if (get_aux_bo(dri2_surf, attachments[i], attachments[i + 1],
492 &dri2_surf->buffers[j]) < 0) {
493 _eglError(EGL_BAD_ALLOC, "failed to allocate aux buffer");
494 return NULL;
495 }
496 break;
497 }
498 }
499
500 *out_count = j;
501 if (j == 0)
502 return NULL;
503
504 *width = dri2_surf->base.Width;
505 *height = dri2_surf->base.Height;
506
507 return dri2_surf->buffers;
508 }
509
510 static __DRIbuffer *
511 dri2_wl_get_buffers(__DRIdrawable * driDrawable,
512 int *width, int *height,
513 unsigned int *attachments, int count,
514 int *out_count, void *loaderPrivate)
515 {
516 struct dri2_egl_surface *dri2_surf = loaderPrivate;
517 unsigned int *attachments_with_format;
518 __DRIbuffer *buffer;
519 unsigned int bpp;
520
521 int i;
522
523 switch (dri2_surf->format) {
524 case WL_DRM_FORMAT_ARGB8888:
525 case WL_DRM_FORMAT_XRGB8888:
526 bpp = 32;
527 break;
528 case WL_DRM_FORMAT_RGB565:
529 bpp = 16;
530 break;
531 default:
532 /* format is not supported */
533 return NULL;
534 }
535
536 attachments_with_format = calloc(count, 2 * sizeof(unsigned int));
537 if (!attachments_with_format) {
538 *out_count = 0;
539 return NULL;
540 }
541
542 for (i = 0; i < count; ++i) {
543 attachments_with_format[2*i] = attachments[i];
544 attachments_with_format[2*i + 1] = bpp;
545 }
546
547 buffer =
548 dri2_wl_get_buffers_with_format(driDrawable,
549 width, height,
550 attachments_with_format, count,
551 out_count, loaderPrivate);
552
553 free(attachments_with_format);
554
555 return buffer;
556 }
557
558 static int
559 image_get_buffers(__DRIdrawable *driDrawable,
560 unsigned int format,
561 uint32_t *stamp,
562 void *loaderPrivate,
563 uint32_t buffer_mask,
564 struct __DRIimageList *buffers)
565 {
566 struct dri2_egl_surface *dri2_surf = loaderPrivate;
567
568 if (update_buffers(dri2_surf) < 0)
569 return 0;
570
571 buffers->image_mask = __DRI_IMAGE_BUFFER_BACK;
572 buffers->back = dri2_surf->back->dri_image;
573
574 return 1;
575 }
576
577 static void
578 dri2_wl_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
579 {
580 (void) driDrawable;
581 (void) loaderPrivate;
582 }
583
584 static const __DRIdri2LoaderExtension dri2_loader_extension = {
585 .base = { __DRI_DRI2_LOADER, 3 },
586
587 .getBuffers = dri2_wl_get_buffers,
588 .flushFrontBuffer = dri2_wl_flush_front_buffer,
589 .getBuffersWithFormat = dri2_wl_get_buffers_with_format,
590 };
591
592 static const __DRIimageLoaderExtension image_loader_extension = {
593 .base = { __DRI_IMAGE_LOADER, 1 },
594
595 .getBuffers = image_get_buffers,
596 .flushFrontBuffer = dri2_wl_flush_front_buffer,
597 };
598
599 static void
600 wayland_throttle_callback(void *data,
601 struct wl_callback *callback,
602 uint32_t time)
603 {
604 struct dri2_egl_surface *dri2_surf = data;
605
606 dri2_surf->throttle_callback = NULL;
607 wl_callback_destroy(callback);
608 }
609
610 static const struct wl_callback_listener throttle_listener = {
611 .done = wayland_throttle_callback
612 };
613
614 static void
615 create_wl_buffer(struct dri2_egl_surface *dri2_surf)
616 {
617 struct dri2_egl_display *dri2_dpy =
618 dri2_egl_display(dri2_surf->base.Resource.Display);
619 __DRIimage *image;
620 int fd, stride, name;
621
622 if (dri2_surf->current->wl_buffer != NULL)
623 return;
624
625 if (dri2_dpy->is_different_gpu) {
626 image = dri2_surf->current->linear_copy;
627 } else {
628 image = dri2_surf->current->dri_image;
629 }
630 if (dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) {
631 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
632 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
633
634 dri2_surf->current->wl_buffer =
635 wl_drm_create_prime_buffer(dri2_dpy->wl_drm,
636 fd,
637 dri2_surf->base.Width,
638 dri2_surf->base.Height,
639 dri2_surf->format,
640 0, stride,
641 0, 0,
642 0, 0);
643 close(fd);
644 } else {
645 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
646 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
647
648 dri2_surf->current->wl_buffer =
649 wl_drm_create_buffer(dri2_dpy->wl_drm,
650 name,
651 dri2_surf->base.Width,
652 dri2_surf->base.Height,
653 stride,
654 dri2_surf->format);
655 }
656
657 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->current->wl_buffer,
658 dri2_dpy->wl_queue);
659 wl_buffer_add_listener(dri2_surf->current->wl_buffer,
660 &wl_buffer_listener, dri2_surf);
661 }
662
663 static EGLBoolean
664 try_damage_buffer(struct dri2_egl_surface *dri2_surf,
665 const EGLint *rects,
666 EGLint n_rects)
667 {
668 /* The WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION macro and
669 * wl_proxy_get_version() were both introduced in wayland 1.10.
670 * Instead of bumping our wayland dependency we just make this
671 * function conditional on the required 1.10 features, falling
672 * back to old (correct but suboptimal) behaviour for older
673 * wayland.
674 */
675 #ifdef WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION
676 int i;
677
678 if (wl_proxy_get_version((struct wl_proxy *) dri2_surf->wl_win->surface)
679 < WL_SURFACE_DAMAGE_BUFFER_SINCE_VERSION)
680 return EGL_FALSE;
681
682 for (i = 0; i < n_rects; i++) {
683 const int *rect = &rects[i * 4];
684
685 wl_surface_damage_buffer(dri2_surf->wl_win->surface,
686 rect[0],
687 dri2_surf->base.Height - rect[1] - rect[3],
688 rect[2], rect[3]);
689 }
690 return EGL_TRUE;
691 #endif
692 return EGL_FALSE;
693 }
694 /**
695 * Called via eglSwapBuffers(), drv->API.SwapBuffers().
696 */
697 static EGLBoolean
698 dri2_wl_swap_buffers_with_damage(_EGLDriver *drv,
699 _EGLDisplay *disp,
700 _EGLSurface *draw,
701 const EGLint *rects,
702 EGLint n_rects)
703 {
704 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
705 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
706 int i;
707
708 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++)
709 if (dri2_surf->color_buffers[i].age > 0)
710 dri2_surf->color_buffers[i].age++;
711
712 /* Make sure we have a back buffer in case we're swapping without ever
713 * rendering. */
714 if (get_back_bo(dri2_surf) < 0) {
715 _eglError(EGL_BAD_ALLOC, "dri2_swap_buffers");
716 return EGL_FALSE;
717 }
718
719 if (draw->SwapInterval > 0) {
720 dri2_surf->throttle_callback =
721 wl_surface_frame(dri2_surf->wl_win->surface);
722 wl_callback_add_listener(dri2_surf->throttle_callback,
723 &throttle_listener, dri2_surf);
724 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->throttle_callback,
725 dri2_dpy->wl_queue);
726 }
727
728 dri2_surf->back->age = 1;
729 dri2_surf->current = dri2_surf->back;
730 dri2_surf->back = NULL;
731
732 create_wl_buffer(dri2_surf);
733
734 wl_surface_attach(dri2_surf->wl_win->surface,
735 dri2_surf->current->wl_buffer,
736 dri2_surf->dx, dri2_surf->dy);
737
738 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
739 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
740 /* reset resize growing parameters */
741 dri2_surf->dx = 0;
742 dri2_surf->dy = 0;
743
744 /* If the compositor doesn't support damage_buffer, we deliberately
745 * ignore the damage region and post maximum damage, due to
746 * https://bugs.freedesktop.org/78190 */
747 if (!n_rects || !try_damage_buffer(dri2_surf, rects, n_rects))
748 wl_surface_damage(dri2_surf->wl_win->surface,
749 0, 0, INT32_MAX, INT32_MAX);
750
751 if (dri2_dpy->is_different_gpu) {
752 _EGLContext *ctx = _eglGetCurrentContext();
753 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
754 dri2_dpy->image->blitImage(dri2_ctx->dri_context,
755 dri2_surf->current->linear_copy,
756 dri2_surf->current->dri_image,
757 0, 0, dri2_surf->base.Width,
758 dri2_surf->base.Height,
759 0, 0, dri2_surf->base.Width,
760 dri2_surf->base.Height, 0);
761 }
762
763 dri2_flush_drawable_for_swapbuffers(disp, draw);
764 (*dri2_dpy->flush->invalidate)(dri2_surf->dri_drawable);
765
766 wl_surface_commit(dri2_surf->wl_win->surface);
767
768 /* If we're not waiting for a frame callback then we'll at least throttle
769 * to a sync callback so that we always give a chance for the compositor to
770 * handle the commit and send a release event before checking for a free
771 * buffer */
772 if (dri2_surf->throttle_callback == NULL) {
773 dri2_surf->throttle_callback = wl_display_sync(dri2_dpy->wl_dpy);
774 wl_callback_add_listener(dri2_surf->throttle_callback,
775 &throttle_listener, dri2_surf);
776 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->throttle_callback,
777 dri2_dpy->wl_queue);
778 }
779
780 wl_display_flush(dri2_dpy->wl_dpy);
781
782 return EGL_TRUE;
783 }
784
785 static EGLint
786 dri2_wl_query_buffer_age(_EGLDriver *drv,
787 _EGLDisplay *disp, _EGLSurface *surface)
788 {
789 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
790
791 if (get_back_bo(dri2_surf) < 0) {
792 _eglError(EGL_BAD_ALLOC, "dri2_query_buffer_age");
793 return 0;
794 }
795
796 return dri2_surf->back->age;
797 }
798
799 static EGLBoolean
800 dri2_wl_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
801 {
802 return dri2_wl_swap_buffers_with_damage (drv, disp, draw, NULL, 0);
803 }
804
805 static struct wl_buffer *
806 dri2_wl_create_wayland_buffer_from_image(_EGLDriver *drv,
807 _EGLDisplay *disp,
808 _EGLImage *img)
809 {
810 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
811 struct dri2_egl_image *dri2_img = dri2_egl_image(img);
812 __DRIimage *image = dri2_img->dri_image;
813 struct wl_buffer *buffer;
814 int width, height, format, pitch;
815 enum wl_drm_format wl_format;
816
817 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FORMAT, &format);
818
819 switch (format) {
820 case __DRI_IMAGE_FORMAT_ARGB8888:
821 if (!(dri2_dpy->formats & HAS_ARGB8888))
822 goto bad_format;
823 wl_format = WL_DRM_FORMAT_ARGB8888;
824 break;
825 case __DRI_IMAGE_FORMAT_XRGB8888:
826 if (!(dri2_dpy->formats & HAS_XRGB8888))
827 goto bad_format;
828 wl_format = WL_DRM_FORMAT_XRGB8888;
829 break;
830 default:
831 goto bad_format;
832 }
833
834 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_WIDTH, &width);
835 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_HEIGHT, &height);
836 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &pitch);
837
838 if (dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) {
839 int fd;
840
841 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
842
843 buffer =
844 wl_drm_create_prime_buffer(dri2_dpy->wl_drm,
845 fd,
846 width, height,
847 wl_format,
848 0, pitch,
849 0, 0,
850 0, 0);
851
852 close(fd);
853 } else {
854 int name;
855
856 dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_NAME, &name);
857
858 buffer =
859 wl_drm_create_buffer(dri2_dpy->wl_drm,
860 name,
861 width, height,
862 pitch,
863 wl_format);
864 }
865
866 /* The buffer object will have been created with our internal event queue
867 * because it is using the wl_drm object as a proxy factory. We want the
868 * buffer to be used by the application so we'll reset it to the display's
869 * default event queue */
870 if (buffer)
871 wl_proxy_set_queue((struct wl_proxy *) buffer, NULL);
872
873 return buffer;
874
875 bad_format:
876 _eglError(EGL_BAD_MATCH, "unsupported image format");
877 return NULL;
878 }
879
880 static int
881 dri2_wl_authenticate(_EGLDisplay *disp, uint32_t id)
882 {
883 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
884 int ret = 0;
885
886 if (dri2_dpy->is_render_node) {
887 _eglLog(_EGL_WARNING, "wayland-egl: client asks server to "
888 "authenticate for render-nodes");
889 return 0;
890 }
891 dri2_dpy->authenticated = 0;
892
893 wl_drm_authenticate(dri2_dpy->wl_drm, id);
894 if (roundtrip(dri2_dpy) < 0)
895 ret = -1;
896
897 if (!dri2_dpy->authenticated)
898 ret = -1;
899
900 /* reset authenticated */
901 dri2_dpy->authenticated = 1;
902
903 return ret;
904 }
905
906 static void
907 drm_handle_device(void *data, struct wl_drm *drm, const char *device)
908 {
909 struct dri2_egl_display *dri2_dpy = data;
910 drm_magic_t magic;
911
912 dri2_dpy->device_name = strdup(device);
913 if (!dri2_dpy->device_name)
914 return;
915
916 dri2_dpy->fd = loader_open_device(dri2_dpy->device_name);
917 if (dri2_dpy->fd == -1) {
918 _eglLog(_EGL_WARNING, "wayland-egl: could not open %s (%s)",
919 dri2_dpy->device_name, strerror(errno));
920 return;
921 }
922
923 if (drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER) {
924 dri2_dpy->authenticated = 1;
925 } else {
926 drmGetMagic(dri2_dpy->fd, &magic);
927 wl_drm_authenticate(dri2_dpy->wl_drm, magic);
928 }
929 }
930
931 static void
932 drm_handle_format(void *data, struct wl_drm *drm, uint32_t format)
933 {
934 struct dri2_egl_display *dri2_dpy = data;
935
936 switch (format) {
937 case WL_DRM_FORMAT_ARGB8888:
938 dri2_dpy->formats |= HAS_ARGB8888;
939 break;
940 case WL_DRM_FORMAT_XRGB8888:
941 dri2_dpy->formats |= HAS_XRGB8888;
942 break;
943 case WL_DRM_FORMAT_RGB565:
944 dri2_dpy->formats |= HAS_RGB565;
945 break;
946 }
947 }
948
949 static void
950 drm_handle_capabilities(void *data, struct wl_drm *drm, uint32_t value)
951 {
952 struct dri2_egl_display *dri2_dpy = data;
953
954 dri2_dpy->capabilities = value;
955 }
956
957 static void
958 drm_handle_authenticated(void *data, struct wl_drm *drm)
959 {
960 struct dri2_egl_display *dri2_dpy = data;
961
962 dri2_dpy->authenticated = 1;
963 }
964
965 static const struct wl_drm_listener drm_listener = {
966 .device = drm_handle_device,
967 .format = drm_handle_format,
968 .authenticated = drm_handle_authenticated,
969 .capabilities = drm_handle_capabilities
970 };
971
972 static void
973 registry_handle_global_drm(void *data, struct wl_registry *registry, uint32_t name,
974 const char *interface, uint32_t version)
975 {
976 struct dri2_egl_display *dri2_dpy = data;
977
978 if (version > 1)
979 version = 2;
980 if (strcmp(interface, "wl_drm") == 0) {
981 dri2_dpy->wl_drm =
982 wl_registry_bind(registry, name, &wl_drm_interface, version);
983 wl_drm_add_listener(dri2_dpy->wl_drm, &drm_listener, dri2_dpy);
984 }
985 }
986
987 static void
988 registry_handle_global_remove(void *data, struct wl_registry *registry,
989 uint32_t name)
990 {
991 }
992
993 static const struct wl_registry_listener registry_listener_drm = {
994 .global = registry_handle_global_drm,
995 .global_remove = registry_handle_global_remove
996 };
997
998 static EGLBoolean
999 dri2_wl_swap_interval(_EGLDriver *drv,
1000 _EGLDisplay *disp,
1001 _EGLSurface *surf,
1002 EGLint interval)
1003 {
1004 if (interval > surf->Config->MaxSwapInterval)
1005 interval = surf->Config->MaxSwapInterval;
1006 else if (interval < surf->Config->MinSwapInterval)
1007 interval = surf->Config->MinSwapInterval;
1008
1009 surf->SwapInterval = interval;
1010
1011 return EGL_TRUE;
1012 }
1013
1014 static void
1015 dri2_wl_setup_swap_interval(struct dri2_egl_display *dri2_dpy)
1016 {
1017 GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
1018
1019 /* We can't use values greater than 1 on Wayland because we are using the
1020 * frame callback to synchronise the frame and the only way we be sure to
1021 * get a frame callback is to attach a new buffer. Therefore we can't just
1022 * sit drawing nothing to wait until the next ‘n’ frame callbacks */
1023
1024 if (dri2_dpy->config)
1025 dri2_dpy->config->configQueryi(dri2_dpy->dri_screen,
1026 "vblank_mode", &vblank_mode);
1027 switch (vblank_mode) {
1028 case DRI_CONF_VBLANK_NEVER:
1029 dri2_dpy->min_swap_interval = 0;
1030 dri2_dpy->max_swap_interval = 0;
1031 dri2_dpy->default_swap_interval = 0;
1032 break;
1033 case DRI_CONF_VBLANK_ALWAYS_SYNC:
1034 dri2_dpy->min_swap_interval = 1;
1035 dri2_dpy->max_swap_interval = 1;
1036 dri2_dpy->default_swap_interval = 1;
1037 break;
1038 case DRI_CONF_VBLANK_DEF_INTERVAL_0:
1039 dri2_dpy->min_swap_interval = 0;
1040 dri2_dpy->max_swap_interval = 1;
1041 dri2_dpy->default_swap_interval = 0;
1042 break;
1043 default:
1044 case DRI_CONF_VBLANK_DEF_INTERVAL_1:
1045 dri2_dpy->min_swap_interval = 0;
1046 dri2_dpy->max_swap_interval = 1;
1047 dri2_dpy->default_swap_interval = 1;
1048 break;
1049 }
1050 }
1051
1052 static struct dri2_egl_display_vtbl dri2_wl_display_vtbl = {
1053 .authenticate = dri2_wl_authenticate,
1054 .create_window_surface = dri2_wl_create_window_surface,
1055 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
1056 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
1057 .destroy_surface = dri2_wl_destroy_surface,
1058 .create_image = dri2_create_image_khr,
1059 .swap_interval = dri2_wl_swap_interval,
1060 .swap_buffers = dri2_wl_swap_buffers,
1061 .swap_buffers_with_damage = dri2_wl_swap_buffers_with_damage,
1062 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1063 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1064 .copy_buffers = dri2_fallback_copy_buffers,
1065 .query_buffer_age = dri2_wl_query_buffer_age,
1066 .create_wayland_buffer_from_image = dri2_wl_create_wayland_buffer_from_image,
1067 .get_sync_values = dri2_fallback_get_sync_values,
1068 .get_dri_drawable = dri2_surface_get_dri_drawable,
1069 };
1070
1071 static EGLBoolean
1072 dri2_initialize_wayland_drm(_EGLDriver *drv, _EGLDisplay *disp)
1073 {
1074 struct dri2_egl_display *dri2_dpy;
1075 const __DRIconfig *config;
1076 uint32_t types;
1077 int i;
1078 static const unsigned int argb_masks[4] =
1079 { 0xff0000, 0xff00, 0xff, 0xff000000 };
1080 static const unsigned int rgb_masks[4] = { 0xff0000, 0xff00, 0xff, 0 };
1081 static const unsigned int rgb565_masks[4] = { 0xf800, 0x07e0, 0x001f, 0 };
1082
1083 loader_set_logger(_eglLog);
1084
1085 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1086 if (!dri2_dpy)
1087 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1088
1089 disp->DriverData = (void *) dri2_dpy;
1090 if (disp->PlatformDisplay == NULL) {
1091 dri2_dpy->wl_dpy = wl_display_connect(NULL);
1092 if (dri2_dpy->wl_dpy == NULL)
1093 goto cleanup_dpy;
1094 dri2_dpy->own_device = 1;
1095 } else {
1096 dri2_dpy->wl_dpy = disp->PlatformDisplay;
1097 }
1098
1099 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
1100
1101 if (dri2_dpy->own_device)
1102 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
1103
1104 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy);
1105 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_registry,
1106 dri2_dpy->wl_queue);
1107 wl_registry_add_listener(dri2_dpy->wl_registry,
1108 &registry_listener_drm, dri2_dpy);
1109 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_drm == NULL)
1110 goto cleanup_registry;
1111
1112 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->fd == -1)
1113 goto cleanup_drm;
1114
1115 if (roundtrip(dri2_dpy) < 0 || !dri2_dpy->authenticated)
1116 goto cleanup_fd;
1117
1118 dri2_dpy->fd = loader_get_user_preferred_fd(dri2_dpy->fd,
1119 &dri2_dpy->is_different_gpu);
1120 if (dri2_dpy->is_different_gpu) {
1121 free(dri2_dpy->device_name);
1122 dri2_dpy->device_name = loader_get_device_name_for_fd(dri2_dpy->fd);
1123 if (!dri2_dpy->device_name) {
1124 _eglError(EGL_BAD_ALLOC, "wayland-egl: failed to get device name "
1125 "for requested GPU");
1126 goto cleanup_fd;
1127 }
1128 }
1129
1130 /* we have to do the check now, because loader_get_user_preferred_fd
1131 * will return a render-node when the requested gpu is different
1132 * to the server, but also if the client asks for the same gpu than
1133 * the server by requesting its pci-id */
1134 dri2_dpy->is_render_node = drmGetNodeTypeFromFd(dri2_dpy->fd) == DRM_NODE_RENDER;
1135
1136 dri2_dpy->driver_name = loader_get_driver_for_fd(dri2_dpy->fd, 0);
1137 if (dri2_dpy->driver_name == NULL) {
1138 _eglError(EGL_BAD_ALLOC, "DRI2: failed to get driver name");
1139 goto cleanup_fd;
1140 }
1141
1142 if (!dri2_load_driver(disp))
1143 goto cleanup_driver_name;
1144
1145 dri2_dpy->extensions[0] = &image_loader_extension.base;
1146 dri2_dpy->extensions[1] = &image_lookup_extension.base;
1147 dri2_dpy->extensions[2] = &use_invalidate.base;
1148
1149 /* render nodes cannot use Gem names, and thus do not support
1150 * the __DRI_DRI2_LOADER extension */
1151 if (!dri2_dpy->is_render_node) {
1152 dri2_dpy->extensions[3] = &dri2_loader_extension.base;
1153 dri2_dpy->extensions[4] = NULL;
1154 } else
1155 dri2_dpy->extensions[3] = NULL;
1156
1157 if (!dri2_create_screen(disp))
1158 goto cleanup_driver;
1159
1160 dri2_wl_setup_swap_interval(dri2_dpy);
1161
1162 /* To use Prime, we must have _DRI_IMAGE v7 at least.
1163 * createImageFromFds support indicates that Prime export/import
1164 * is supported by the driver. Fall back to
1165 * gem names if we don't have Prime support. */
1166
1167 if (dri2_dpy->image->base.version < 7 ||
1168 dri2_dpy->image->createImageFromFds == NULL)
1169 dri2_dpy->capabilities &= ~WL_DRM_CAPABILITY_PRIME;
1170
1171 /* We cannot use Gem names with render-nodes, only prime fds (dma-buf).
1172 * The server needs to accept them */
1173 if (dri2_dpy->is_render_node &&
1174 !(dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME)) {
1175 _eglLog(_EGL_WARNING, "wayland-egl: display is not render-node capable");
1176 goto cleanup_screen;
1177 }
1178
1179 if (dri2_dpy->is_different_gpu &&
1180 (dri2_dpy->image->base.version < 9 ||
1181 dri2_dpy->image->blitImage == NULL)) {
1182 _eglLog(_EGL_WARNING, "wayland-egl: Different GPU selected, but the "
1183 "Image extension in the driver is not "
1184 "compatible. Version 9 or later and blitImage() "
1185 "are required");
1186 goto cleanup_screen;
1187 }
1188
1189 types = EGL_WINDOW_BIT;
1190 for (i = 0; dri2_dpy->driver_configs[i]; i++) {
1191 config = dri2_dpy->driver_configs[i];
1192 if (dri2_dpy->formats & HAS_XRGB8888)
1193 dri2_add_config(disp, config, i + 1, types, NULL, rgb_masks);
1194 if (dri2_dpy->formats & HAS_ARGB8888)
1195 dri2_add_config(disp, config, i + 1, types, NULL, argb_masks);
1196 if (dri2_dpy->formats & HAS_RGB565)
1197 dri2_add_config(disp, config, i + 1, types, NULL, rgb565_masks);
1198 }
1199
1200 disp->Extensions.WL_bind_wayland_display = EGL_TRUE;
1201 /* When cannot convert EGLImage to wl_buffer when on a different gpu,
1202 * because the buffer of the EGLImage has likely a tiling mode the server
1203 * gpu won't support. These is no way to check for now. Thus do not support the
1204 * extension */
1205 if (!dri2_dpy->is_different_gpu) {
1206 disp->Extensions.WL_create_wayland_buffer_from_image = EGL_TRUE;
1207 } else {
1208 dri2_wl_display_vtbl.create_wayland_buffer_from_image =
1209 dri2_fallback_create_wayland_buffer_from_image;
1210 }
1211 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1212
1213 disp->Extensions.EXT_swap_buffers_with_damage = EGL_TRUE;
1214
1215 /* Fill vtbl last to prevent accidentally calling virtual function during
1216 * initialization.
1217 */
1218 dri2_dpy->vtbl = &dri2_wl_display_vtbl;
1219
1220 return EGL_TRUE;
1221
1222 cleanup_screen:
1223 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
1224 cleanup_driver:
1225 dlclose(dri2_dpy->driver);
1226 cleanup_driver_name:
1227 free(dri2_dpy->driver_name);
1228 cleanup_fd:
1229 close(dri2_dpy->fd);
1230 cleanup_drm:
1231 free(dri2_dpy->device_name);
1232 wl_drm_destroy(dri2_dpy->wl_drm);
1233 cleanup_registry:
1234 wl_registry_destroy(dri2_dpy->wl_registry);
1235 wl_event_queue_destroy(dri2_dpy->wl_queue);
1236 cleanup_dpy:
1237 free(dri2_dpy);
1238 disp->DriverData = NULL;
1239
1240 return EGL_FALSE;
1241 }
1242
1243 static int
1244 dri2_wl_swrast_get_stride_for_format(int format, int w)
1245 {
1246 if (format == WL_SHM_FORMAT_RGB565)
1247 return 2 * w;
1248 else /* ARGB8888 || XRGB8888 */
1249 return 4 * w;
1250 }
1251
1252 /*
1253 * Taken from weston shared/os-compatibility.c
1254 */
1255
1256 #ifndef HAVE_MKOSTEMP
1257
1258 static int
1259 set_cloexec_or_close(int fd)
1260 {
1261 long flags;
1262
1263 if (fd == -1)
1264 return -1;
1265
1266 flags = fcntl(fd, F_GETFD);
1267 if (flags == -1)
1268 goto err;
1269
1270 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
1271 goto err;
1272
1273 return fd;
1274
1275 err:
1276 close(fd);
1277 return -1;
1278 }
1279
1280 #endif
1281
1282 /*
1283 * Taken from weston shared/os-compatibility.c
1284 */
1285
1286 static int
1287 create_tmpfile_cloexec(char *tmpname)
1288 {
1289 int fd;
1290
1291 #ifdef HAVE_MKOSTEMP
1292 fd = mkostemp(tmpname, O_CLOEXEC);
1293 if (fd >= 0)
1294 unlink(tmpname);
1295 #else
1296 fd = mkstemp(tmpname);
1297 if (fd >= 0) {
1298 fd = set_cloexec_or_close(fd);
1299 unlink(tmpname);
1300 }
1301 #endif
1302
1303 return fd;
1304 }
1305
1306 /*
1307 * Taken from weston shared/os-compatibility.c
1308 *
1309 * Create a new, unique, anonymous file of the given size, and
1310 * return the file descriptor for it. The file descriptor is set
1311 * CLOEXEC. The file is immediately suitable for mmap()'ing
1312 * the given size at offset zero.
1313 *
1314 * The file should not have a permanent backing store like a disk,
1315 * but may have if XDG_RUNTIME_DIR is not properly implemented in OS.
1316 *
1317 * The file name is deleted from the file system.
1318 *
1319 * The file is suitable for buffer sharing between processes by
1320 * transmitting the file descriptor over Unix sockets using the
1321 * SCM_RIGHTS methods.
1322 *
1323 * If the C library implements posix_fallocate(), it is used to
1324 * guarantee that disk space is available for the file at the
1325 * given size. If disk space is insufficent, errno is set to ENOSPC.
1326 * If posix_fallocate() is not supported, program may receive
1327 * SIGBUS on accessing mmap()'ed file contents instead.
1328 */
1329 static int
1330 os_create_anonymous_file(off_t size)
1331 {
1332 static const char template[] = "/mesa-shared-XXXXXX";
1333 const char *path;
1334 char *name;
1335 int fd;
1336 int ret;
1337
1338 path = getenv("XDG_RUNTIME_DIR");
1339 if (!path) {
1340 errno = ENOENT;
1341 return -1;
1342 }
1343
1344 name = malloc(strlen(path) + sizeof(template));
1345 if (!name)
1346 return -1;
1347
1348 strcpy(name, path);
1349 strcat(name, template);
1350
1351 fd = create_tmpfile_cloexec(name);
1352
1353 free(name);
1354
1355 if (fd < 0)
1356 return -1;
1357
1358 ret = ftruncate(fd, size);
1359 if (ret < 0) {
1360 close(fd);
1361 return -1;
1362 }
1363
1364 return fd;
1365 }
1366
1367
1368 static EGLBoolean
1369 dri2_wl_swrast_allocate_buffer(struct dri2_egl_display *dri2_dpy,
1370 int format, int w, int h,
1371 void **data, int *size,
1372 struct wl_buffer **buffer)
1373 {
1374 struct wl_shm_pool *pool;
1375 int fd, stride, size_map;
1376 void *data_map;
1377
1378 stride = dri2_wl_swrast_get_stride_for_format(format, w);
1379 size_map = h * stride;
1380
1381 /* Create a sharable buffer */
1382 fd = os_create_anonymous_file(size_map);
1383 if (fd < 0)
1384 return EGL_FALSE;
1385
1386 data_map = mmap(NULL, size_map, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
1387 if (data_map == MAP_FAILED) {
1388 close(fd);
1389 return EGL_FALSE;
1390 }
1391
1392 /* Share it in a wl_buffer */
1393 pool = wl_shm_create_pool(dri2_dpy->wl_shm, fd, size_map);
1394 *buffer = wl_shm_pool_create_buffer(pool, 0, w, h, stride, format);
1395 wl_shm_pool_destroy(pool);
1396 close(fd);
1397
1398 *data = data_map;
1399 *size = size_map;
1400 return EGL_TRUE;
1401 }
1402
1403 static int
1404 swrast_update_buffers(struct dri2_egl_surface *dri2_surf)
1405 {
1406 struct dri2_egl_display *dri2_dpy =
1407 dri2_egl_display(dri2_surf->base.Resource.Display);
1408 int i;
1409
1410 /* we need to do the following operations only once per frame */
1411 if (dri2_surf->back)
1412 return 0;
1413
1414 if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
1415 dri2_surf->base.Height != dri2_surf->wl_win->height) {
1416
1417 dri2_wl_release_buffers(dri2_surf);
1418
1419 dri2_surf->base.Width = dri2_surf->wl_win->width;
1420 dri2_surf->base.Height = dri2_surf->wl_win->height;
1421 dri2_surf->dx = dri2_surf->wl_win->dx;
1422 dri2_surf->dy = dri2_surf->wl_win->dy;
1423 dri2_surf->current = NULL;
1424 }
1425
1426 /* find back buffer */
1427
1428 /* We always want to throttle to some event (either a frame callback or
1429 * a sync request) after the commit so that we can be sure the
1430 * compositor has had a chance to handle it and send us a release event
1431 * before we look for a free buffer */
1432 while (dri2_surf->throttle_callback != NULL)
1433 if (wl_display_dispatch_queue(dri2_dpy->wl_dpy,
1434 dri2_dpy->wl_queue) == -1)
1435 return -1;
1436
1437 /* try get free buffer already created */
1438 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1439 if (!dri2_surf->color_buffers[i].locked &&
1440 dri2_surf->color_buffers[i].wl_buffer) {
1441 dri2_surf->back = &dri2_surf->color_buffers[i];
1442 break;
1443 }
1444 }
1445
1446 /* else choose any another free location */
1447 if (!dri2_surf->back) {
1448 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1449 if (!dri2_surf->color_buffers[i].locked) {
1450 dri2_surf->back = &dri2_surf->color_buffers[i];
1451 if (!dri2_wl_swrast_allocate_buffer(dri2_dpy,
1452 dri2_surf->format,
1453 dri2_surf->base.Width,
1454 dri2_surf->base.Height,
1455 &dri2_surf->back->data,
1456 &dri2_surf->back->data_size,
1457 &dri2_surf->back->wl_buffer)) {
1458 _eglError(EGL_BAD_ALLOC, "failed to allocate color buffer");
1459 return -1;
1460 }
1461 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->back->wl_buffer,
1462 dri2_dpy->wl_queue);
1463 wl_buffer_add_listener(dri2_surf->back->wl_buffer,
1464 &wl_buffer_listener, dri2_surf);
1465 break;
1466 }
1467 }
1468 }
1469
1470 if (!dri2_surf->back) {
1471 _eglError(EGL_BAD_ALLOC, "failed to find free buffer");
1472 return -1;
1473 }
1474
1475 dri2_surf->back->locked = 1;
1476
1477 /* If we have an extra unlocked buffer at this point, we had to do triple
1478 * buffering for a while, but now can go back to just double buffering.
1479 * That means we can free any unlocked buffer now. */
1480 for (i = 0; i < ARRAY_SIZE(dri2_surf->color_buffers); i++) {
1481 if (!dri2_surf->color_buffers[i].locked &&
1482 dri2_surf->color_buffers[i].wl_buffer) {
1483 wl_buffer_destroy(dri2_surf->color_buffers[i].wl_buffer);
1484 munmap(dri2_surf->color_buffers[i].data,
1485 dri2_surf->color_buffers[i].data_size);
1486 dri2_surf->color_buffers[i].wl_buffer = NULL;
1487 dri2_surf->color_buffers[i].data = NULL;
1488 }
1489 }
1490
1491 return 0;
1492 }
1493
1494 static void*
1495 dri2_wl_swrast_get_frontbuffer_data(struct dri2_egl_surface *dri2_surf)
1496 {
1497 /* if there has been a resize: */
1498 if (!dri2_surf->current)
1499 return NULL;
1500
1501 return dri2_surf->current->data;
1502 }
1503
1504 static void*
1505 dri2_wl_swrast_get_backbuffer_data(struct dri2_egl_surface *dri2_surf)
1506 {
1507 assert(dri2_surf->back);
1508 return dri2_surf->back->data;
1509 }
1510
1511 static void
1512 dri2_wl_swrast_commit_backbuffer(struct dri2_egl_surface *dri2_surf)
1513 {
1514 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
1515
1516 if (dri2_surf->base.SwapInterval > 0) {
1517 dri2_surf->throttle_callback =
1518 wl_surface_frame(dri2_surf->wl_win->surface);
1519 wl_callback_add_listener(dri2_surf->throttle_callback,
1520 &throttle_listener, dri2_surf);
1521 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->throttle_callback,
1522 dri2_dpy->wl_queue);
1523 }
1524
1525 dri2_surf->current = dri2_surf->back;
1526 dri2_surf->back = NULL;
1527
1528 wl_surface_attach(dri2_surf->wl_win->surface,
1529 dri2_surf->current->wl_buffer,
1530 dri2_surf->dx, dri2_surf->dy);
1531
1532 dri2_surf->wl_win->attached_width = dri2_surf->base.Width;
1533 dri2_surf->wl_win->attached_height = dri2_surf->base.Height;
1534 /* reset resize growing parameters */
1535 dri2_surf->dx = 0;
1536 dri2_surf->dy = 0;
1537
1538 wl_surface_damage(dri2_surf->wl_win->surface,
1539 0, 0, INT32_MAX, INT32_MAX);
1540 wl_surface_commit(dri2_surf->wl_win->surface);
1541
1542 /* If we're not waiting for a frame callback then we'll at least throttle
1543 * to a sync callback so that we always give a chance for the compositor to
1544 * handle the commit and send a release event before checking for a free
1545 * buffer */
1546 if (dri2_surf->throttle_callback == NULL) {
1547 dri2_surf->throttle_callback = wl_display_sync(dri2_dpy->wl_dpy);
1548 wl_callback_add_listener(dri2_surf->throttle_callback,
1549 &throttle_listener, dri2_surf);
1550 wl_proxy_set_queue((struct wl_proxy *) dri2_surf->throttle_callback,
1551 dri2_dpy->wl_queue);
1552 }
1553
1554 wl_display_flush(dri2_dpy->wl_dpy);
1555 }
1556
1557 static void
1558 dri2_wl_swrast_get_drawable_info(__DRIdrawable * draw,
1559 int *x, int *y, int *w, int *h,
1560 void *loaderPrivate)
1561 {
1562 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1563
1564 (void) swrast_update_buffers(dri2_surf);
1565 *x = 0;
1566 *y = 0;
1567 *w = dri2_surf->base.Width;
1568 *h = dri2_surf->base.Height;
1569 }
1570
1571 static void
1572 dri2_wl_swrast_get_image(__DRIdrawable * read,
1573 int x, int y, int w, int h,
1574 char *data, void *loaderPrivate)
1575 {
1576 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1577 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1578 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1579 int src_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1580 int dst_stride = copy_width;
1581 char *src, *dst;
1582
1583 src = dri2_wl_swrast_get_frontbuffer_data(dri2_surf);
1584 if (!src) {
1585 memset(data, 0, copy_width * h);
1586 return;
1587 }
1588
1589 assert(data != src);
1590 assert(copy_width <= src_stride);
1591
1592 src += x_offset;
1593 src += y * src_stride;
1594 dst = data;
1595
1596 if (copy_width > src_stride-x_offset)
1597 copy_width = src_stride-x_offset;
1598 if (h > dri2_surf->base.Height-y)
1599 h = dri2_surf->base.Height-y;
1600
1601 for (; h>0; h--) {
1602 memcpy(dst, src, copy_width);
1603 src += src_stride;
1604 dst += dst_stride;
1605 }
1606 }
1607
1608 static void
1609 dri2_wl_swrast_put_image2(__DRIdrawable * draw, int op,
1610 int x, int y, int w, int h, int stride,
1611 char *data, void *loaderPrivate)
1612 {
1613 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1614 int copy_width = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1615 int dst_stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, dri2_surf->base.Width);
1616 int x_offset = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, x);
1617 char *src, *dst;
1618
1619 assert(copy_width <= stride);
1620
1621 (void) swrast_update_buffers(dri2_surf);
1622 dst = dri2_wl_swrast_get_backbuffer_data(dri2_surf);
1623
1624 /* partial copy, copy old content */
1625 if (copy_width < dst_stride)
1626 dri2_wl_swrast_get_image(draw, 0, 0,
1627 dri2_surf->base.Width, dri2_surf->base.Height,
1628 dst, loaderPrivate);
1629
1630 dst += x_offset;
1631 dst += y * dst_stride;
1632
1633 src = data;
1634
1635 /* drivers expect we do these checks (and some rely on it) */
1636 if (copy_width > dst_stride-x_offset)
1637 copy_width = dst_stride-x_offset;
1638 if (h > dri2_surf->base.Height-y)
1639 h = dri2_surf->base.Height-y;
1640
1641 for (; h>0; h--) {
1642 memcpy(dst, src, copy_width);
1643 src += stride;
1644 dst += dst_stride;
1645 }
1646 dri2_wl_swrast_commit_backbuffer(dri2_surf);
1647 }
1648
1649 static void
1650 dri2_wl_swrast_put_image(__DRIdrawable * draw, int op,
1651 int x, int y, int w, int h,
1652 char *data, void *loaderPrivate)
1653 {
1654 struct dri2_egl_surface *dri2_surf = loaderPrivate;
1655 int stride;
1656
1657 stride = dri2_wl_swrast_get_stride_for_format(dri2_surf->format, w);
1658 dri2_wl_swrast_put_image2(draw, op, x, y, w, h,
1659 stride, data, loaderPrivate);
1660 }
1661
1662 /**
1663 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
1664 */
1665 static _EGLSurface *
1666 dri2_wl_swrast_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
1667 _EGLConfig *conf, void *native_window,
1668 const EGLint *attrib_list)
1669 {
1670 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1671 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
1672 struct wl_egl_window *window = native_window;
1673 struct dri2_egl_surface *dri2_surf;
1674 const __DRIconfig *config;
1675
1676 (void) drv;
1677
1678 dri2_surf = calloc(1, sizeof *dri2_surf);
1679 if (!dri2_surf) {
1680 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
1681 return NULL;
1682 }
1683
1684 if (!_eglInitSurface(&dri2_surf->base, disp, EGL_WINDOW_BIT, conf, attrib_list))
1685 goto cleanup_surf;
1686
1687 if (conf->RedSize == 5)
1688 dri2_surf->format = WL_SHM_FORMAT_RGB565;
1689 else if (conf->AlphaSize == 0)
1690 dri2_surf->format = WL_SHM_FORMAT_XRGB8888;
1691 else
1692 dri2_surf->format = WL_SHM_FORMAT_ARGB8888;
1693
1694 dri2_surf->wl_win = window;
1695
1696 dri2_surf->base.Width = -1;
1697 dri2_surf->base.Height = -1;
1698
1699 config = dri2_get_dri_config(dri2_conf, EGL_WINDOW_BIT,
1700 dri2_surf->base.GLColorspace);
1701
1702 dri2_surf->dri_drawable =
1703 (*dri2_dpy->swrast->createNewDrawable)(dri2_dpy->dri_screen,
1704 config, dri2_surf);
1705 if (dri2_surf->dri_drawable == NULL) {
1706 _eglError(EGL_BAD_ALLOC, "swrast->createNewDrawable");
1707 goto cleanup_dri_drawable;
1708 }
1709
1710 dri2_wl_swap_interval(drv, disp, &dri2_surf->base,
1711 dri2_dpy->default_swap_interval);
1712
1713 return &dri2_surf->base;
1714
1715 cleanup_dri_drawable:
1716 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
1717 cleanup_surf:
1718 free(dri2_surf);
1719
1720 return NULL;
1721 }
1722
1723 static EGLBoolean
1724 dri2_wl_swrast_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1725 {
1726 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1727 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1728
1729 dri2_dpy->core->swapBuffers(dri2_surf->dri_drawable);
1730 return EGL_TRUE;
1731 }
1732
1733 static void
1734 shm_handle_format(void *data, struct wl_shm *shm, uint32_t format)
1735 {
1736 struct dri2_egl_display *dri2_dpy = data;
1737
1738 switch (format) {
1739 case WL_SHM_FORMAT_ARGB8888:
1740 dri2_dpy->formats |= HAS_ARGB8888;
1741 break;
1742 case WL_SHM_FORMAT_XRGB8888:
1743 dri2_dpy->formats |= HAS_XRGB8888;
1744 break;
1745 case WL_SHM_FORMAT_RGB565:
1746 dri2_dpy->formats |= HAS_RGB565;
1747 break;
1748 }
1749 }
1750
1751 static const struct wl_shm_listener shm_listener = {
1752 .format = shm_handle_format
1753 };
1754
1755 static void
1756 registry_handle_global_swrast(void *data, struct wl_registry *registry, uint32_t name,
1757 const char *interface, uint32_t version)
1758 {
1759 struct dri2_egl_display *dri2_dpy = data;
1760
1761 if (strcmp(interface, "wl_shm") == 0) {
1762 dri2_dpy->wl_shm =
1763 wl_registry_bind(registry, name, &wl_shm_interface, 1);
1764 wl_shm_add_listener(dri2_dpy->wl_shm, &shm_listener, dri2_dpy);
1765 }
1766 }
1767
1768 static const struct wl_registry_listener registry_listener_swrast = {
1769 .global = registry_handle_global_swrast,
1770 .global_remove = registry_handle_global_remove
1771 };
1772
1773 static struct dri2_egl_display_vtbl dri2_wl_swrast_display_vtbl = {
1774 .authenticate = NULL,
1775 .create_window_surface = dri2_wl_swrast_create_window_surface,
1776 .create_pixmap_surface = dri2_wl_create_pixmap_surface,
1777 .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
1778 .destroy_surface = dri2_wl_destroy_surface,
1779 .create_image = dri2_fallback_create_image_khr,
1780 .swap_interval = dri2_wl_swap_interval,
1781 .swap_buffers = dri2_wl_swrast_swap_buffers,
1782 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
1783 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1784 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1785 .copy_buffers = dri2_fallback_copy_buffers,
1786 .query_buffer_age = dri2_fallback_query_buffer_age,
1787 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1788 .get_sync_values = dri2_fallback_get_sync_values,
1789 .get_dri_drawable = dri2_surface_get_dri_drawable,
1790 };
1791
1792 static EGLBoolean
1793 dri2_initialize_wayland_swrast(_EGLDriver *drv, _EGLDisplay *disp)
1794 {
1795 struct dri2_egl_display *dri2_dpy;
1796 const __DRIconfig *config;
1797 uint32_t types;
1798 int i;
1799 static const unsigned int argb_masks[4] =
1800 { 0xff0000, 0xff00, 0xff, 0xff000000 };
1801 static const unsigned int rgb_masks[4] = { 0xff0000, 0xff00, 0xff, 0 };
1802 static const unsigned int rgb565_masks[4] = { 0xf800, 0x07e0, 0x001f, 0 };
1803
1804 loader_set_logger(_eglLog);
1805
1806 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1807 if (!dri2_dpy)
1808 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1809
1810 disp->DriverData = (void *) dri2_dpy;
1811 if (disp->PlatformDisplay == NULL) {
1812 dri2_dpy->wl_dpy = wl_display_connect(NULL);
1813 if (dri2_dpy->wl_dpy == NULL)
1814 goto cleanup_dpy;
1815 dri2_dpy->own_device = 1;
1816 } else {
1817 dri2_dpy->wl_dpy = disp->PlatformDisplay;
1818 }
1819
1820 dri2_dpy->wl_queue = wl_display_create_queue(dri2_dpy->wl_dpy);
1821
1822 if (dri2_dpy->own_device)
1823 wl_display_dispatch_pending(dri2_dpy->wl_dpy);
1824
1825 dri2_dpy->wl_registry = wl_display_get_registry(dri2_dpy->wl_dpy);
1826 wl_proxy_set_queue((struct wl_proxy *) dri2_dpy->wl_registry,
1827 dri2_dpy->wl_queue);
1828 wl_registry_add_listener(dri2_dpy->wl_registry,
1829 &registry_listener_swrast, dri2_dpy);
1830
1831 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_shm == NULL)
1832 goto cleanup_registry;
1833
1834 if (roundtrip(dri2_dpy) < 0 || dri2_dpy->formats == 0)
1835 goto cleanup_shm;
1836
1837 dri2_dpy->fd = -1;
1838 dri2_dpy->driver_name = strdup("swrast");
1839 if (!dri2_load_driver_swrast(disp))
1840 goto cleanup_shm;
1841
1842 dri2_dpy->swrast_loader_extension.base.name = __DRI_SWRAST_LOADER;
1843 dri2_dpy->swrast_loader_extension.base.version = 2;
1844 dri2_dpy->swrast_loader_extension.getDrawableInfo = dri2_wl_swrast_get_drawable_info;
1845 dri2_dpy->swrast_loader_extension.putImage = dri2_wl_swrast_put_image;
1846 dri2_dpy->swrast_loader_extension.getImage = dri2_wl_swrast_get_image;
1847 dri2_dpy->swrast_loader_extension.putImage2 = dri2_wl_swrast_put_image2;
1848
1849 dri2_dpy->extensions[0] = &dri2_dpy->swrast_loader_extension.base;
1850 dri2_dpy->extensions[1] = NULL;
1851
1852 if (!dri2_create_screen(disp))
1853 goto cleanup_driver;
1854
1855 dri2_wl_setup_swap_interval(dri2_dpy);
1856
1857 types = EGL_WINDOW_BIT;
1858 for (i = 0; dri2_dpy->driver_configs[i]; i++) {
1859 config = dri2_dpy->driver_configs[i];
1860 if (dri2_dpy->formats & HAS_XRGB8888)
1861 dri2_add_config(disp, config, i + 1, types, NULL, rgb_masks);
1862 if (dri2_dpy->formats & HAS_ARGB8888)
1863 dri2_add_config(disp, config, i + 1, types, NULL, argb_masks);
1864 if (dri2_dpy->formats & HAS_RGB565)
1865 dri2_add_config(disp, config, i + 1, types, NULL, rgb565_masks);
1866 }
1867
1868 /* Fill vtbl last to prevent accidentally calling virtual function during
1869 * initialization.
1870 */
1871 dri2_dpy->vtbl = &dri2_wl_swrast_display_vtbl;
1872
1873 return EGL_TRUE;
1874
1875 cleanup_driver:
1876 dlclose(dri2_dpy->driver);
1877 cleanup_shm:
1878 wl_shm_destroy(dri2_dpy->wl_shm);
1879 cleanup_registry:
1880 wl_registry_destroy(dri2_dpy->wl_registry);
1881 wl_event_queue_destroy(dri2_dpy->wl_queue);
1882 cleanup_dpy:
1883 free(dri2_dpy);
1884 disp->DriverData = NULL;
1885
1886 return EGL_FALSE;
1887 }
1888
1889 EGLBoolean
1890 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp)
1891 {
1892 EGLBoolean initialized = EGL_TRUE;
1893
1894 int hw_accel = (getenv("LIBGL_ALWAYS_SOFTWARE") == NULL);
1895
1896 if (hw_accel) {
1897 if (!dri2_initialize_wayland_drm(drv, disp)) {
1898 initialized = dri2_initialize_wayland_swrast(drv, disp);
1899 }
1900 } else {
1901 initialized = dri2_initialize_wayland_swrast(drv, disp);
1902 }
1903
1904 return initialized;
1905
1906 }