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