Merge commit 'origin/7.8'
[mesa.git] / src / egl / drivers / dri2 / egl_dri2.c
1 /*
2 * Copyright © 2010 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdio.h>
31 #include <limits.h>
32 #include <dlfcn.h>
33 #include <fcntl.h>
34 #include <errno.h>
35 #include <unistd.h>
36 #include <xf86drm.h>
37 #include <GL/gl.h>
38 #include <GL/internal/dri_interface.h>
39 #include <xcb/xcb.h>
40 #include <xcb/dri2.h>
41 #include <xcb/xfixes.h>
42 #include <X11/Xlib-xcb.h>
43
44 #include <glapi/glapi.h>
45 #include "eglconfig.h"
46 #include "eglcontext.h"
47 #include "egldisplay.h"
48 #include "egldriver.h"
49 #include "eglcurrent.h"
50 #include "egllog.h"
51 #include "eglsurface.h"
52 #include "eglimage.h"
53
54 struct dri2_egl_driver
55 {
56 _EGLDriver base;
57
58 void (*glFlush)(void);
59 };
60
61 struct dri2_egl_display
62 {
63 xcb_connection_t *conn;
64 int dri2_major;
65 int dri2_minor;
66 __DRIscreen *dri_screen;
67 const __DRIconfig **driver_configs;
68 void *driver;
69 __DRIcoreExtension *core;
70 __DRIdri2Extension *dri2;
71 __DRI2flushExtension *flush;
72 __DRItexBufferExtension *tex_buffer;
73 __DRIimageExtension *image;
74 int fd;
75
76 char *device_name;
77 char *driver_name;
78
79 __DRIdri2LoaderExtension loader_extension;
80 __DRIimageLookupExtension image_lookup_extension;
81 const __DRIextension *extensions[3];
82 };
83
84 struct dri2_egl_context
85 {
86 _EGLContext base;
87 __DRIcontext *dri_context;
88 };
89
90 struct dri2_egl_surface
91 {
92 _EGLSurface base;
93 __DRIdrawable *dri_drawable;
94 xcb_drawable_t drawable;
95 __DRIbuffer buffers[5];
96 int buffer_count;
97 xcb_xfixes_region_t region;
98 int have_fake_front;
99 int swap_interval;
100 };
101
102 struct dri2_egl_config
103 {
104 _EGLConfig base;
105 const __DRIconfig *dri_config;
106 };
107
108 struct dri2_egl_image
109 {
110 _EGLImage base;
111 __DRIimage *dri_image;
112 };
113
114 /* standard typecasts */
115 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
116 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
117
118 EGLint dri2_to_egl_attribute_map[] = {
119 0,
120 EGL_BUFFER_SIZE, /* __DRI_ATTRIB_BUFFER_SIZE */
121 EGL_LEVEL, /* __DRI_ATTRIB_LEVEL */
122 EGL_RED_SIZE, /* __DRI_ATTRIB_RED_SIZE */
123 EGL_GREEN_SIZE, /* __DRI_ATTRIB_GREEN_SIZE */
124 EGL_BLUE_SIZE, /* __DRI_ATTRIB_BLUE_SIZE */
125 EGL_LUMINANCE_SIZE, /* __DRI_ATTRIB_LUMINANCE_SIZE */
126 EGL_ALPHA_SIZE, /* __DRI_ATTRIB_ALPHA_SIZE */
127 0, /* __DRI_ATTRIB_ALPHA_MASK_SIZE */
128 EGL_DEPTH_SIZE, /* __DRI_ATTRIB_DEPTH_SIZE */
129 EGL_STENCIL_SIZE, /* __DRI_ATTRIB_STENCIL_SIZE */
130 0, /* __DRI_ATTRIB_ACCUM_RED_SIZE */
131 0, /* __DRI_ATTRIB_ACCUM_GREEN_SIZE */
132 0, /* __DRI_ATTRIB_ACCUM_BLUE_SIZE */
133 0, /* __DRI_ATTRIB_ACCUM_ALPHA_SIZE */
134 EGL_SAMPLE_BUFFERS, /* __DRI_ATTRIB_SAMPLE_BUFFERS */
135 EGL_SAMPLES, /* __DRI_ATTRIB_SAMPLES */
136 0, /* __DRI_ATTRIB_RENDER_TYPE, */
137 0, /* __DRI_ATTRIB_CONFIG_CAVEAT */
138 0, /* __DRI_ATTRIB_CONFORMANT */
139 0, /* __DRI_ATTRIB_DOUBLE_BUFFER */
140 0, /* __DRI_ATTRIB_STEREO */
141 0, /* __DRI_ATTRIB_AUX_BUFFERS */
142 0, /* __DRI_ATTRIB_TRANSPARENT_TYPE */
143 0, /* __DRI_ATTRIB_TRANSPARENT_INDEX_VALUE */
144 0, /* __DRI_ATTRIB_TRANSPARENT_RED_VALUE */
145 0, /* __DRI_ATTRIB_TRANSPARENT_GREEN_VALUE */
146 0, /* __DRI_ATTRIB_TRANSPARENT_BLUE_VALUE */
147 0, /* __DRI_ATTRIB_TRANSPARENT_ALPHA_VALUE */
148 0, /* __DRI_ATTRIB_FLOAT_MODE */
149 0, /* __DRI_ATTRIB_RED_MASK */
150 0, /* __DRI_ATTRIB_GREEN_MASK */
151 0, /* __DRI_ATTRIB_BLUE_MASK */
152 0, /* __DRI_ATTRIB_ALPHA_MASK */
153 EGL_MAX_PBUFFER_WIDTH, /* __DRI_ATTRIB_MAX_PBUFFER_WIDTH */
154 EGL_MAX_PBUFFER_HEIGHT, /* __DRI_ATTRIB_MAX_PBUFFER_HEIGHT */
155 EGL_MAX_PBUFFER_PIXELS, /* __DRI_ATTRIB_MAX_PBUFFER_PIXELS */
156 0, /* __DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH */
157 0, /* __DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT */
158 0, /* __DRI_ATTRIB_VISUAL_SELECT_GROUP */
159 0, /* __DRI_ATTRIB_SWAP_METHOD */
160 EGL_MAX_SWAP_INTERVAL, /* __DRI_ATTRIB_MAX_SWAP_INTERVAL */
161 EGL_MIN_SWAP_INTERVAL, /* __DRI_ATTRIB_MIN_SWAP_INTERVAL */
162 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_RGB */
163 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA */
164 0, /* __DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE */
165 0, /* __DRI_ATTRIB_BIND_TO_TEXTURE_TARGETS */
166 0, /* __DRI_ATTRIB_YINVERTED */
167 };
168
169 static void
170 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
171 int depth, xcb_visualtype_t *visual)
172 {
173 struct dri2_egl_config *conf;
174 struct dri2_egl_display *dri2_dpy;
175 _EGLConfig base;
176 unsigned int attrib, value, double_buffer;
177 EGLint key, bind_to_texture_rgb, bind_to_texture_rgba;
178 int i;
179
180 dri2_dpy = disp->DriverData;
181 _eglInitConfig(&base, disp, id);
182
183 i = 0;
184 while (dri2_dpy->core->indexConfigAttrib(dri_config, i++, &attrib, &value)) {
185 switch (attrib) {
186 case __DRI_ATTRIB_RENDER_TYPE:
187 if (value & __DRI_ATTRIB_RGBA_BIT)
188 value = EGL_RGB_BUFFER;
189 else if (value & __DRI_ATTRIB_LUMINANCE_BIT)
190 value = EGL_LUMINANCE_BUFFER;
191 else
192 /* not valid */;
193 _eglSetConfigKey(&base, EGL_COLOR_BUFFER_TYPE, value);
194 break;
195
196 case __DRI_ATTRIB_CONFIG_CAVEAT:
197 if (value & __DRI_ATTRIB_NON_CONFORMANT_CONFIG)
198 value = EGL_NON_CONFORMANT_CONFIG;
199 else if (value & __DRI_ATTRIB_SLOW_BIT)
200 value = EGL_SLOW_CONFIG;
201 else
202 value = EGL_NONE;
203 _eglSetConfigKey(&base, EGL_CONFIG_CAVEAT, value);
204 break;
205
206 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGB:
207 bind_to_texture_rgb = value;
208 break;
209
210 case __DRI_ATTRIB_BIND_TO_TEXTURE_RGBA:
211 bind_to_texture_rgba = value;
212 break;
213
214 case __DRI_ATTRIB_DOUBLE_BUFFER:
215 double_buffer = value;
216 break;
217
218 default:
219 key = dri2_to_egl_attribute_map[attrib];
220 if (key != 0)
221 _eglSetConfigKey(&base, key, value);
222 break;
223 }
224 }
225
226 /* In EGL, double buffer or not isn't a config attribute. Pixmaps
227 * surfaces are always single buffered, pbuffer surfaces are always
228 * back buffers and windows can be either, selected by passing an
229 * attribute at window surface construction time. To support this
230 * we ignore all double buffer configs and manipulate the buffer we
231 * return in the getBuffer callback to get the behaviour we want. */
232
233 if (double_buffer)
234 return;
235
236 if (visual != NULL) {
237 if (depth != _eglGetConfigKey(&base, EGL_BUFFER_SIZE))
238 return;
239
240 _eglSetConfigKey(&base, EGL_SURFACE_TYPE,
241 EGL_WINDOW_BIT | EGL_PIXMAP_BIT | EGL_PBUFFER_BIT |
242 EGL_SWAP_BEHAVIOR_PRESERVED_BIT);
243
244 _eglSetConfigKey(&base, EGL_NATIVE_VISUAL_ID, visual->visual_id);
245 _eglSetConfigKey(&base, EGL_NATIVE_VISUAL_TYPE, visual->_class);
246 } else {
247 _eglSetConfigKey(&base, EGL_SURFACE_TYPE,
248 EGL_PIXMAP_BIT | EGL_PBUFFER_BIT);
249 }
250
251 _eglSetConfigKey(&base, EGL_NATIVE_RENDERABLE, EGL_TRUE);
252 _eglSetConfigKey(&base, EGL_BIND_TO_TEXTURE_RGB, bind_to_texture_rgb);
253 if (_eglGetConfigKey(&base, EGL_ALPHA_SIZE) > 0)
254 _eglSetConfigKey(&base,
255 EGL_BIND_TO_TEXTURE_RGBA, bind_to_texture_rgba);
256
257 /* EGL_OPENGL_ES_BIT, EGL_OPENVG_BIT, EGL_OPENGL_ES2_BIT */
258 _eglSetConfigKey(&base, EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT);
259 _eglSetConfigKey(&base, EGL_CONFORMANT, EGL_OPENGL_BIT);
260
261 if (!_eglValidateConfig(&base, EGL_FALSE)) {
262 _eglLog(_EGL_DEBUG, "DRI2: failed to validate config %d", id);
263 return;
264 }
265
266 conf = malloc(sizeof *conf);
267 if (conf != NULL) {
268 memcpy(&conf->base, &base, sizeof base);
269 conf->dri_config = dri_config;
270 _eglAddConfig(disp, &conf->base);
271 }
272 }
273
274 /**
275 * Process list of buffer received from the server
276 *
277 * Processes the list of buffers received in a reply from the server to either
278 * \c DRI2GetBuffers or \c DRI2GetBuffersWithFormat.
279 */
280 static void
281 dri2_process_buffers(struct dri2_egl_surface *dri2_surf,
282 xcb_dri2_dri2_buffer_t *buffers, unsigned count)
283 {
284 struct dri2_egl_display *dri2_dpy =
285 dri2_egl_display(dri2_surf->base.Resource.Display);
286 xcb_rectangle_t rectangle;
287 int i;
288
289 dri2_surf->buffer_count = count;
290 dri2_surf->have_fake_front = 0;
291
292 /* This assumes the DRI2 buffer attachment tokens matches the
293 * __DRIbuffer tokens. */
294 for (i = 0; i < count; i++) {
295 dri2_surf->buffers[i].attachment = buffers[i].attachment;
296 dri2_surf->buffers[i].name = buffers[i].name;
297 dri2_surf->buffers[i].pitch = buffers[i].pitch;
298 dri2_surf->buffers[i].cpp = buffers[i].cpp;
299 dri2_surf->buffers[i].flags = buffers[i].flags;
300
301 /* We only use the DRI drivers single buffer configs. This
302 * means that if we try to render to a window, DRI2 will give us
303 * the fake front buffer, which we'll use as a back buffer.
304 * Note that EGL doesn't require that several clients rendering
305 * to the same window must see the same aux buffers. */
306 if (dri2_surf->buffers[i].attachment == __DRI_BUFFER_FAKE_FRONT_LEFT)
307 dri2_surf->have_fake_front = 1;
308 }
309
310 if (dri2_surf->region != XCB_NONE)
311 xcb_xfixes_destroy_region(dri2_dpy->conn, dri2_surf->region);
312
313 rectangle.x = 0;
314 rectangle.y = 0;
315 rectangle.width = dri2_surf->base.Width;
316 rectangle.height = dri2_surf->base.Height;
317 dri2_surf->region = xcb_generate_id(dri2_dpy->conn);
318 xcb_xfixes_create_region(dri2_dpy->conn, dri2_surf->region, 1, &rectangle);
319 }
320
321 static __DRIbuffer *
322 dri2_get_buffers(__DRIdrawable * driDrawable,
323 int *width, int *height,
324 unsigned int *attachments, int count,
325 int *out_count, void *loaderPrivate)
326 {
327 struct dri2_egl_surface *dri2_surf = loaderPrivate;
328 struct dri2_egl_display *dri2_dpy =
329 dri2_egl_display(dri2_surf->base.Resource.Display);
330 xcb_dri2_dri2_buffer_t *buffers;
331 xcb_dri2_get_buffers_reply_t *reply;
332 xcb_dri2_get_buffers_cookie_t cookie;
333
334 cookie = xcb_dri2_get_buffers_unchecked (dri2_dpy->conn,
335 dri2_surf->drawable,
336 count, count, attachments);
337 reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn, cookie, NULL);
338 buffers = xcb_dri2_get_buffers_buffers (reply);
339 if (buffers == NULL)
340 return NULL;
341
342 *out_count = reply->count;
343 dri2_surf->base.Width = *width = reply->width;
344 dri2_surf->base.Height = *height = reply->height;
345 dri2_process_buffers(dri2_surf, buffers, *out_count);
346
347 free(reply);
348
349 return dri2_surf->buffers;
350 }
351
352 static void
353 dri2_flush_front_buffer(__DRIdrawable * driDrawable, void *loaderPrivate)
354 {
355 /* FIXME: Does EGL support front buffer rendering at all? */
356
357 #if 0
358 struct dri2_egl_surface *dri2_surf = loaderPrivate;
359
360 dri2WaitGL(dri2_surf);
361 #endif
362 }
363
364 static __DRIimage *
365 dri2_lookup_egl_image(__DRIcontext *context, void *image, void *data)
366 {
367 struct dri2_egl_context *dri2_ctx = data;
368 _EGLDisplay *disp = dri2_ctx->base.Resource.Display;
369 struct dri2_egl_image *dri2_img;
370 _EGLImage *img;
371
372 img = _eglLookupImage(image, disp);
373 if (img == NULL) {
374 _eglError(EGL_BAD_PARAMETER, "dri2_lookup_egl_image");
375 return NULL;
376 }
377
378 dri2_img = dri2_egl_image(image);
379
380 return dri2_img->dri_image;
381 }
382
383 static __DRIbuffer *
384 dri2_get_buffers_with_format(__DRIdrawable * driDrawable,
385 int *width, int *height,
386 unsigned int *attachments, int count,
387 int *out_count, void *loaderPrivate)
388 {
389 struct dri2_egl_surface *dri2_surf = loaderPrivate;
390 struct dri2_egl_display *dri2_dpy =
391 dri2_egl_display(dri2_surf->base.Resource.Display);
392 xcb_dri2_dri2_buffer_t *buffers;
393 xcb_dri2_get_buffers_with_format_reply_t *reply;
394 xcb_dri2_get_buffers_with_format_cookie_t cookie;
395 xcb_dri2_attach_format_t *format_attachments;
396
397 format_attachments = (xcb_dri2_attach_format_t *) attachments;
398 cookie = xcb_dri2_get_buffers_with_format_unchecked (dri2_dpy->conn,
399 dri2_surf->drawable,
400 count, count,
401 format_attachments);
402
403 reply = xcb_dri2_get_buffers_with_format_reply (dri2_dpy->conn,
404 cookie, NULL);
405 if (reply == NULL)
406 return NULL;
407
408 buffers = xcb_dri2_get_buffers_with_format_buffers (reply);
409 dri2_surf->base.Width = *width = reply->width;
410 dri2_surf->base.Height = *height = reply->height;
411 *out_count = reply->count;
412 dri2_process_buffers(dri2_surf, buffers, *out_count);
413
414 free(reply);
415
416 return dri2_surf->buffers;
417 }
418
419 #ifdef GLX_USE_TLS
420 static const char dri_driver_format[] = "%.*s/tls/%s_dri.so";
421 #else
422 static const char dri_driver_format[] = "%.*s/%s_dri.so";
423 #endif
424
425 static const char dri_driver_path[] = DEFAULT_DRIVER_DIR;
426
427 struct dri2_extension_match {
428 const char *name;
429 int version;
430 int offset;
431 };
432
433 static struct dri2_extension_match dri2_driver_extensions[] = {
434 { __DRI_CORE, 1, offsetof(struct dri2_egl_display, core) },
435 { __DRI_DRI2, 1, offsetof(struct dri2_egl_display, dri2) },
436 { NULL }
437 };
438
439 static struct dri2_extension_match dri2_core_extensions[] = {
440 { __DRI2_FLUSH, 1, offsetof(struct dri2_egl_display, flush) },
441 { __DRI_TEX_BUFFER, 2, offsetof(struct dri2_egl_display, tex_buffer) },
442 { __DRI_IMAGE, 1, offsetof(struct dri2_egl_display, image) },
443 { NULL }
444 };
445
446 static EGLBoolean
447 dri2_bind_extensions(struct dri2_egl_display *dri2_dpy,
448 struct dri2_extension_match *matches,
449 const __DRIextension **extensions)
450 {
451 int i, j, ret = EGL_TRUE;
452 void *field;
453
454 for (i = 0; extensions[i]; i++) {
455 _eglLog(_EGL_DEBUG, "DRI2: found extension `%s'", extensions[i]->name);
456 for (j = 0; matches[j].name; j++) {
457 if (strcmp(extensions[i]->name, matches[j].name) == 0 &&
458 extensions[i]->version >= matches[j].version) {
459 field = ((char *) dri2_dpy + matches[j].offset);
460 *(const __DRIextension **) field = extensions[i];
461 _eglLog(_EGL_INFO, "DRI2: found extension %s version %d",
462 extensions[i]->name, extensions[i]->version);
463 }
464 }
465 }
466
467 for (j = 0; matches[j].name; j++) {
468 field = ((char *) dri2_dpy + matches[j].offset);
469 if (*(const __DRIextension **) field == NULL) {
470 _eglLog(_EGL_FATAL, "DRI2: did not find extension %s version %d",
471 matches[j].name, matches[j].version);
472 ret = EGL_FALSE;
473 }
474 }
475
476 return ret;
477 }
478
479 static char *
480 dri2_strndup(const char *s, int length)
481 {
482 char *d;
483
484 d = malloc(length + 1);
485 if (d == NULL)
486 return NULL;
487
488 memcpy(d, s, length);
489 d[length] = '\0';
490
491 return d;
492 }
493
494 static EGLBoolean
495 dri2_connect(struct dri2_egl_display *dri2_dpy)
496 {
497 xcb_xfixes_query_version_reply_t *xfixes_query;
498 xcb_xfixes_query_version_cookie_t xfixes_query_cookie;
499 xcb_dri2_query_version_reply_t *dri2_query;
500 xcb_dri2_query_version_cookie_t dri2_query_cookie;
501 xcb_dri2_connect_reply_t *connect;
502 xcb_dri2_connect_cookie_t connect_cookie;
503 xcb_generic_error_t *error;
504 xcb_screen_iterator_t s;
505
506 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_xfixes_id);
507 xcb_prefetch_extension_data (dri2_dpy->conn, &xcb_dri2_id);
508
509 xfixes_query_cookie = xcb_xfixes_query_version(dri2_dpy->conn,
510 XCB_XFIXES_MAJOR_VERSION,
511 XCB_XFIXES_MINOR_VERSION);
512
513 dri2_query_cookie = xcb_dri2_query_version (dri2_dpy->conn,
514 XCB_DRI2_MAJOR_VERSION,
515 XCB_DRI2_MINOR_VERSION);
516
517 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
518 connect_cookie = xcb_dri2_connect_unchecked (dri2_dpy->conn,
519 s.data->root,
520 XCB_DRI2_DRIVER_TYPE_DRI);
521
522 xfixes_query =
523 xcb_xfixes_query_version_reply (dri2_dpy->conn,
524 xfixes_query_cookie, &error);
525 if (xfixes_query == NULL ||
526 error != NULL || xfixes_query->major_version < 2) {
527 _eglLog(_EGL_FATAL, "DRI2: failed to query xfixes version");
528 free(error);
529 return EGL_FALSE;
530 }
531 free(xfixes_query);
532
533 dri2_query =
534 xcb_dri2_query_version_reply (dri2_dpy->conn, dri2_query_cookie, &error);
535 if (dri2_query == NULL || error != NULL) {
536 _eglLog(_EGL_FATAL, "DRI2: failed to query version");
537 free(error);
538 return EGL_FALSE;
539 }
540 dri2_dpy->dri2_major = dri2_query->major_version;
541 dri2_dpy->dri2_minor = dri2_query->minor_version;
542 free(dri2_query);
543
544 connect = xcb_dri2_connect_reply (dri2_dpy->conn, connect_cookie, NULL);
545 if (connect == NULL ||
546 connect->driver_name_length + connect->device_name_length == 0) {
547 _eglLog(_EGL_FATAL, "DRI2: failed to authenticate");
548 return EGL_FALSE;
549 }
550
551 dri2_dpy->device_name =
552 dri2_strndup(xcb_dri2_connect_device_name (connect),
553 xcb_dri2_connect_device_name_length (connect));
554
555 dri2_dpy->driver_name =
556 dri2_strndup(xcb_dri2_connect_driver_name (connect),
557 xcb_dri2_connect_driver_name_length (connect));
558
559 if (dri2_dpy->device_name == NULL || dri2_dpy->driver_name == NULL) {
560 free(dri2_dpy->device_name);
561 free(dri2_dpy->driver_name);
562 free(connect);
563 return EGL_FALSE;
564 }
565 free(connect);
566
567 return EGL_TRUE;
568 }
569
570 static EGLBoolean
571 dri2_authenticate(struct dri2_egl_display *dri2_dpy)
572 {
573 xcb_dri2_authenticate_reply_t *authenticate;
574 xcb_dri2_authenticate_cookie_t authenticate_cookie;
575 xcb_screen_iterator_t s;
576 drm_magic_t magic;
577
578 if (drmGetMagic(dri2_dpy->fd, &magic)) {
579 _eglLog(_EGL_FATAL, "DRI2: failed to get drm magic");
580 return EGL_FALSE;
581 }
582
583 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
584 authenticate_cookie =
585 xcb_dri2_authenticate_unchecked(dri2_dpy->conn, s.data->root, magic);
586 authenticate =
587 xcb_dri2_authenticate_reply(dri2_dpy->conn, authenticate_cookie, NULL);
588 if (authenticate == NULL || !authenticate->authenticated) {
589 _eglLog(_EGL_FATAL, "DRI2: failed to authenticate");
590 free(authenticate);
591 return EGL_FALSE;
592 }
593
594 free(authenticate);
595
596 return EGL_TRUE;
597 }
598
599 static EGLBoolean
600 dri2_add_configs_for_visuals(struct dri2_egl_display *dri2_dpy,
601 _EGLDisplay *disp)
602 {
603 xcb_screen_iterator_t s;
604 xcb_depth_iterator_t d;
605 xcb_visualtype_t *visuals;
606 int i, j, id;
607
608 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
609 d = xcb_screen_allowed_depths_iterator(s.data);
610 id = 1;
611 while (d.rem > 0) {
612 EGLBoolean class_added[6] = { 0, };
613
614 visuals = xcb_depth_visuals(d.data);
615 for (i = 0; i < xcb_depth_visuals_length(d.data); i++) {
616 if (class_added[visuals[i]._class])
617 continue;
618
619 class_added[visuals[i]._class] = EGL_TRUE;
620 for (j = 0; dri2_dpy->driver_configs[j]; j++)
621 dri2_add_config(disp, dri2_dpy->driver_configs[j],
622 id++, d.data->depth, &visuals[i]);
623 }
624
625 xcb_depth_next(&d);
626 }
627
628 if (!disp->NumConfigs) {
629 _eglLog(_EGL_WARNING, "DRI2: failed to create any config");
630 return EGL_FALSE;
631 }
632
633 return EGL_TRUE;
634 }
635
636 /**
637 * Called via eglInitialize(), GLX_drv->API.Initialize().
638 */
639 static EGLBoolean
640 dri2_initialize(_EGLDriver *drv, _EGLDisplay *disp,
641 EGLint *major, EGLint *minor)
642 {
643 const __DRIextension **extensions;
644 struct dri2_egl_display *dri2_dpy;
645 char path[PATH_MAX], *search_paths, *p, *next, *end;
646
647 dri2_dpy = malloc(sizeof *dri2_dpy);
648 if (!dri2_dpy)
649 return _eglError(EGL_BAD_ALLOC, "eglInitialize");
650
651 disp->DriverData = (void *) dri2_dpy;
652 if (disp->NativeDisplay == NULL) {
653 dri2_dpy->conn = xcb_connect(0, 0);
654 if (!dri2_dpy->conn) {
655 _eglLog(_EGL_WARNING, "DRI2: xcb_connect failed");
656 goto cleanup_dpy;
657 }
658 } else {
659 dri2_dpy->conn = XGetXCBConnection(disp->NativeDisplay);
660 }
661
662 if (dri2_dpy->conn == NULL)
663 goto cleanup_conn;
664
665 if (dri2_dpy->conn) {
666 if (!dri2_connect(dri2_dpy))
667 goto cleanup_conn;
668 }
669
670 search_paths = NULL;
671 if (geteuid() == getuid()) {
672 /* don't allow setuid apps to use LIBGL_DRIVERS_PATH */
673 search_paths = getenv("LIBGL_DRIVERS_PATH");
674 }
675 if (search_paths == NULL)
676 search_paths = DEFAULT_DRIVER_DIR;
677
678 dri2_dpy->driver = NULL;
679 end = search_paths + strlen(search_paths);
680 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) {
681 next = strchr(p, ':');
682 if (next == NULL)
683 next = end;
684
685 snprintf(path, sizeof path,
686 dri_driver_format, (int) (next - p), p, dri2_dpy->driver_name);
687 dri2_dpy->driver = dlopen(path, RTLD_NOW | RTLD_GLOBAL);
688 }
689
690 if (dri2_dpy->driver == NULL) {
691 _eglLog(_EGL_FATAL,
692 "DRI2: failed to open any driver (search paths %s)",
693 search_paths);
694 goto cleanup_conn;
695 }
696
697 _eglLog(_EGL_DEBUG, "DRI2: dlopen(%s)", path);
698 extensions = dlsym(dri2_dpy->driver, __DRI_DRIVER_EXTENSIONS);
699 if (extensions == NULL) {
700 _eglLog(_EGL_FATAL,
701 "DRI2: driver exports no extensions (%s)", dlerror());
702 goto cleanup_driver;
703 }
704
705 if (!dri2_bind_extensions(dri2_dpy, dri2_driver_extensions, extensions))
706 goto cleanup_driver;
707
708 dri2_dpy->fd = open(dri2_dpy->device_name, O_RDWR);
709 if (dri2_dpy->fd == -1) {
710 _eglLog(_EGL_FATAL,
711 "DRI2: could not open %s (%s)", path, strerror(errno));
712 goto cleanup_driver;
713 }
714
715 if (dri2_dpy->conn) {
716 if (!dri2_authenticate(dri2_dpy))
717 goto cleanup_fd;
718 }
719
720 if (dri2_dpy->dri2_minor >= 1) {
721 dri2_dpy->loader_extension.base.name = __DRI_DRI2_LOADER;
722 dri2_dpy->loader_extension.base.version = 3;
723 dri2_dpy->loader_extension.getBuffers = dri2_get_buffers;
724 dri2_dpy->loader_extension.flushFrontBuffer = dri2_flush_front_buffer;
725 dri2_dpy->loader_extension.getBuffersWithFormat =
726 dri2_get_buffers_with_format;
727 } else {
728 dri2_dpy->loader_extension.base.name = __DRI_DRI2_LOADER;
729 dri2_dpy->loader_extension.base.version = 2;
730 dri2_dpy->loader_extension.getBuffers = dri2_get_buffers;
731 dri2_dpy->loader_extension.flushFrontBuffer = dri2_flush_front_buffer;
732 dri2_dpy->loader_extension.getBuffersWithFormat = NULL;
733 }
734
735 dri2_dpy->image_lookup_extension.base.name = __DRI_IMAGE_LOOKUP;
736 dri2_dpy->image_lookup_extension.base.version = 1;
737 dri2_dpy->image_lookup_extension.lookupEGLImage = dri2_lookup_egl_image;
738
739 dri2_dpy->extensions[0] = &dri2_dpy->loader_extension.base;
740 dri2_dpy->extensions[1] = &dri2_dpy->image_lookup_extension.base;
741 dri2_dpy->extensions[2] = NULL;
742
743 dri2_dpy->dri_screen =
744 dri2_dpy->dri2->createNewScreen(0, dri2_dpy->fd, dri2_dpy->extensions,
745 &dri2_dpy->driver_configs, dri2_dpy);
746
747 if (dri2_dpy->dri_screen == NULL) {
748 _eglLog(_EGL_FATAL, "DRI2: failed to create dri screen");
749 goto cleanup_fd;
750 }
751
752 extensions = dri2_dpy->core->getExtensions(dri2_dpy->dri_screen);
753 if (!dri2_bind_extensions(dri2_dpy, dri2_core_extensions, extensions))
754 goto cleanup_dri_screen;
755
756 if (dri2_dpy->conn) {
757 if (!dri2_add_configs_for_visuals(dri2_dpy, disp))
758 goto cleanup_configs;
759 }
760
761 disp->ClientAPIsMask = EGL_OPENGL_BIT;
762 disp->Extensions.KHR_image_base = EGL_TRUE;
763 disp->Extensions.KHR_image_pixmap = EGL_TRUE;
764 disp->Extensions.KHR_gl_renderbuffer_image = EGL_TRUE;
765
766 /* we're supporting EGL 1.4 */
767 *major = 1;
768 *minor = 4;
769
770 return EGL_TRUE;
771
772 cleanup_configs:
773 _eglCleanupDisplay(disp);
774 cleanup_dri_screen:
775 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
776 cleanup_fd:
777 close(dri2_dpy->fd);
778 cleanup_driver:
779 dlclose(dri2_dpy->driver);
780 cleanup_conn:
781 if (disp->NativeDisplay == NULL)
782 xcb_disconnect(dri2_dpy->conn);
783 cleanup_dpy:
784 free(dri2_dpy);
785
786 return EGL_FALSE;
787 }
788
789 /**
790 * Called via eglTerminate(), drv->API.Terminate().
791 */
792 static EGLBoolean
793 dri2_terminate(_EGLDriver *drv, _EGLDisplay *disp)
794 {
795 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
796
797 _eglReleaseDisplayResources(drv, disp);
798 _eglCleanupDisplay(disp);
799
800 dri2_dpy->core->destroyScreen(dri2_dpy->dri_screen);
801 close(dri2_dpy->fd);
802 dlclose(dri2_dpy->driver);
803 if (disp->NativeDisplay == NULL)
804 xcb_disconnect(dri2_dpy->conn);
805 free(dri2_dpy);
806 disp->DriverData = NULL;
807
808 return EGL_TRUE;
809 }
810
811
812 /**
813 * Called via eglCreateContext(), drv->API.CreateContext().
814 */
815 static _EGLContext *
816 dri2_create_context(_EGLDriver *drv, _EGLDisplay *disp, _EGLConfig *conf,
817 _EGLContext *share_list, const EGLint *attrib_list)
818 {
819 struct dri2_egl_context *dri2_ctx;
820 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
821 struct dri2_egl_context *dri2_ctx_shared = dri2_egl_context(share_list);
822 struct dri2_egl_config *dri2_config = dri2_egl_config(conf);
823
824 dri2_ctx = malloc(sizeof *dri2_ctx);
825 if (!dri2_ctx) {
826 _eglError(EGL_BAD_ALLOC, "eglCreateContext");
827 return NULL;
828 }
829
830 if (!_eglInitContext(&dri2_ctx->base, disp, conf, attrib_list))
831 goto cleanup;
832
833 dri2_ctx->dri_context =
834 dri2_dpy->dri2->createNewContext(dri2_dpy->dri_screen,
835 dri2_config->dri_config,
836 dri2_ctx_shared ?
837 dri2_ctx_shared->dri_context : NULL,
838 dri2_ctx);
839
840 if (!dri2_ctx->dri_context)
841 goto cleanup;
842
843 return &dri2_ctx->base;
844
845 cleanup:
846 free(dri2_ctx);
847 return NULL;
848 }
849
850 static EGLBoolean
851 dri2_destroy_surface(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf)
852 {
853 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
854 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
855
856 if (_eglIsSurfaceBound(surf))
857 return EGL_TRUE;
858
859 (*dri2_dpy->core->destroyDrawable)(dri2_surf->dri_drawable);
860
861 xcb_dri2_destroy_drawable (dri2_dpy->conn, dri2_surf->drawable);
862
863 if (surf->Type == EGL_PBUFFER_BIT)
864 xcb_free_pixmap (dri2_dpy->conn, dri2_surf->drawable);
865
866 free(surf);
867
868 return EGL_TRUE;
869 }
870
871 /**
872 * Called via eglMakeCurrent(), drv->API.MakeCurrent().
873 */
874 static EGLBoolean
875 dri2_make_current(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *dsurf,
876 _EGLSurface *rsurf, _EGLContext *ctx)
877 {
878 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
879 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
880 struct dri2_egl_surface *dri2_dsurf = dri2_egl_surface(dsurf);
881 struct dri2_egl_surface *dri2_rsurf = dri2_egl_surface(rsurf);
882 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
883 __DRIdrawable *ddraw, *rdraw;
884 __DRIcontext *cctx;
885
886 /* bind the new context and return the "orphaned" one */
887 if (!_eglBindContext(&ctx, &dsurf, &rsurf))
888 return EGL_FALSE;
889
890 /* flush before context switch */
891 if (ctx && dri2_drv->glFlush)
892 dri2_drv->glFlush();
893
894 ddraw = (dri2_dsurf) ? dri2_dsurf->dri_drawable : NULL;
895 rdraw = (dri2_rsurf) ? dri2_rsurf->dri_drawable : NULL;
896 cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL;
897
898 if ((cctx == NULL && ddraw == NULL && rdraw == NULL) ||
899 dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) {
900 if (dsurf && !_eglIsSurfaceLinked(dsurf))
901 dri2_destroy_surface(drv, disp, dsurf);
902 if (rsurf && rsurf != dsurf && !_eglIsSurfaceLinked(dsurf))
903 dri2_destroy_surface(drv, disp, rsurf);
904 if (ctx != NULL && !_eglIsContextLinked(ctx))
905 dri2_dpy->core->unbindContext(dri2_egl_context(ctx)->dri_context);
906
907 return EGL_TRUE;
908 } else {
909 _eglBindContext(&ctx, &dsurf, &rsurf);
910
911 return EGL_FALSE;
912 }
913 }
914
915 /**
916 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
917 */
918 static _EGLSurface *
919 dri2_create_surface(_EGLDriver *drv, _EGLDisplay *disp, EGLint type,
920 _EGLConfig *conf, EGLNativeWindowType window,
921 const EGLint *attrib_list)
922 {
923 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
924 struct dri2_egl_config *dri2_conf = dri2_egl_config(conf);
925 struct dri2_egl_surface *dri2_surf;
926 xcb_get_geometry_cookie_t cookie;
927 xcb_get_geometry_reply_t *reply;
928 xcb_screen_iterator_t s;
929 xcb_generic_error_t *error;
930
931 dri2_surf = malloc(sizeof *dri2_surf);
932 if (!dri2_surf) {
933 _eglError(EGL_BAD_ALLOC, "dri2_create_surface");
934 return NULL;
935 }
936
937 if (!_eglInitSurface(&dri2_surf->base, disp, type, conf, attrib_list))
938 goto cleanup_surf;
939
940 dri2_surf->region = XCB_NONE;
941 if (type == EGL_PBUFFER_BIT) {
942 dri2_surf->drawable = xcb_generate_id(dri2_dpy->conn);
943 s = xcb_setup_roots_iterator(xcb_get_setup(dri2_dpy->conn));
944 xcb_create_pixmap(dri2_dpy->conn,
945 _eglGetConfigKey(conf, EGL_BUFFER_SIZE),
946 dri2_surf->drawable, s.data->root,
947 dri2_surf->base.Width, dri2_surf->base.Height);
948 } else {
949 dri2_surf->drawable = window;
950 }
951
952 dri2_surf->dri_drawable =
953 (*dri2_dpy->dri2->createNewDrawable) (dri2_dpy->dri_screen,
954 dri2_conf->dri_config, dri2_surf);
955 if (dri2_surf->dri_drawable == NULL) {
956 _eglError(EGL_BAD_ALLOC, "dri2->createNewDrawable");
957 goto cleanup_pixmap;
958 }
959
960 xcb_dri2_create_drawable (dri2_dpy->conn, dri2_surf->drawable);
961
962 if (type != EGL_PBUFFER_BIT) {
963 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
964 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
965 if (reply == NULL || error != NULL) {
966 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
967 free(error);
968 goto cleanup_dri_drawable;
969 }
970
971 dri2_surf->base.Width = reply->width;
972 dri2_surf->base.Height = reply->height;
973 free(reply);
974 }
975
976 return &dri2_surf->base;
977
978 cleanup_dri_drawable:
979 dri2_dpy->core->destroyDrawable(dri2_surf->dri_drawable);
980 cleanup_pixmap:
981 if (type == EGL_PBUFFER_BIT)
982 xcb_free_pixmap(dri2_dpy->conn, dri2_surf->drawable);
983 cleanup_surf:
984 free(dri2_surf);
985
986 return NULL;
987 }
988
989 /**
990 * Called via eglCreateWindowSurface(), drv->API.CreateWindowSurface().
991 */
992 static _EGLSurface *
993 dri2_create_window_surface(_EGLDriver *drv, _EGLDisplay *disp,
994 _EGLConfig *conf, EGLNativeWindowType window,
995 const EGLint *attrib_list)
996 {
997 return dri2_create_surface(drv, disp, EGL_WINDOW_BIT, conf,
998 window, attrib_list);
999 }
1000
1001 static _EGLSurface *
1002 dri2_create_pixmap_surface(_EGLDriver *drv, _EGLDisplay *disp,
1003 _EGLConfig *conf, EGLNativePixmapType pixmap,
1004 const EGLint *attrib_list)
1005 {
1006 return dri2_create_surface(drv, disp, EGL_PIXMAP_BIT, conf,
1007 pixmap, attrib_list);
1008 }
1009
1010 static _EGLSurface *
1011 dri2_create_pbuffer_surface(_EGLDriver *drv, _EGLDisplay *disp,
1012 _EGLConfig *conf, const EGLint *attrib_list)
1013 {
1014 return dri2_create_surface(drv, disp, EGL_PBUFFER_BIT, conf,
1015 XCB_WINDOW_NONE, attrib_list);
1016 }
1017
1018 static EGLBoolean
1019 dri2_swap_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw)
1020 {
1021 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
1022 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1023 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(draw);
1024 _EGLContext *ctx;
1025 xcb_dri2_copy_region_cookie_t cookie;
1026
1027 if (dri2_drv->glFlush) {
1028 ctx = _eglGetCurrentContext();
1029 if (ctx && ctx->DrawSurface == &dri2_surf->base)
1030 dri2_drv->glFlush();
1031 }
1032
1033 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
1034
1035 #if 0
1036 /* FIXME: Add support for dri swapbuffers, that'll give us swap
1037 * interval and page flipping (at least for fullscreen windows) as
1038 * well as the page flip event. Unless surface->SwapBehavior is
1039 * EGL_BUFFER_PRESERVED. */
1040 #if __DRI2_FLUSH_VERSION >= 2
1041 if (pdraw->psc->f)
1042 (*pdraw->psc->f->flushInvalidate)(pdraw->driDrawable);
1043 #endif
1044 #endif
1045
1046 if (!dri2_surf->have_fake_front)
1047 return EGL_TRUE;
1048
1049 cookie = xcb_dri2_copy_region_unchecked(dri2_dpy->conn,
1050 dri2_surf->drawable,
1051 dri2_surf->region,
1052 XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT,
1053 XCB_DRI2_ATTACHMENT_BUFFER_FAKE_FRONT_LEFT);
1054 free(xcb_dri2_copy_region_reply(dri2_dpy->conn, cookie, NULL));
1055
1056 return EGL_TRUE;
1057 }
1058
1059 /*
1060 * Called from eglGetProcAddress() via drv->API.GetProcAddress().
1061 */
1062 static _EGLProc
1063 dri2_get_proc_address(_EGLDriver *drv, const char *procname)
1064 {
1065 /* FIXME: Do we need to support lookup of EGL symbols too? */
1066
1067 return (_EGLProc) _glapi_get_proc_address(procname);
1068 }
1069
1070 static EGLBoolean
1071 dri2_wait_client(_EGLDriver *drv, _EGLDisplay *disp, _EGLContext *ctx)
1072 {
1073 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1074 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(ctx->DrawSurface);
1075
1076 /* FIXME: If EGL allows frontbuffer rendering for window surfaces,
1077 * we need to copy fake to real here.*/
1078
1079 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
1080
1081 return EGL_TRUE;
1082 }
1083
1084 static EGLBoolean
1085 dri2_wait_native(_EGLDriver *drv, _EGLDisplay *disp, EGLint engine)
1086 {
1087 if (engine != EGL_CORE_NATIVE_ENGINE)
1088 return _eglError(EGL_BAD_PARAMETER, "eglWaitNative");
1089 /* glXWaitX(); */
1090
1091 return EGL_TRUE;
1092 }
1093
1094 static void
1095 dri2_unload(_EGLDriver *drv)
1096 {
1097 struct dri2_egl_driver *dri2_drv = dri2_egl_driver(drv);
1098 free(dri2_drv);
1099 }
1100
1101 static EGLBoolean
1102 dri2_copy_buffers(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *surf,
1103 EGLNativePixmapType target)
1104 {
1105 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1106 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1107 xcb_gcontext_t gc;
1108
1109 (*dri2_dpy->flush->flush)(dri2_surf->dri_drawable);
1110
1111 gc = xcb_generate_id(dri2_dpy->conn);
1112 xcb_create_gc(dri2_dpy->conn, gc, target, 0, NULL);
1113 xcb_copy_area(dri2_dpy->conn,
1114 dri2_surf->drawable,
1115 target,
1116 gc,
1117 0, 0,
1118 0, 0,
1119 dri2_surf->base.Width,
1120 dri2_surf->base.Height);
1121 xcb_free_gc(dri2_dpy->conn, gc);
1122
1123 return EGL_TRUE;
1124 }
1125
1126 static EGLBoolean
1127 dri2_bind_tex_image(_EGLDriver *drv,
1128 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1129 {
1130 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1131 struct dri2_egl_surface *dri2_surf = dri2_egl_surface(surf);
1132 struct dri2_egl_context *dri2_ctx;
1133 _EGLContext *ctx;
1134 GLint format, target;
1135
1136 ctx = _eglGetCurrentContext();
1137 dri2_ctx = dri2_egl_context(ctx);
1138
1139 if (buffer != EGL_BACK_BUFFER) {
1140 _eglError(EGL_BAD_PARAMETER, "eglBindTexImage");
1141 return EGL_FALSE;
1142 }
1143
1144 /* We allow binding pixmaps too... Not conformat, but we can do it
1145 * for free and it's useful for X compositors. Supposedly there's
1146 * a EGL_NOKIA_texture_from_pixmap extension that allows that, but
1147 * I couldn't find it at this time. */
1148 if ((dri2_surf->base.Type & (EGL_PBUFFER_BIT | EGL_PIXMAP_BIT)) == 0) {
1149 _eglError(EGL_BAD_SURFACE, "eglBindTexImage");
1150 return EGL_FALSE;
1151 }
1152
1153 switch (dri2_surf->base.TextureFormat) {
1154 case EGL_TEXTURE_RGB:
1155 format = __DRI_TEXTURE_FORMAT_RGB;
1156 break;
1157 case EGL_TEXTURE_RGBA:
1158 format = __DRI_TEXTURE_FORMAT_RGBA;
1159 break;
1160 default:
1161 _eglError(EGL_BAD_MATCH, "eglBindTexImage");
1162 return EGL_FALSE;
1163 }
1164
1165 switch (dri2_surf->base.TextureTarget) {
1166 case EGL_TEXTURE_2D:
1167 target = GL_TEXTURE_2D;
1168 break;
1169 default:
1170 _eglError(EGL_BAD_PARAMETER, "eglBindTexImage");
1171 return EGL_FALSE;
1172 }
1173
1174 (*dri2_dpy->tex_buffer->setTexBuffer2)(dri2_ctx->dri_context,
1175 target, format,
1176 dri2_surf->dri_drawable);
1177
1178 return dri2_surf->base.BoundToTexture = EGL_TRUE;
1179 }
1180
1181 static EGLBoolean
1182 dri2_release_tex_image(_EGLDriver *drv,
1183 _EGLDisplay *disp, _EGLSurface *surf, EGLint buffer)
1184 {
1185 return EGL_TRUE;
1186 }
1187
1188 static _EGLImage *
1189 dri2_create_image_khr_pixmap(_EGLDisplay *disp, _EGLContext *ctx,
1190 EGLClientBuffer buffer, const EGLint *attr_list)
1191 {
1192 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1193 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1194 struct dri2_egl_image *dri2_img;
1195 unsigned int attachments[1];
1196 xcb_drawable_t drawable;
1197 xcb_dri2_get_buffers_cookie_t buffers_cookie;
1198 xcb_dri2_get_buffers_reply_t *buffers_reply;
1199 xcb_dri2_dri2_buffer_t *buffers;
1200 xcb_get_geometry_cookie_t geometry_cookie;
1201 xcb_get_geometry_reply_t *geometry_reply;
1202 xcb_generic_error_t *error;
1203 int stride, format;
1204
1205 drawable = (xcb_drawable_t) buffer;
1206 xcb_dri2_create_drawable (dri2_dpy->conn, drawable);
1207 attachments[0] = XCB_DRI2_ATTACHMENT_BUFFER_FRONT_LEFT;
1208 buffers_cookie =
1209 xcb_dri2_get_buffers_unchecked (dri2_dpy->conn,
1210 drawable, 1, 1, attachments);
1211 geometry_cookie = xcb_get_geometry (dri2_dpy->conn, drawable);
1212 buffers_reply = xcb_dri2_get_buffers_reply (dri2_dpy->conn,
1213 buffers_cookie, NULL);
1214 buffers = xcb_dri2_get_buffers_buffers (buffers_reply);
1215 if (buffers == NULL) {
1216 return NULL;
1217 }
1218
1219 geometry_reply = xcb_get_geometry_reply (dri2_dpy->conn,
1220 geometry_cookie, &error);
1221 if (geometry_reply == NULL || error != NULL) {
1222 _eglError(EGL_BAD_ALLOC, "xcb_get_geometry");
1223 free(error);
1224 free(buffers_reply);
1225 }
1226
1227 switch (geometry_reply->depth) {
1228 case 16:
1229 format = __DRI_IMAGE_FORMAT_RGB565;
1230 break;
1231 case 24:
1232 format = __DRI_IMAGE_FORMAT_XRGB8888;
1233 break;
1234 case 32:
1235 format = __DRI_IMAGE_FORMAT_ARGB8888;
1236 break;
1237 default:
1238 _eglError(EGL_BAD_PARAMETER,
1239 "dri2_create_image_khr: unsupported pixmap depth");
1240 free(buffers_reply);
1241 free(geometry_reply);
1242 return NULL;
1243 }
1244
1245 dri2_img = malloc(sizeof *dri2_img);
1246 if (!dri2_img) {
1247 free(buffers_reply);
1248 free(geometry_reply);
1249 _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
1250 return EGL_NO_IMAGE_KHR;
1251 }
1252
1253 if (!_eglInitImage(&dri2_img->base, disp, attr_list)) {
1254 free(buffers_reply);
1255 free(geometry_reply);
1256 return EGL_NO_IMAGE_KHR;
1257 }
1258
1259 stride = buffers[0].pitch / buffers[0].cpp;
1260 dri2_img->dri_image =
1261 dri2_dpy->image->createImageFromName(dri2_ctx->dri_context,
1262 buffers_reply->width,
1263 buffers_reply->height,
1264 format,
1265 buffers[0].name,
1266 stride,
1267 dri2_img);
1268
1269 free(buffers_reply);
1270 free(geometry_reply);
1271
1272 return &dri2_img->base;
1273 }
1274
1275 static _EGLImage *
1276 dri2_create_image_khr_renderbuffer(_EGLDisplay *disp, _EGLContext *ctx,
1277 EGLClientBuffer buffer,
1278 const EGLint *attr_list)
1279 {
1280 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1281 struct dri2_egl_context *dri2_ctx = dri2_egl_context(ctx);
1282 struct dri2_egl_image *dri2_img;
1283 GLuint renderbuffer = (GLuint) buffer;
1284
1285 if (renderbuffer == 0) {
1286 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1287 return EGL_NO_IMAGE_KHR;
1288 }
1289
1290 dri2_img = malloc(sizeof *dri2_img);
1291 if (!dri2_img) {
1292 _eglError(EGL_BAD_ALLOC, "dri2_create_image_khr");
1293 return EGL_NO_IMAGE_KHR;
1294 }
1295
1296 if (!_eglInitImage(&dri2_img->base, disp, attr_list))
1297 return EGL_NO_IMAGE_KHR;
1298
1299 dri2_img->dri_image =
1300 dri2_dpy->image->createImageFromRenderbuffer(dri2_ctx->dri_context,
1301 renderbuffer,
1302 dri2_img);
1303
1304 return &dri2_img->base;
1305 }
1306
1307 static _EGLImage *
1308 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
1309 _EGLContext *ctx, EGLenum target,
1310 EGLClientBuffer buffer, const EGLint *attr_list)
1311 {
1312 switch (target) {
1313 case EGL_NATIVE_PIXMAP_KHR:
1314 return dri2_create_image_khr_pixmap(disp, ctx, buffer, attr_list);
1315 case EGL_GL_RENDERBUFFER_KHR:
1316 return dri2_create_image_khr_renderbuffer(disp, ctx, buffer, attr_list);
1317 default:
1318 _eglError(EGL_BAD_PARAMETER, "dri2_create_image_khr");
1319 return EGL_NO_IMAGE_KHR;
1320 }
1321 }
1322
1323 static EGLBoolean
1324 dri2_destroy_image_khr(_EGLDriver *drv, _EGLDisplay *disp, _EGLImage *image)
1325 {
1326 struct dri2_egl_display *dri2_dpy = dri2_egl_display(disp);
1327 struct dri2_egl_image *dri2_img = dri2_egl_image(image);
1328
1329 dri2_dpy->image->destroyImage(dri2_img->dri_image);
1330 free(dri2_img);
1331
1332 return EGL_TRUE;
1333 }
1334
1335 /**
1336 * This is the main entrypoint into the driver, called by libEGL.
1337 * Create a new _EGLDriver object and init its dispatch table.
1338 */
1339 _EGLDriver *
1340 _eglMain(const char *args)
1341 {
1342 struct dri2_egl_driver *dri2_drv;
1343
1344 dri2_drv = malloc(sizeof *dri2_drv);
1345 if (!dri2_drv)
1346 return NULL;
1347
1348 _eglInitDriverFallbacks(&dri2_drv->base);
1349 dri2_drv->base.API.Initialize = dri2_initialize;
1350 dri2_drv->base.API.Terminate = dri2_terminate;
1351 dri2_drv->base.API.CreateContext = dri2_create_context;
1352 dri2_drv->base.API.MakeCurrent = dri2_make_current;
1353 dri2_drv->base.API.CreateWindowSurface = dri2_create_window_surface;
1354 dri2_drv->base.API.CreatePixmapSurface = dri2_create_pixmap_surface;
1355 dri2_drv->base.API.CreatePbufferSurface = dri2_create_pbuffer_surface;
1356 dri2_drv->base.API.DestroySurface = dri2_destroy_surface;
1357 dri2_drv->base.API.SwapBuffers = dri2_swap_buffers;
1358 dri2_drv->base.API.GetProcAddress = dri2_get_proc_address;
1359 dri2_drv->base.API.WaitClient = dri2_wait_client;
1360 dri2_drv->base.API.WaitNative = dri2_wait_native;
1361 dri2_drv->base.API.CopyBuffers = dri2_copy_buffers;
1362 dri2_drv->base.API.BindTexImage = dri2_bind_tex_image;
1363 dri2_drv->base.API.ReleaseTexImage = dri2_release_tex_image;
1364 dri2_drv->base.API.CreateImageKHR = dri2_create_image_khr;
1365 dri2_drv->base.API.DestroyImageKHR = dri2_destroy_image_khr;
1366
1367 dri2_drv->base.Name = "DRI2";
1368 dri2_drv->base.Unload = dri2_unload;
1369
1370 dri2_drv->glFlush =
1371 (void (*)(void)) dri2_get_proc_address(&dri2_drv->base, "glFlush");
1372
1373 return &dri2_drv->base;
1374 }