c8c676d2f00161d25050c263b65560e27d44ed72
[mesa.git] / src / egl / drivers / dri2 / platform_x11.c
1 /*
2 * Copyright © 2011 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #include <stdbool.h>
29 #include <stdint.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <stdio.h>
33 #include <limits.h>
34 #include <dlfcn.h>
35 #include <fcntl.h>
36 #include <errno.h>
37 #include <unistd.h>
38 #ifdef HAVE_LIBDRM
39 #include <xf86drm.h>
40 #endif
41 #include <sys/types.h>
42 #include <sys/stat.h>
43 #include "util/debug.h"
44 #include "util/macros.h"
45
46 #include "egl_dri2.h"
47 #include "egl_dri2_fallbacks.h"
48 #include "loader.h"
49
50 #ifdef HAVE_DRI3
51 #include "platform_x11_dri3.h"
52 #endif
53
54 static EGLBoolean
55 dri2_x11_swap_interval(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
56 EGLint interval);
57
58 uint32_t
59 dri2_format_for_depth(struct dri2_egl_display *dri2_dpy, uint32_t depth);
60
61 static void
62 swrastCreateDrawable(struct dri2_egl_display * dri2_dpy,
63 struct dri2_egl_surface * dri2_surf)
64 {
65 uint32_t mask;
66 const uint32_t function = GXcopy;
67 uint32_t valgc[2];
68
69 /* create GC's */
70 dri2_surf->gc = xcb_generate_id(dri2_dpy->conn);
71 mask = XCB_GC_FUNCTION;
72 xcb_create_gc(dri2_dpy->conn, dri2_surf->gc, dri2_surf->drawable, mask, &function);
73
74 dri2_surf->swapgc = xcb_generate_id(dri2_dpy->conn);
75 mask = XCB_GC_FUNCTION | XCB_GC_GRAPHICS_EXPOSURES;
76 valgc[0] = function;
77 valgc[1] = False;
78 xcb_create_gc(dri2_dpy->conn, dri2_surf->swapgc, dri2_surf->drawable, mask, valgc);
79 switch (dri2_surf->depth) {
80 case 32:
81 case 30:
82 case 24:
83 dri2_surf->bytes_per_pixel = 4;
84 break;
85 case 16:
86 dri2_surf->bytes_per_pixel = 2;
87 break;
88 case 8:
89 dri2_surf->bytes_per_pixel = 1;
90 break;
91 case 0:
92 dri2_surf->bytes_per_pixel = 0;
93 break;
94 default:
95 _eglLog(_EGL_WARNING, "unsupported depth %d", dri2_surf->depth);
96 }
97 }
98
99 static void
100 swrastDestroyDrawable(struct dri2_egl_display * dri2_dpy,
101 struct dri2_egl_surface * dri2_surf)
102 {
103 xcb_free_gc(dri2_dpy->conn, dri2_surf->gc);
104 xcb_free_gc(dri2_dpy->conn, dri2_surf->swapgc);
105 }
106
107 static bool
108 x11_get_drawable_info(__DRIdrawable * draw,
109 int *x, int *y, int *w, int *h,
110 void *loaderPrivate)
111 {
112 struct dri2_egl_surface *dri2_surf = loaderPrivate;
113 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
114
115 xcb_get_geometry_cookie_t cookie;
116 xcb_get_geometry_reply_t *reply;
117 xcb_generic_error_t *error;
118 bool ret;
119
120 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
121 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
122 if (reply == NULL)
123 return false;
124
125 if (error != NULL) {
126 ret = false;
127 _eglLog(_EGL_WARNING, "error in xcb_get_geometry");
128 free(error);
129 } else {
130 *x = reply->x;
131 *y = reply->y;
132 *w = reply->width;
133 *h = reply->height;
134 ret = true;
135 }
136 free(reply);
137 return ret;
138 }
139
140 static void
141 swrastGetDrawableInfo(__DRIdrawable * draw,
142 int *x, int *y, int *w, int *h,
143 void *loaderPrivate)
144 {
145 *x = *y = *w = *h = 0;
146 x11_get_drawable_info(draw, x, y, w, h, loaderPrivate);
147 }
148
149 static void
150 swrastPutImage(__DRIdrawable * draw, int op,
151 int x, int y, int w, int h,
152 char *data, void *loaderPrivate)
153 {
154 struct dri2_egl_surface *dri2_surf = loaderPrivate;
155 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
156
157 xcb_gcontext_t gc;
158
159 switch (op) {
160 case __DRI_SWRAST_IMAGE_OP_DRAW:
161 gc = dri2_surf->gc;
162 break;
163 case __DRI_SWRAST_IMAGE_OP_SWAP:
164 gc = dri2_surf->swapgc;
165 break;
166 default:
167 return;
168 }
169
170 xcb_put_image(dri2_dpy->conn, XCB_IMAGE_FORMAT_Z_PIXMAP, dri2_surf->drawable,
171 gc, w, h, x, y, 0, dri2_surf->depth,
172 w*h*dri2_surf->bytes_per_pixel, (const uint8_t *)data);
173 }
174
175 static void
176 swrastGetImage(__DRIdrawable * read,
177 int x, int y, int w, int h,
178 char *data, void *loaderPrivate)
179 {
180 struct dri2_egl_surface *dri2_surf = loaderPrivate;
181 struct dri2_egl_display *dri2_dpy = dri2_egl_display(dri2_surf->base.Resource.Display);
182
183 xcb_get_image_cookie_t cookie;
184 xcb_get_image_reply_t *reply;
185 xcb_generic_error_t *error;
186
187 cookie = xcb_get_image (dri2_dpy->conn, XCB_IMAGE_FORMAT_Z_PIXMAP,
188 dri2_surf->drawable, x, y, w, h, ~0);
189 reply = xcb_get_image_reply (dri2_dpy->conn, cookie, &error);
190 if (reply == NULL)
191 return;
192
193 if (error != NULL) {
194 _eglLog(_EGL_WARNING, "error in xcb_get_image");
195 free(error);
196 } else {
197 uint32_t bytes = xcb_get_image_data_length(reply);
198 uint8_t *idata = xcb_get_image_data(reply);
199 memcpy(data, idata, bytes);
200 }
201 free(reply);
202 }
203
204
205 static xcb_screen_t *
206 get_xcb_screen(xcb_screen_iterator_t iter, int screen)
207 {
208 for (; iter.rem; --screen, xcb_screen_next(&iter))
209 if (screen == 0)
210 return iter.data;
211
212 return NULL;
213 }
214
215 static xcb_visualtype_t *
216 get_xcb_visualtype_for_depth(struct dri2_egl_display *dri2_dpy, int depth)
217 {
218 xcb_visualtype_iterator_t visual_iter;
219 xcb_screen_t *screen = dri2_dpy->screen;
220 xcb_depth_iterator_t depth_iter = xcb_screen_allowed_depths_iterator(screen);
221
222 for (; depth_iter.rem; xcb_depth_next(&depth_iter)) {
223 if (depth_iter.data->depth != depth)
224 continue;
225
226 visual_iter = xcb_depth_visuals_iterator(depth_iter.data);
227 if (visual_iter.rem)
228 return visual_iter.data;
229 }
230
231 return NULL;
232 }
233
234 /* Get red channel mask for given depth. */
235 unsigned int
236 dri2_x11_get_red_mask_for_depth(struct dri2_egl_display *dri2_dpy, int depth)
237 {
238 xcb_visualtype_t *visual = get_xcb_visualtype_for_depth(dri2_dpy, depth);
239
240 if (visual)
241 return visual->red_mask;
242
243 return 0;
244 }
245
246 /**
247 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
248 */
249 static _EGLSurface *
250 dri2_x11_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
251 _EGLConfig *conf, void *native_surface,
252 const EGLint *attrib_list)
253 {
254 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
255 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
256 struct dri2_egl_surface *dri2_surf;
257 xcb_get_geometry_cookie_t cookie;
258 xcb_get_geometry_reply_t *reply;
259 xcb_generic_error_t *error;
260 const __DRIconfig *config;
261
262 (void) drv;
263
264 dri2_surf = malloc(sizeof *dri2_surf);
265 if (!dri2_surf) {
266 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
267 return NULL;
268 }
269
270 if (!dri2_init_surface(&dri2_surf->base, disp, type, conf, attrib_list, false))
271 goto cleanup_surf;
272
273 dri2_surf->region = XCB_NONE;
274 if (type == EGL_PBUFFER_BIT) {
275 dri2_surf->drawable = xcb_generate_id(dri2_dpy->conn);
276 xcb_create_pixmap(dri2_dpy->conn, conf->BufferSize,
277 dri2_surf->drawable, dri2_dpy->screen->root,
278 dri2_surf->base.Width, dri2_surf->base.Height);
279 } else {
280 STATIC_ASSERT(sizeof(uintptr_t) == sizeof(native_surface));
281 dri2_surf->drawable = (uintptr_t) native_surface;
282 }
283
284 config = dri2_get_dri_config(dri2_conf, type,
285 dri2_surf->base.GLColorspace);
286
287 if (!config) {
288 _eglError(EGL_BAD_MATCH, "Unsupported surfacetype/colorspace configuration");
289 goto cleanup_pixmap;
290 }
291
292 if (dri2_dpy->dri2) {
293 dri2_surf->dri_drawable =
294 dri2_dpy->dri2->createNewDrawable(dri2_dpy->dri_screen, config,
295 dri2_surf);
296 } else {
297 assert(dri2_dpy->swrast);
298 dri2_surf->dri_drawable =
299 dri2_dpy->swrast->createNewDrawable(dri2_dpy->dri_screen, config,
300 dri2_surf);
301 }
302
303 if (dri2_surf->dri_drawable == NULL) {
304 _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
305 goto cleanup_pixmap;
306 }
307
308 if (type != EGL_PBUFFER_BIT) {
309 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
310 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
311 if (error != NULL) {
312 if (error->error_code == BadAlloc)
313 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
314 else if (type == EGL_WINDOW_BIT)
315 _eglError(EGL_BAD_NATIVE_WINDOW, "xcb_get_geometry");
316 else
317 _eglError(EGL_BAD_NATIVE_PIXMAP, "xcb_get_geometry");
318 free(error);
319 goto cleanup_dri_drawable;
320 } else if (reply == NULL) {
321 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
322 goto cleanup_dri_drawable;
323 }
324
325 dri2_surf->base.Width = reply->width;
326 dri2_surf->base.Height = reply->height;
327 dri2_surf->depth = reply->depth;
328 free(reply);
329 }
330
331 if (dri2_dpy->dri2) {
332 xcb_void_cookie_t cookie;
333 int conn_error;
334
335 cookie = xcb_dri2_create_drawable_checked(dri2_dpy->conn,
336 dri2_surf->drawable);
337 error = xcb_request_check(dri2_dpy->conn, cookie);
338 conn_error = xcb_connection_has_error(dri2_dpy->conn);
339 if (conn_error || error != NULL) {
340 if (type == EGL_PBUFFER_BIT || conn_error || error->error_code == BadAlloc)
341 _eglError(EGL_BAD_ALLOC, "xcb_dri2_create_drawable_checked");
342 else if (type == EGL_WINDOW_BIT)
343 _eglError(EGL_BAD_NATIVE_WINDOW,
344 "xcb_dri2_create_drawable_checked");
345 else
346 _eglError(EGL_BAD_NATIVE_PIXMAP,
347 "xcb_dri2_create_drawable_checked");
348 free(error);
349 goto cleanup_dri_drawable;
350 }
351 } else {
352 if (type == EGL_PBUFFER_BIT) {
353 dri2_surf->depth = _eglGetConfigKey(conf, EGL_BUFFER_SIZE);
354 }
355 swrastCreateDrawable(dri2_dpy, dri2_surf);
356 }
357
358 /* we always copy the back buffer to front */
359 dri2_surf->base.PostSubBufferSupportedNV = EGL_TRUE;
360
361 return &dri2_surf->base;
362
363 cleanup_dri_drawable:
364 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
365 cleanup_pixmap:
366 if (type == EGL_PBUFFER_BIT)
367 xcb_free_pixmap(dri2_dpy->conn, dri2_surf->drawable);
368 cleanup_surf:
369 free(dri2_surf);
370
371 return NULL;
372 }
373
374 /**
375 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
376 */
377 static _EGLSurface *
378 dri2_x11_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
379 _EGLConfig *conf, void *native_window,
380 const EGLint *attrib_list)
381 {
382 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
383 _EGLSurface *surf;
384
385 surf = dri2_x11_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
386 native_window, attrib_list);
387 if (surf != NULL) {
388 /* When we first create the DRI2 drawable, its swap interval on the
389 * server side is 1.
390 */
391 surf->SwapInterval = 1;
392
393 /* Override that with a driconf-set value. */
394 dri2_x11_swap_interval(drv, disp, surf, dri2_dpy->default_swap_interval);
395 }
396
397 return surf;
398 }
399
400 static _EGLSurface *
401 dri2_x11_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *disp,
402 _EGLConfig *conf, void *native_pixmap,
403 const EGLint *attrib_list)
404 {
405 return dri2_x11_create_surface(drv, disp, EGL_PIXMAP_BIT, conf,
406 native_pixmap, attrib_list);
407 }
408
409 static _EGLSurface *
410 dri2_x11_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
411 _EGLConfig *conf, const EGLint *attrib_list)
412 {
413 return dri2_x11_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
414 NULL, attrib_list);
415 }
416
417 static EGLBoolean
418 dri2_x11_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
419 {
420 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
421 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
422
423 (void) drv;
424
425 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
426
427 if (dri2_dpy->dri2) {
428 xcb_dri2_destroy_drawable (dri2_dpy->conn, dri2_surf->drawable);
429 } else {
430 assert(dri2_dpy->swrast);
431 swrastDestroyDrawable(dri2_dpy, dri2_surf);
432 }
433
434 if (surf->Type == EGL_PBUFFER_BIT)
435 xcb_free_pixmap (dri2_dpy->conn, dri2_surf->drawable);
436
437 dri2_fini_surface(surf);
438 free(surf);
439
440 return EGL_TRUE;
441 }
442
443 /**
444 * Function utilizes swrastGetDrawableInfo to get surface
445 * geometry from x server and calls default query surface
446 * implementation that returns the updated values.
447 *
448 * In case of errors we still return values that we currently
449 * have.
450 */
451 static EGLBoolean
452 dri2_query_surface(_EGLDriver *drv, _EGLDisplay *disp,
453 _EGLSurface *surf, EGLint attribute,
454 EGLint *value)
455 {
456 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
457 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
458 int x, y, w, h;
459
460 __DRIdrawable *drawable = dri2_dpy->vtbl->get_dri_drawable(surf);
461
462 switch (attribute) {
463 case EGL_WIDTH:
464 case EGL_HEIGHT:
465 if (x11_get_drawable_info(drawable, &x, &y, &w, &h, dri2_surf)) {
466 surf->Width = w;
467 surf->Height = h;
468 }
469 break;
470 default:
471 break;
472 }
473 return _eglQuerySurface(drv, disp, surf, attribute, value);
474 }
475
476 /**
477 * Process list of buffer received from the server
478 *
479 * Processes the list of buffers received in a reply from the server to either
480 * \c DRI2GetBuffers or \c DRI2GetBuffersWithFormat.
481 */
482 static void
483 dri2_x11_process_buffers(struct dri2_egl_surface *dri2_surf,
484 xcb_dri2_dri2_buffer_t *buffers, unsigned count)
485 {
486 struct dri2_egl_display *dri2_dpy =
487 dri2_egl_display(dri2_surf->base.Resource.Display);
488 xcb_rectangle_t rectangle;
489
490 dri2_surf->have_fake_front = false;
491
492 /* This assumes the DRI2 buffer attachment tokens matches the
493 * __DRIbuffer tokens. */
494 for (unsigned i = 0; i < count; i++) {
495 dri2_surf->buffers[i].attachment = buffers[i].attachment;
496 dri2_surf->buffers[i].name = buffers[i].name;
497 dri2_surf->buffers[i].pitch = buffers[i].pitch;
498 dri2_surf->buffers[i].cpp = buffers[i].cpp;
499 dri2_surf->buffers[i].flags = buffers[i].flags;
500
501 /* We only use the DRI drivers single buffer configs. This
502 * means that if we try to render to a window, DRI2 will give us
503 * the fake front buffer, which we'll use as a back buffer.
504 * Note that EGL doesn't require that several clients rendering
505 * to the same window must see the same aux buffers. */
506 if (dri2_surf->buffers[i].attachment == __DRI_BUFFER_FAKE_FRONT_LEFT)
507 dri2_surf->have_fake_front = true;
508 }
509
510 if (dri2_surf->region != XCB_NONE)
511 xcb_xfixes_destroy_region(dri2_dpy->conn, dri2_surf->region);
512
513 rectangle.x = 0;
514 rectangle.y = 0;
515 rectangle.width = dri2_surf->base.Width;
516 rectangle.height = dri2_surf->base.Height;
517 dri2_surf->region = xcb_generate_id(dri2_dpy->conn);
518 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
519 }
520
521 static __DRIbuffer *
522 dri2_x11_get_buffers(__DRIdrawable * driDrawable,
523 int *width, int *height,
524 unsigned int *attachments, int count,
525 int *out_count, void *loaderPrivate)
526 {
527 struct dri2_egl_surface *dri2_surf = loaderPrivate;
528 struct dri2_egl_display *dri2_dpy =
529 dri2_egl_display(dri2_surf->base.Resource.Display);
530 xcb_dri2_dri2_buffer_t *buffers;
531 xcb_dri2_get_buffers_reply_t *reply;
532 xcb_dri2_get_buffers_cookie_t cookie;
533
534 (void) driDrawable;
535
536 cookie = xcb_dri2_get_buffers_unchecked (dri2_dpy->conn,
537 dri2_surf->drawable,
538 count, count, attachments);
539 reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn, cookie, NULL);
540 if (reply == NULL)
541 return NULL;
542 buffers = xcb_dri2_get_buffers_buffers (reply);
543 if (buffers == NULL)
544 return NULL;
545
546 *out_count = reply->count;
547 dri2_surf->base.Width = *width = reply->width;
548 dri2_surf->base.Height = *height = reply->height;
549 dri2_x11_process_buffers(dri2_surf, buffers, *out_count);
550
551 free(reply);
552
553 return dri2_surf->buffers;
554 }
555
556 static __DRIbuffer *
557 dri2_x11_get_buffers_with_format(__DRIdrawable * driDrawable,
558 int *width, int *height,
559 unsigned int *attachments, int count,
560 int *out_count, void *loaderPrivate)
561 {
562 struct dri2_egl_surface *dri2_surf = loaderPrivate;
563 struct dri2_egl_display *dri2_dpy =
564 dri2_egl_display(dri2_surf->base.Resource.Display);
565 xcb_dri2_dri2_buffer_t *buffers;
566 xcb_dri2_get_buffers_with_format_reply_t *reply;
567 xcb_dri2_get_buffers_with_format_cookie_t cookie;
568 xcb_dri2_attach_format_t *format_attachments;
569
570 (void) driDrawable;
571
572 format_attachments = (xcb_dri2_attach_format_t *) attachments;
573 cookie = xcb_dri2_get_buffers_with_format_unchecked (dri2_dpy->conn,
574 dri2_surf->drawable,
575 count, count,
576 format_attachments);
577
578 reply = xcb_dri2_get_buffers_with_format_reply (dri2_dpy->conn,
579 cookie, NULL);
580 if (reply == NULL)
581 return NULL;
582
583 buffers = xcb_dri2_get_buffers_with_format_buffers (reply);
584 dri2_surf->base.Width = *width = reply->width;
585 dri2_surf->base.Height = *height = reply->height;
586 *out_count = reply->count;
587 dri2_x11_process_buffers(dri2_surf, buffers, *out_count);
588
589 free(reply);
590
591 return dri2_surf->buffers;
592 }
593
594 static void
595 dri2_x11_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
596 {
597 (void) driDrawable;
598
599 /* FIXME: Does EGL support front buffer rendering at all? */
600
601 #if 0
602 struct dri2_egl_surface *dri2_surf = loaderPrivate;
603
604 dri2WaitGL(dri2_surf);
605 #else
606 (void) loaderPrivate;
607 #endif
608 }
609
610 static int
611 dri2_x11_do_authenticate(struct dri2_egl_display *dri2_dpy, uint32_t id)
612 {
613 xcb_dri2_authenticate_reply_t *authenticate;
614 xcb_dri2_authenticate_cookie_t authenticate_cookie;
615 int ret = 0;
616
617 authenticate_cookie =
618 xcb_dri2_authenticate_unchecked(dri2_dpy->conn, dri2_dpy->screen->root, id);
619 authenticate =
620 xcb_dri2_authenticate_reply(dri2_dpy->conn, authenticate_cookie, NULL);
621
622 if (authenticate == NULL || !authenticate->authenticated)
623 ret = -1;
624
625 free(authenticate);
626
627 return ret;
628 }
629
630 static EGLBoolean
631 dri2_x11_local_authenticate(struct dri2_egl_display *dri2_dpy)
632 {
633 #ifdef HAVE_LIBDRM
634 drm_magic_t magic;
635
636 if (drmGetMagic(dri2_dpy->fd, &magic)) {
637 _eglLog(_EGL_WARNING, "DRI2: failed to get drm magic");
638 return EGL_FALSE;
639 }
640
641 if (dri2_x11_do_authenticate(dri2_dpy, magic) < 0) {
642 _eglLog(_EGL_WARNING, "DRI2: failed to authenticate");
643 return EGL_FALSE;
644 }
645 #endif
646 return EGL_TRUE;
647 }
648
649 static EGLBoolean
650 dri2_x11_connect(struct dri2_egl_display *dri2_dpy)
651 {
652 xcb_xfixes_query_version_reply_t *xfixes_query;
653 xcb_xfixes_query_version_cookie_t xfixes_query_cookie;
654 xcb_dri2_query_version_reply_t *dri2_query;
655 xcb_dri2_query_version_cookie_t dri2_query_cookie;
656 xcb_dri2_connect_reply_t *connect;
657 xcb_dri2_connect_cookie_t connect_cookie;
658 xcb_generic_error_t *error;
659 char *driver_name, *loader_driver_name, *device_name;
660 const xcb_query_extension_reply_t *extension;
661
662 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_xfixes_id);
663 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_dri2_id);
664
665 extension = xcb_get_extension_data(dri2_dpy->conn, &xcb_xfixes_id);
666 if (!(extension && extension->present))
667 return EGL_FALSE;
668
669 extension = xcb_get_extension_data(dri2_dpy->conn, &xcb_dri2_id);
670 if (!(extension && extension->present))
671 return EGL_FALSE;
672
673 xfixes_query_cookie = xcb_xfixes_query_version(dri2_dpy->conn,
674 XCB_XFIXES_MAJOR_VERSION,
675 XCB_XFIXES_MINOR_VERSION);
676
677 dri2_query_cookie = xcb_dri2_query_version (dri2_dpy->conn,
678 XCB_DRI2_MAJOR_VERSION,
679 XCB_DRI2_MINOR_VERSION);
680
681 connect_cookie = xcb_dri2_connect_unchecked(dri2_dpy->conn, dri2_dpy->screen->root,
682 XCB_DRI2_DRIVER_TYPE_DRI);
683
684 xfixes_query =
685 xcb_xfixes_query_version_reply (dri2_dpy->conn,
686 xfixes_query_cookie, &error);
687 if (xfixes_query == NULL ||
688 error != NULL || xfixes_query->major_version < 2) {
689 _eglLog(_EGL_WARNING, "DRI2: failed to query xfixes version");
690 free(error);
691 free(xfixes_query);
692 return EGL_FALSE;
693 }
694 free(xfixes_query);
695
696 dri2_query =
697 xcb_dri2_query_version_reply (dri2_dpy->conn, dri2_query_cookie, &error);
698 if (dri2_query == NULL || error != NULL) {
699 _eglLog(_EGL_WARNING, "DRI2: failed to query version");
700 free(error);
701 return EGL_FALSE;
702 }
703 dri2_dpy->dri2_major = dri2_query->major_version;
704 dri2_dpy->dri2_minor = dri2_query->minor_version;
705 free(dri2_query);
706
707 connect = xcb_dri2_connect_reply (dri2_dpy->conn, connect_cookie, NULL);
708 if (connect == NULL ||
709 connect->driver_name_length + connect->device_name_length == 0) {
710 _eglLog(_EGL_WARNING, "DRI2: failed to authenticate");
711 return EGL_FALSE;
712 }
713
714 device_name = xcb_dri2_connect_device_name (connect);
715
716 dri2_dpy->fd = loader_open_device(device_name);
717 if (dri2_dpy->fd == -1) {
718 _eglLog(_EGL_WARNING,
719 "DRI2: could not open %s (%s)", device_name, strerror(errno));
720 free(connect);
721 return EGL_FALSE;
722 }
723
724 if (!dri2_x11_local_authenticate(dri2_dpy)) {
725 close(dri2_dpy->fd);
726 free(connect);
727 return EGL_FALSE;
728 }
729
730 driver_name = xcb_dri2_connect_driver_name (connect);
731
732 /* If Mesa knows about the appropriate driver for this fd, then trust it.
733 * Otherwise, default to the server's value.
734 */
735 loader_driver_name = loader_get_driver_for_fd(dri2_dpy->fd);
736 if (loader_driver_name) {
737 dri2_dpy->driver_name = loader_driver_name;
738 } else {
739 dri2_dpy->driver_name =
740 strndup(driver_name,
741 xcb_dri2_connect_driver_name_length(connect));
742 }
743
744 if (dri2_dpy->driver_name == NULL) {
745 close(dri2_dpy->fd);
746 free(connect);
747 return EGL_FALSE;
748 }
749
750 #ifdef HAVE_WAYLAND_PLATFORM
751 dri2_dpy->device_name =
752 strndup(device_name,
753 xcb_dri2_connect_device_name_length(connect));
754 #endif
755
756 free(connect);
757
758 return EGL_TRUE;
759 }
760
761 static int
762 dri2_x11_authenticate(_EGLDisplay *disp, uint32_t id)
763 {
764 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
765
766 return dri2_x11_do_authenticate(dri2_dpy, id);
767 }
768
769 static bool
770 dri2_x11_config_match_attrib(struct dri2_egl_display *dri2_dpy,
771 const __DRIconfig *config,
772 unsigned int attrib,
773 unsigned int value)
774 {
775 uint32_t config_val;
776 if (!dri2_dpy->core->getConfigAttrib(config, attrib, &config_val))
777 return false;
778 return config_val == value;
779 }
780
781 static EGLBoolean
782 dri2_x11_add_configs_for_visuals(struct dri2_egl_display *dri2_dpy,
783 _EGLDisplay *disp, bool supports_preserved)
784 {
785 xcb_depth_iterator_t d;
786 xcb_visualtype_t *visuals;
787 int config_count = 0;
788 EGLint surface_type;
789
790 d = xcb_screen_allowed_depths_iterator(dri2_dpy->screen);
791
792 surface_type =
793 EGL_WINDOW_BIT |
794 EGL_PIXMAP_BIT |
795 EGL_PBUFFER_BIT;
796
797 if (supports_preserved)
798 surface_type |= EGL_SWAP_BEHAVIOR_PRESERVED_BIT;
799
800 while (d.rem > 0) {
801 EGLBoolean class_added[6] = { 0, };
802
803 visuals = xcb_depth_visuals(d.data);
804
805 for (int i = 0; i < xcb_depth_visuals_length(d.data); i++) {
806 if (class_added[visuals[i]._class])
807 continue;
808
809 class_added[visuals[i]._class] = EGL_TRUE;
810
811 for (int j = 0; dri2_dpy->driver_configs[j]; j++) {
812 struct dri2_egl_config *dri2_conf;
813 const __DRIconfig *config = dri2_dpy->driver_configs[j];
814
815 const EGLint config_attrs[] = {
816 EGL_NATIVE_VISUAL_ID, visuals[i].visual_id,
817 EGL_NATIVE_VISUAL_TYPE, visuals[i]._class,
818 EGL_NONE
819 };
820
821 unsigned int rgba_masks[4] = {
822 visuals[i].red_mask,
823 visuals[i].green_mask,
824 visuals[i].blue_mask,
825 0,
826 };
827
828 dri2_conf = dri2_add_config(disp, config, config_count + 1,
829 surface_type, config_attrs,
830 rgba_masks);
831 if (dri2_conf)
832 if (dri2_conf->base.ConfigID == config_count + 1)
833 config_count++;
834
835 /* Allow a 24-bit RGB visual to match a 32-bit RGBA EGLConfig.
836 * Ditto for 30-bit RGB visuals to match a 32-bit RGBA EGLConfig.
837 * Otherwise it will only match a 32-bit RGBA visual. On a
838 * composited window manager on X11, this will make all of the
839 * EGLConfigs with destination alpha get blended by the
840 * compositor. This is probably not what the application
841 * wants... especially on drivers that only have 32-bit RGBA
842 * EGLConfigs! */
843 if (d.data->depth == 24 || d.data->depth == 30) {
844 rgba_masks[3] =
845 ~(rgba_masks[0] | rgba_masks[1] | rgba_masks[2]);
846 dri2_conf = dri2_add_config(disp, config, config_count + 1,
847 surface_type, config_attrs,
848 rgba_masks);
849 if (dri2_conf)
850 if (dri2_conf->base.ConfigID == config_count + 1)
851 config_count++;
852 }
853 }
854 }
855
856 xcb_depth_next(&d);
857 }
858
859 /* Add a 565-no-depth-no-stencil pbuffer-only config. If X11 is depth 24,
860 * we wouldn't have 565 available, which the CTS demands.
861 */
862 for (int j = 0; dri2_dpy->driver_configs[j]; j++) {
863 const __DRIconfig *config = dri2_dpy->driver_configs[j];
864 const EGLint config_attrs[] = {
865 EGL_NATIVE_VISUAL_ID, 0,
866 EGL_NATIVE_VISUAL_TYPE, EGL_NONE,
867 EGL_NONE
868 };
869 EGLint surface_type = EGL_PBUFFER_BIT;
870 unsigned int rgba_masks[4] = {
871 0x1f << 11,
872 0x3f << 5,
873 0x1f << 0,
874 0,
875 };
876
877 /* Check that we've found single-sample, no depth, no stencil. */
878 if (!dri2_x11_config_match_attrib(dri2_dpy, config,
879 __DRI_ATTRIB_DEPTH_SIZE, 0) ||
880 !dri2_x11_config_match_attrib(dri2_dpy, config,
881 __DRI_ATTRIB_STENCIL_SIZE, 0) ||
882 !dri2_x11_config_match_attrib(dri2_dpy, config,
883 __DRI_ATTRIB_SAMPLES, 0)) {
884 continue;
885 }
886
887 if (dri2_add_config(disp, config, config_count + 1, surface_type,
888 config_attrs, rgba_masks)) {
889 config_count++;
890 break;
891 }
892 }
893
894 if (!config_count) {
895 _eglLog(_EGL_WARNING, "DRI2: failed to create any config");
896 return EGL_FALSE;
897 }
898
899 return EGL_TRUE;
900 }
901
902 static EGLBoolean
903 dri2_copy_region(_EGLDriver *drv, _EGLDisplay *disp,
904 _EGLSurface *draw, xcb_xfixes_region_t region)
905 {
906 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
907 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
908 enum xcb_dri2_attachment_t render_attachment;
909 xcb_dri2_copy_region_cookie_t cookie;
910
911 /* No-op for a pixmap or pbuffer surface */
912 if (draw->Type == EGL_PIXMAP_BIT || draw->Type == EGL_PBUFFER_BIT)
913 return EGL_TRUE;
914
915 dri2_dpy->flush->flush(dri2_surf->dri_drawable);
916
917 if (dri2_surf->have_fake_front)
918 render_attachment = XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_LEFT;
919 else
920 render_attachment = XCB_DRI2_ATTACHMENT_BUFFER_BACK_LEFT;
921
922 cookie = xcb_dri2_copy_region_unchecked(dri2_dpy->conn,
923 dri2_surf->drawable,
924 region,
925 XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT,
926 render_attachment);
927 free(xcb_dri2_copy_region_reply(dri2_dpy->conn, cookie, NULL));
928
929 return EGL_TRUE;
930 }
931
932 static int64_t
933 dri2_x11_swap_buffers_msc(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw,
934 int64_t msc, int64_t divisor, int64_t remainder)
935 {
936 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
937 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
938 uint32_t msc_hi = msc >> 32;
939 uint32_t msc_lo = msc & 0xffffffff;
940 uint32_t divisor_hi = divisor >> 32;
941 uint32_t divisor_lo = divisor & 0xffffffff;
942 uint32_t remainder_hi = remainder >> 32;
943 uint32_t remainder_lo = remainder & 0xffffffff;
944 xcb_dri2_swap_buffers_cookie_t cookie;
945 xcb_dri2_swap_buffers_reply_t *reply;
946 int64_t swap_count = -1;
947
948 if (draw->SwapBehavior == EGL_BUFFER_PRESERVED || !dri2_dpy->swap_available) {
949 swap_count = dri2_copy_region(drv, disp, draw, dri2_surf->region) ? 0 : -1;
950 } else {
951 dri2_flush_drawable_for_swapbuffers(disp, draw);
952
953 cookie = xcb_dri2_swap_buffers_unchecked(dri2_dpy->conn,
954 dri2_surf->drawable, msc_hi,
955 msc_lo, divisor_hi, divisor_lo,
956 remainder_hi, remainder_lo);
957
958 reply = xcb_dri2_swap_buffers_reply(dri2_dpy->conn, cookie, NULL);
959
960 if (reply) {
961 swap_count = combine_u32_into_u64(reply->swap_hi, reply->swap_lo);
962 free(reply);
963 }
964 }
965
966 /* Since we aren't watching for the server's invalidate events like we're
967 * supposed to (due to XCB providing no mechanism for filtering the events
968 * the way xlib does), and SwapBuffers is a common cause of invalidate
969 * events, just shove one down to the driver, even though we haven't told
970 * the driver that we're the kind of loader that provides reliable
971 * invalidate events. This causes the driver to request buffers again at
972 * its next draw, so that we get the correct buffers if a pageflip
973 * happened. The driver should still be using the viewport hack to catch
974 * window resizes.
975 */
976 if (dri2_dpy->flush->base.version >= 3 && dri2_dpy->flush->invalidate)
977 dri2_dpy->flush->invalidate(dri2_surf->dri_drawable);
978
979 return swap_count;
980 }
981
982 static EGLBoolean
983 dri2_x11_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
984 {
985 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
986 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
987
988 if (!dri2_dpy->flush) {
989 dri2_dpy->core->swapBuffers(dri2_surf->dri_drawable);
990 return EGL_TRUE;
991 }
992
993 if (dri2_x11_swap_buffers_msc(drv, disp, draw, 0, 0, 0) == -1) {
994 /* Swap failed with a window drawable. */
995 return _eglError(EGL_BAD_NATIVE_WINDOW, __func__);
996 }
997 return EGL_TRUE;
998 }
999
1000 static EGLBoolean
1001 dri2_x11_swap_buffers_region(_EGLDriver *drv, _EGLDisplay *disp,
1002 _EGLSurface *draw,
1003 EGLint numRects, const EGLint *rects)
1004 {
1005 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1006 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1007 EGLBoolean ret;
1008 xcb_xfixes_region_t region;
1009 xcb_rectangle_t rectangles[16];
1010
1011 if (numRects > (int)ARRAY_SIZE(rectangles))
1012 return dri2_copy_region(drv, disp, draw, dri2_surf->region);
1013
1014 for (int i = 0; i < numRects; i++) {
1015 rectangles[i].x = rects[i * 4];
1016 rectangles[i].y = dri2_surf->base.Height - rects[i * 4 + 1] - rects[i * 4 + 3];
1017 rectangles[i].width = rects[i * 4 + 2];
1018 rectangles[i].height = rects[i * 4 + 3];
1019 }
1020
1021 region = xcb_generate_id(dri2_dpy->conn);
1022 xcb_xfixes_create_region(dri2_dpy->conn, region, numRects, rectangles);
1023 ret = dri2_copy_region(drv, disp, draw, region);
1024 xcb_xfixes_destroy_region(dri2_dpy->conn, region);
1025
1026 return ret;
1027 }
1028
1029 static EGLBoolean
1030 dri2_x11_post_sub_buffer(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw,
1031 EGLint x, EGLint y, EGLint width, EGLint height)
1032 {
1033 const EGLint rect[4] = { x, y, width, height };
1034
1035 if (x < 0 || y < 0 || width < 0 || height < 0)
1036 _eglError(EGL_BAD_PARAMETER, "eglPostSubBufferNV");
1037
1038 return dri2_x11_swap_buffers_region(drv, disp, draw, 1, rect);
1039 }
1040
1041 static EGLBoolean
1042 dri2_x11_swap_interval(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
1043 EGLint interval)
1044 {
1045 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1046 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1047
1048 if (dri2_dpy->swap_available)
1049 xcb_dri2_swap_interval(dri2_dpy->conn, dri2_surf->drawable, interval);
1050
1051 return EGL_TRUE;
1052 }
1053
1054 static EGLBoolean
1055 dri2_x11_copy_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
1056 void *native_pixmap_target)
1057 {
1058 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1059 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1060 xcb_gcontext_t gc;
1061 xcb_pixmap_t target;
1062
1063 STATIC_ASSERT(sizeof(uintptr_t) == sizeof(native_pixmap_target));
1064 target = (uintptr_t) native_pixmap_target;
1065
1066 (void) drv;
1067
1068 dri2_dpy->flush->flush(dri2_surf->dri_drawable);
1069
1070 gc = xcb_generate_id(dri2_dpy->conn);
1071 xcb_create_gc(dri2_dpy->conn, gc, target, 0, NULL);
1072 xcb_copy_area(dri2_dpy->conn,
1073 dri2_surf->drawable,
1074 target,
1075 gc,
1076 0, 0,
1077 0, 0,
1078 dri2_surf->base.Width,
1079 dri2_surf->base.Height);
1080 xcb_free_gc(dri2_dpy->conn, gc);
1081
1082 return EGL_TRUE;
1083 }
1084
1085 uint32_t
1086 dri2_format_for_depth(struct dri2_egl_display *dri2_dpy, uint32_t depth)
1087 {
1088 switch (depth) {
1089 case 16:
1090 return __DRI_IMAGE_FORMAT_RGB565;
1091 case 24:
1092 return __DRI_IMAGE_FORMAT_XRGB8888;
1093 case 30:
1094 /* Different preferred formats for different hw */
1095 if (dri2_x11_get_red_mask_for_depth(dri2_dpy, 30) == 0x3ff)
1096 return __DRI_IMAGE_FORMAT_XBGR2101010;
1097 else
1098 return __DRI_IMAGE_FORMAT_XRGB2101010;
1099 case 32:
1100 return __DRI_IMAGE_FORMAT_ARGB8888;
1101 default:
1102 return __DRI_IMAGE_FORMAT_NONE;
1103 }
1104 }
1105
1106 static _EGLImage *
1107 dri2_create_image_khr_pixmap(_EGLDisplay *disp, _EGLContext *ctx,
1108 EGLClientBuffer buffer, const EGLint *attr_list)
1109 {
1110 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1111 struct dri2_egl_image *dri2_img;
1112 unsigned int attachments[1];
1113 xcb_drawable_t drawable;
1114 xcb_dri2_get_buffers_cookie_t buffers_cookie;
1115 xcb_dri2_get_buffers_reply_t *buffers_reply;
1116 xcb_dri2_dri2_buffer_t *buffers;
1117 xcb_get_geometry_cookie_t geometry_cookie;
1118 xcb_get_geometry_reply_t *geometry_reply;
1119 xcb_generic_error_t *error;
1120 int stride, format;
1121
1122 (void) ctx;
1123
1124 drawable = (xcb_drawable_t) (uintptr_t) buffer;
1125 xcb_dri2_create_drawable (dri2_dpy->conn, drawable);
1126 attachments[0] = XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT;
1127 buffers_cookie =
1128 xcb_dri2_get_buffers_unchecked (dri2_dpy->conn,
1129 drawable, 1, 1, attachments);
1130 geometry_cookie = xcb_get_geometry (dri2_dpy->conn, drawable);
1131 buffers_reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn,
1132 buffers_cookie, NULL);
1133 if (buffers_reply == NULL)
1134 return NULL;
1135
1136 buffers = xcb_dri2_get_buffers_buffers (buffers_reply);
1137 if (buffers == NULL) {
1138 return NULL;
1139 }
1140
1141 geometry_reply = xcb_get_geometry_reply (dri2_dpy->conn,
1142 geometry_cookie, &error);
1143 if (geometry_reply == NULL || error != NULL) {
1144 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
1145 free(error);
1146 free(buffers_reply);
1147 return NULL;
1148 }
1149
1150 format = dri2_format_for_depth(dri2_dpy, geometry_reply->depth);
1151 if (format == __DRI_IMAGE_FORMAT_NONE) {
1152 _eglError(EGL_BAD_PARAMETER,
1153 "dri2_create_image_khr: unsupported pixmap depth");
1154 free(buffers_reply);
1155 free(geometry_reply);
1156 return NULL;
1157 }
1158
1159 dri2_img = malloc(sizeof *dri2_img);
1160 if (!dri2_img) {
1161 free(buffers_reply);
1162 free(geometry_reply);
1163 _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
1164 return EGL_NO_IMAGE_KHR;
1165 }
1166
1167 _eglInitImage(&dri2_img->base, disp);
1168
1169 stride = buffers[0].pitch / buffers[0].cpp;
1170 dri2_img->dri_image =
1171 dri2_dpy->image->createImageFromName(dri2_dpy->dri_screen,
1172 buffers_reply->width,
1173 buffers_reply->height,
1174 format,
1175 buffers[0].name,
1176 stride,
1177 dri2_img);
1178
1179 free(buffers_reply);
1180 free(geometry_reply);
1181
1182 return &dri2_img->base;
1183 }
1184
1185 static _EGLImage *
1186 dri2_x11_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
1187 _EGLContext *ctx, EGLenum target,
1188 EGLClientBuffer buffer, const EGLint *attr_list)
1189 {
1190 (void) drv;
1191
1192 switch (target) {
1193 case EGL_NATIVE_PIXMAP_KHR:
1194 return dri2_create_image_khr_pixmap(disp, ctx, buffer, attr_list);
1195 default:
1196 return dri2_create_image_khr(drv, disp, ctx, target, buffer, attr_list);
1197 }
1198 }
1199
1200 static EGLBoolean
1201 dri2_x11_get_sync_values(_EGLDisplay *display, _EGLSurface *surface,
1202 EGLuint64KHR *ust, EGLuint64KHR *msc,
1203 EGLuint64KHR *sbc)
1204 {
1205 struct dri2_egl_display *dri2_dpy = dri2_egl_display(display);
1206 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surface);
1207 xcb_dri2_get_msc_cookie_t cookie;
1208 xcb_dri2_get_msc_reply_t *reply;
1209
1210 cookie = xcb_dri2_get_msc(dri2_dpy->conn, dri2_surf->drawable);
1211 reply = xcb_dri2_get_msc_reply(dri2_dpy->conn, cookie, NULL);
1212
1213 if (!reply)
1214 return _eglError(EGL_BAD_ACCESS, __func__);
1215
1216 *ust = ((EGLuint64KHR) reply->ust_hi << 32) | reply->ust_lo;
1217 *msc = ((EGLuint64KHR) reply->msc_hi << 32) | reply->msc_lo;
1218 *sbc = ((EGLuint64KHR) reply->sbc_hi << 32) | reply->sbc_lo;
1219 free(reply);
1220
1221 return EGL_TRUE;
1222 }
1223
1224 static const struct dri2_egl_display_vtbl dri2_x11_swrast_display_vtbl = {
1225 .authenticate = NULL,
1226 .create_window_surface = dri2_x11_create_window_surface,
1227 .create_pixmap_surface = dri2_x11_create_pixmap_surface,
1228 .create_pbuffer_surface = dri2_x11_create_pbuffer_surface,
1229 .destroy_surface = dri2_x11_destroy_surface,
1230 .create_image = dri2_create_image_khr,
1231 .swap_buffers = dri2_x11_swap_buffers,
1232 .set_damage_region = dri2_fallback_set_damage_region,
1233 .swap_buffers_region = dri2_fallback_swap_buffers_region,
1234 .post_sub_buffer = dri2_fallback_post_sub_buffer,
1235 /* XXX: should really implement this since X11 has pixmaps */
1236 .copy_buffers = dri2_fallback_copy_buffers,
1237 .query_buffer_age = dri2_fallback_query_buffer_age,
1238 .query_surface = dri2_query_surface,
1239 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1240 .get_sync_values = dri2_fallback_get_sync_values,
1241 .get_dri_drawable = dri2_surface_get_dri_drawable,
1242 };
1243
1244 static const struct dri2_egl_display_vtbl dri2_x11_display_vtbl = {
1245 .authenticate = dri2_x11_authenticate,
1246 .create_window_surface = dri2_x11_create_window_surface,
1247 .create_pixmap_surface = dri2_x11_create_pixmap_surface,
1248 .create_pbuffer_surface = dri2_x11_create_pbuffer_surface,
1249 .destroy_surface = dri2_x11_destroy_surface,
1250 .create_image = dri2_x11_create_image_khr,
1251 .swap_interval = dri2_x11_swap_interval,
1252 .swap_buffers = dri2_x11_swap_buffers,
1253 .swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,
1254 .swap_buffers_region = dri2_x11_swap_buffers_region,
1255 .set_damage_region = dri2_fallback_set_damage_region,
1256 .post_sub_buffer = dri2_x11_post_sub_buffer,
1257 .copy_buffers = dri2_x11_copy_buffers,
1258 .query_buffer_age = dri2_fallback_query_buffer_age,
1259 .query_surface = dri2_query_surface,
1260 .create_wayland_buffer_from_image = dri2_fallback_create_wayland_buffer_from_image,
1261 .get_sync_values = dri2_x11_get_sync_values,
1262 .get_dri_drawable = dri2_surface_get_dri_drawable,
1263 };
1264
1265 static const __DRIswrastLoaderExtension swrast_loader_extension = {
1266 .base = { __DRI_SWRAST_LOADER, 1 },
1267
1268 .getDrawableInfo = swrastGetDrawableInfo,
1269 .putImage = swrastPutImage,
1270 .getImage = swrastGetImage,
1271 };
1272
1273 static const __DRIextension *swrast_loader_extensions[] = {
1274 &swrast_loader_extension.base,
1275 &image_lookup_extension.base,
1276 NULL,
1277 };
1278
1279 static EGLBoolean
1280 dri2_get_xcb_connection(_EGLDriver *drv, _EGLDisplay *disp,
1281 struct dri2_egl_display *dri2_dpy)
1282 {
1283 xcb_screen_iterator_t s;
1284 int screen = (uintptr_t)disp->Options.Platform;
1285 const char *msg;
1286
1287 disp->DriverData = (void *) dri2_dpy;
1288 if (disp->PlatformDisplay == NULL) {
1289 dri2_dpy->conn = xcb_connect(NULL, &screen);
1290 dri2_dpy->own_device = true;
1291 } else {
1292 Display *dpy = disp->PlatformDisplay;
1293
1294 dri2_dpy->conn = XGetXCBConnection(dpy);
1295 screen = DefaultScreen(dpy);
1296 }
1297
1298 if (!dri2_dpy->conn || xcb_connection_has_error(dri2_dpy->conn)) {
1299 msg = "xcb_connect failed";
1300 goto disconnect;
1301 }
1302
1303 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
1304 dri2_dpy->screen = get_xcb_screen(s, screen);
1305 if (!dri2_dpy->screen) {
1306 msg = "failed to get xcb screen";
1307 goto disconnect;
1308 }
1309
1310 return EGL_TRUE;
1311 disconnect:
1312 if (disp->PlatformDisplay == NULL)
1313 xcb_disconnect(dri2_dpy->conn);
1314
1315 return _eglError(EGL_BAD_ALLOC, msg);
1316 }
1317
1318 static EGLBoolean
1319 dri2_initialize_x11_swrast(_EGLDriver *drv, _EGLDisplay *disp)
1320 {
1321 _EGLDevice *dev;
1322 struct dri2_egl_display *dri2_dpy;
1323
1324 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1325 if (!dri2_dpy)
1326 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1327
1328 dri2_dpy->fd = -1;
1329 if (!dri2_get_xcb_connection(drv, disp, dri2_dpy))
1330 goto cleanup;
1331
1332 dev = _eglAddDevice(dri2_dpy->fd, true);
1333 if (!dev) {
1334 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1335 goto cleanup;
1336 }
1337
1338 disp->Device = dev;
1339
1340 /*
1341 * Every hardware driver_name is set using strdup. Doing the same in
1342 * here will allow is to simply free the memory at dri2_terminate().
1343 */
1344 dri2_dpy->driver_name = strdup("swrast");
1345 if (!dri2_load_driver_swrast(disp))
1346 goto cleanup;
1347
1348 dri2_dpy->loader_extensions = swrast_loader_extensions;
1349
1350 if (!dri2_create_screen(disp))
1351 goto cleanup;
1352
1353 if (!dri2_setup_extensions(disp))
1354 goto cleanup;
1355
1356 dri2_setup_screen(disp);
1357
1358 if (!dri2_x11_add_configs_for_visuals(dri2_dpy, disp, true))
1359 goto cleanup;
1360
1361 /* Fill vtbl last to prevent accidentally calling virtual function during
1362 * initialization.
1363 */
1364 dri2_dpy->vtbl = &dri2_x11_swrast_display_vtbl;
1365
1366 return EGL_TRUE;
1367
1368 cleanup:
1369 dri2_display_destroy(disp);
1370 return EGL_FALSE;
1371 }
1372
1373 static void
1374 dri2_x11_setup_swap_interval(_EGLDisplay *disp)
1375 {
1376 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1377 int arbitrary_max_interval = 1000;
1378
1379 /* default behavior for no SwapBuffers support: no vblank syncing
1380 * either.
1381 */
1382 dri2_dpy->min_swap_interval = 0;
1383 dri2_dpy->max_swap_interval = 0;
1384 dri2_dpy->default_swap_interval = 0;
1385
1386 if (!dri2_dpy->swap_available)
1387 return;
1388
1389 /* If we do have swapbuffers, then we can support pretty much any swap
1390 * interval.
1391 */
1392 dri2_setup_swap_interval(disp, arbitrary_max_interval);
1393 }
1394
1395 #ifdef HAVE_DRI3
1396
1397 static const __DRIextension *dri3_image_loader_extensions[] = {
1398 &dri3_image_loader_extension.base,
1399 &image_lookup_extension.base,
1400 &use_invalidate.base,
1401 &background_callable_extension.base,
1402 NULL,
1403 };
1404
1405 static EGLBoolean
1406 dri2_initialize_x11_dri3(_EGLDriver *drv, _EGLDisplay *disp)
1407 {
1408 _EGLDevice *dev;
1409 struct dri2_egl_display *dri2_dpy;
1410
1411 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1412 if (!dri2_dpy)
1413 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1414
1415 dri2_dpy->fd = -1;
1416 if (!dri2_get_xcb_connection(drv, disp, dri2_dpy))
1417 goto cleanup;
1418
1419 if (!dri3_x11_connect(dri2_dpy))
1420 goto cleanup;
1421
1422 dev = _eglAddDevice(dri2_dpy->fd, false);
1423 if (!dev) {
1424 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1425 goto cleanup;
1426 }
1427
1428 disp->Device = dev;
1429
1430 if (!dri2_load_driver_dri3(disp))
1431 goto cleanup;
1432
1433 dri2_dpy->loader_extensions = dri3_image_loader_extensions;
1434
1435 dri2_dpy->swap_available = true;
1436 dri2_dpy->invalidate_available = true;
1437
1438 if (!dri2_create_screen(disp))
1439 goto cleanup;
1440
1441 if (!dri2_setup_extensions(disp))
1442 goto cleanup;
1443
1444 dri2_setup_screen(disp);
1445
1446 dri2_x11_setup_swap_interval(disp);
1447
1448 if (!dri2_dpy->is_different_gpu)
1449 disp->Extensions.KHR_image_pixmap = EGL_TRUE;
1450 disp->Extensions.NOK_texture_from_pixmap = EGL_TRUE;
1451 disp->Extensions.CHROMIUM_sync_control = EGL_TRUE;
1452 disp->Extensions.EXT_buffer_age = EGL_TRUE;
1453
1454 dri2_set_WL_bind_wayland_display(drv, disp);
1455
1456 if (!dri2_x11_add_configs_for_visuals(dri2_dpy, disp, false))
1457 goto cleanup;
1458
1459 dri2_dpy->loader_dri3_ext.core = dri2_dpy->core;
1460 dri2_dpy->loader_dri3_ext.image_driver = dri2_dpy->image_driver;
1461 dri2_dpy->loader_dri3_ext.flush = dri2_dpy->flush;
1462 dri2_dpy->loader_dri3_ext.tex_buffer = dri2_dpy->tex_buffer;
1463 dri2_dpy->loader_dri3_ext.image = dri2_dpy->image;
1464 dri2_dpy->loader_dri3_ext.config = dri2_dpy->config;
1465
1466 /* Fill vtbl last to prevent accidentally calling virtual function during
1467 * initialization.
1468 */
1469 dri2_dpy->vtbl = &dri3_x11_display_vtbl;
1470
1471 _eglLog(_EGL_INFO, "Using DRI3");
1472
1473 return EGL_TRUE;
1474
1475 cleanup:
1476 dri2_display_destroy(disp);
1477 return EGL_FALSE;
1478 }
1479 #endif
1480
1481 static const __DRIdri2LoaderExtension dri2_loader_extension_old = {
1482 .base = { __DRI_DRI2_LOADER, 2 },
1483
1484 .getBuffers = dri2_x11_get_buffers,
1485 .flushFrontBuffer = dri2_x11_flush_front_buffer,
1486 .getBuffersWithFormat = NULL,
1487 };
1488
1489 static const __DRIdri2LoaderExtension dri2_loader_extension = {
1490 .base = { __DRI_DRI2_LOADER, 3 },
1491
1492 .getBuffers = dri2_x11_get_buffers,
1493 .flushFrontBuffer = dri2_x11_flush_front_buffer,
1494 .getBuffersWithFormat = dri2_x11_get_buffers_with_format,
1495 };
1496
1497 static const __DRIextension *dri2_loader_extensions_old[] = {
1498 &dri2_loader_extension_old.base,
1499 &image_lookup_extension.base,
1500 &background_callable_extension.base,
1501 NULL,
1502 };
1503
1504 static const __DRIextension *dri2_loader_extensions[] = {
1505 &dri2_loader_extension.base,
1506 &image_lookup_extension.base,
1507 &use_invalidate.base,
1508 &background_callable_extension.base,
1509 NULL,
1510 };
1511
1512 static EGLBoolean
1513 dri2_initialize_x11_dri2(_EGLDriver *drv, _EGLDisplay *disp)
1514 {
1515 _EGLDevice *dev;
1516 struct dri2_egl_display *dri2_dpy;
1517
1518 dri2_dpy = calloc(1, sizeof *dri2_dpy);
1519 if (!dri2_dpy)
1520 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
1521
1522 dri2_dpy->fd = -1;
1523 if (!dri2_get_xcb_connection(drv, disp, dri2_dpy))
1524 goto cleanup;
1525
1526 if (!dri2_x11_connect(dri2_dpy))
1527 goto cleanup;
1528
1529 dev = _eglAddDevice(dri2_dpy->fd, false);
1530 if (!dev) {
1531 _eglError(EGL_NOT_INITIALIZED, "DRI2: failed to find EGLDevice");
1532 goto cleanup;
1533 }
1534
1535 disp->Device = dev;
1536
1537 if (!dri2_load_driver(disp))
1538 goto cleanup;
1539
1540 if (dri2_dpy->dri2_minor >= 1)
1541 dri2_dpy->loader_extensions = dri2_loader_extensions;
1542 else
1543 dri2_dpy->loader_extensions = dri2_loader_extensions_old;
1544
1545 dri2_dpy->swap_available = (dri2_dpy->dri2_minor >= 2);
1546 dri2_dpy->invalidate_available = (dri2_dpy->dri2_minor >= 3);
1547
1548 if (!dri2_create_screen(disp))
1549 goto cleanup;
1550
1551 if (!dri2_setup_extensions(disp))
1552 goto cleanup;
1553
1554 dri2_setup_screen(disp);
1555
1556 dri2_x11_setup_swap_interval(disp);
1557
1558 disp->Extensions.KHR_image_pixmap = EGL_TRUE;
1559 disp->Extensions.NOK_swap_region = EGL_TRUE;
1560 disp->Extensions.NOK_texture_from_pixmap = EGL_TRUE;
1561 disp->Extensions.NV_post_sub_buffer = EGL_TRUE;
1562 disp->Extensions.CHROMIUM_sync_control = EGL_TRUE;
1563
1564 dri2_set_WL_bind_wayland_display(drv, disp);
1565
1566 if (!dri2_x11_add_configs_for_visuals(dri2_dpy, disp, true))
1567 goto cleanup;
1568
1569 /* Fill vtbl last to prevent accidentally calling virtual function during
1570 * initialization.
1571 */
1572 dri2_dpy->vtbl = &dri2_x11_display_vtbl;
1573
1574 _eglLog(_EGL_INFO, "Using DRI2");
1575
1576 return EGL_TRUE;
1577
1578 cleanup:
1579 dri2_display_destroy(disp);
1580 return EGL_FALSE;
1581 }
1582
1583 EGLBoolean
1584 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp)
1585 {
1586 EGLBoolean initialized = EGL_FALSE;
1587
1588 if (!disp->Options.ForceSoftware) {
1589 #ifdef HAVE_DRI3
1590 if (!env_var_as_boolean("LIBGL_DRI3_DISABLE", false))
1591 initialized = dri2_initialize_x11_dri3(drv, disp);
1592 #endif
1593
1594 if (!initialized)
1595 initialized = dri2_initialize_x11_dri2(drv, disp);
1596 }
1597
1598 if (!initialized)
1599 initialized = dri2_initialize_x11_swrast(drv, disp);
1600
1601 return initialized;
1602 }
1603
1604 void
1605 dri2_teardown_x11(struct dri2_egl_display *dri2_dpy)
1606 {
1607 if (dri2_dpy->own_device)
1608 xcb_disconnect(dri2_dpy->conn);
1609 }