svga: Fix a leftover debug hack
[mesa.git] / src / glx / dri3_glx.c
1 /*
2 * Copyright © 2013 Keith Packard
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23 /*
24 * Portions of this code were adapted from dri2_glx.c which carries the
25 * following copyright:
26 *
27 * Copyright © 2008 Red Hat, Inc.
28 *
29 * Permission is hereby granted, free of charge, to any person obtaining a
30 * copy of this software and associated documentation files (the "Soft-
31 * ware"), to deal in the Software without restriction, including without
32 * limitation the rights to use, copy, modify, merge, publish, distribute,
33 * and/or sell copies of the Software, and to permit persons to whom the
34 * Software is furnished to do so, provided that the above copyright
35 * notice(s) and this permission notice appear in all copies of the Soft-
36 * ware and that both the above copyright notice(s) and this permission
37 * notice appear in supporting documentation.
38 *
39 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
40 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
41 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
42 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
43 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
44 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
45 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
46 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
47 * MANCE OF THIS SOFTWARE.
48 *
49 * Except as contained in this notice, the name of a copyright holder shall
50 * not be used in advertising or otherwise to promote the sale, use or
51 * other dealings in this Software without prior written authorization of
52 * the copyright holder.
53 *
54 * Authors:
55 * Kristian Høgsberg (krh@redhat.com)
56 */
57
58 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
59
60 #include <X11/Xlib.h>
61 #include <X11/extensions/Xfixes.h>
62 #include <X11/Xlib-xcb.h>
63 #include <X11/xshmfence.h>
64 #include <xcb/xcb.h>
65 #include <xcb/dri3.h>
66 #include <xcb/present.h>
67 #include <GL/gl.h>
68 #include "glxclient.h"
69 #include <dlfcn.h>
70 #include <fcntl.h>
71 #include <unistd.h>
72 #include <sys/types.h>
73 #include <sys/mman.h>
74 #include <sys/time.h>
75
76 #include "dri_common.h"
77 #include "dri3_priv.h"
78 #include "loader.h"
79 #include "dri2.h"
80
81 static struct dri3_drawable *
82 loader_drawable_to_dri3_drawable(struct loader_dri3_drawable *draw) {
83 size_t offset = offsetof(struct dri3_drawable, loader_drawable);
84 if (!draw)
85 return NULL;
86 return (struct dri3_drawable *)(((void*) draw) - offset);
87 }
88
89 static void
90 glx_dri3_set_drawable_size(struct loader_dri3_drawable *draw,
91 int width, int height)
92 {
93 /* Nothing to do */
94 }
95
96 static bool
97 glx_dri3_in_current_context(struct loader_dri3_drawable *draw)
98 {
99 struct dri3_drawable *priv = loader_drawable_to_dri3_drawable(draw);
100
101 if (!priv)
102 return false;
103
104 struct dri3_context *pcp = (struct dri3_context *) __glXGetCurrentContext();
105 struct dri3_screen *psc = (struct dri3_screen *) priv->base.psc;
106
107 return (&pcp->base != &dummyContext) && pcp->base.psc == &psc->base;
108 }
109
110 static __DRIcontext *
111 glx_dri3_get_dri_context(struct loader_dri3_drawable *draw)
112 {
113 struct glx_context *gc = __glXGetCurrentContext();
114 struct dri3_context *dri3Ctx = (struct dri3_context *) gc;
115
116 return (gc != &dummyContext) ? dri3Ctx->driContext : NULL;
117 }
118
119 static void
120 glx_dri3_flush_drawable(struct loader_dri3_drawable *draw, unsigned flags)
121 {
122 loader_dri3_flush(draw, flags, __DRI2_THROTTLE_SWAPBUFFER);
123 }
124
125 static void
126 glx_dri3_show_fps(struct loader_dri3_drawable *draw, uint64_t current_ust)
127 {
128 struct dri3_drawable *priv = loader_drawable_to_dri3_drawable(draw);
129 const uint64_t interval =
130 ((struct dri3_screen *) priv->base.psc)->show_fps_interval;
131
132 if (!interval)
133 return;
134
135 priv->frames++;
136
137 /* DRI3+Present together uses microseconds for UST. */
138 if (priv->previous_ust + interval * 1000000 <= current_ust) {
139 if (priv->previous_ust) {
140 fprintf(stderr, "libGL: FPS = %.1f\n",
141 ((uint64_t) priv->frames * 1000000) /
142 (double)(current_ust - priv->previous_ust));
143 }
144 priv->frames = 0;
145 priv->previous_ust = current_ust;
146 }
147 }
148
149 static const struct loader_dri3_vtable glx_dri3_vtable = {
150 .set_drawable_size = glx_dri3_set_drawable_size,
151 .in_current_context = glx_dri3_in_current_context,
152 .get_dri_context = glx_dri3_get_dri_context,
153 .flush_drawable = glx_dri3_flush_drawable,
154 .show_fps = glx_dri3_show_fps,
155 };
156
157
158 static const struct glx_context_vtable dri3_context_vtable;
159
160 static void
161 dri3_destroy_context(struct glx_context *context)
162 {
163 struct dri3_context *pcp = (struct dri3_context *) context;
164 struct dri3_screen *psc = (struct dri3_screen *) context->psc;
165
166 driReleaseDrawables(&pcp->base);
167
168 free((char *) context->extensions);
169
170 (*psc->core->destroyContext) (pcp->driContext);
171
172 free(pcp);
173 }
174
175 static Bool
176 dri3_bind_context(struct glx_context *context, struct glx_context *old,
177 GLXDrawable draw, GLXDrawable read)
178 {
179 struct dri3_context *pcp = (struct dri3_context *) context;
180 struct dri3_screen *psc = (struct dri3_screen *) pcp->base.psc;
181 struct dri3_drawable *pdraw, *pread;
182 __DRIdrawable *dri_draw = NULL, *dri_read = NULL;
183
184 pdraw = (struct dri3_drawable *) driFetchDrawable(context, draw);
185 pread = (struct dri3_drawable *) driFetchDrawable(context, read);
186
187 driReleaseDrawables(&pcp->base);
188
189 if (pdraw)
190 dri_draw = pdraw->loader_drawable.dri_drawable;
191 else if (draw != None)
192 return GLXBadDrawable;
193
194 if (pread)
195 dri_read = pread->loader_drawable.dri_drawable;
196 else if (read != None)
197 return GLXBadDrawable;
198
199 if (!(*psc->core->bindContext) (pcp->driContext, dri_draw, dri_read))
200 return GLXBadContext;
201
202 if (dri_draw)
203 (*psc->f->invalidate)(dri_draw);
204 if (dri_read && dri_read != dri_draw)
205 (*psc->f->invalidate)(dri_read);
206
207 return Success;
208 }
209
210 static void
211 dri3_unbind_context(struct glx_context *context, struct glx_context *new)
212 {
213 struct dri3_context *pcp = (struct dri3_context *) context;
214 struct dri3_screen *psc = (struct dri3_screen *) pcp->base.psc;
215
216 (*psc->core->unbindContext) (pcp->driContext);
217 }
218
219 static struct glx_context *
220 dri3_create_context_attribs(struct glx_screen *base,
221 struct glx_config *config_base,
222 struct glx_context *shareList,
223 unsigned num_attribs,
224 const uint32_t *attribs,
225 unsigned *error)
226 {
227 struct dri3_context *pcp = NULL;
228 struct dri3_context *pcp_shared = NULL;
229 struct dri3_screen *psc = (struct dri3_screen *) base;
230 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base;
231 __DRIcontext *shared = NULL;
232
233 uint32_t minor_ver = 1;
234 uint32_t major_ver = 2;
235 uint32_t flags = 0;
236 unsigned api;
237 int reset = __DRI_CTX_RESET_NO_NOTIFICATION;
238 int release = __DRI_CTX_RELEASE_BEHAVIOR_FLUSH;
239 uint32_t ctx_attribs[2 * 6];
240 unsigned num_ctx_attribs = 0;
241 uint32_t render_type;
242
243 /* Remap the GLX tokens to DRI2 tokens.
244 */
245 if (!dri2_convert_glx_attribs(num_attribs, attribs,
246 &major_ver, &minor_ver,
247 &render_type, &flags, &api,
248 &reset, &release, error))
249 goto error_exit;
250
251 /* Check the renderType value */
252 if (!validate_renderType_against_config(config_base, render_type))
253 goto error_exit;
254
255 if (shareList) {
256 pcp_shared = (struct dri3_context *) shareList;
257 shared = pcp_shared->driContext;
258 }
259
260 pcp = calloc(1, sizeof *pcp);
261 if (pcp == NULL) {
262 *error = __DRI_CTX_ERROR_NO_MEMORY;
263 goto error_exit;
264 }
265
266 if (!glx_context_init(&pcp->base, &psc->base, config_base))
267 goto error_exit;
268
269 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_MAJOR_VERSION;
270 ctx_attribs[num_ctx_attribs++] = major_ver;
271 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_MINOR_VERSION;
272 ctx_attribs[num_ctx_attribs++] = minor_ver;
273
274 /* Only send a value when the non-default value is requested. By doing
275 * this we don't have to check the driver's DRI3 version before sending the
276 * default value.
277 */
278 if (reset != __DRI_CTX_RESET_NO_NOTIFICATION) {
279 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_RESET_STRATEGY;
280 ctx_attribs[num_ctx_attribs++] = reset;
281 }
282
283 if (release != __DRI_CTX_RELEASE_BEHAVIOR_FLUSH) {
284 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_RELEASE_BEHAVIOR;
285 ctx_attribs[num_ctx_attribs++] = release;
286 }
287
288 if (flags != 0) {
289 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_FLAGS;
290
291 /* The current __DRI_CTX_FLAG_* values are identical to the
292 * GLX_CONTEXT_*_BIT values.
293 */
294 ctx_attribs[num_ctx_attribs++] = flags;
295 }
296
297 pcp->driContext =
298 (*psc->image_driver->createContextAttribs) (psc->driScreen,
299 api,
300 config ? config->driConfig
301 : NULL,
302 shared,
303 num_ctx_attribs / 2,
304 ctx_attribs,
305 error,
306 pcp);
307
308 if (pcp->driContext == NULL)
309 goto error_exit;
310
311 pcp->base.vtable = &dri3_context_vtable;
312
313 return &pcp->base;
314
315 error_exit:
316 free(pcp);
317
318 return NULL;
319 }
320
321 static struct glx_context *
322 dri3_create_context(struct glx_screen *base,
323 struct glx_config *config_base,
324 struct glx_context *shareList, int renderType)
325 {
326 unsigned int error;
327 uint32_t attribs[2] = { GLX_RENDER_TYPE, renderType };
328
329 return dri3_create_context_attribs(base, config_base, shareList,
330 1, attribs, &error);
331 }
332
333 static void
334 dri3_destroy_drawable(__GLXDRIdrawable *base)
335 {
336 struct dri3_drawable *pdraw = (struct dri3_drawable *) base;
337
338 loader_dri3_drawable_fini(&pdraw->loader_drawable);
339
340 free(pdraw);
341 }
342
343 static __GLXDRIdrawable *
344 dri3_create_drawable(struct glx_screen *base, XID xDrawable,
345 GLXDrawable drawable, struct glx_config *config_base)
346 {
347 struct dri3_drawable *pdraw;
348 struct dri3_screen *psc = (struct dri3_screen *) base;
349 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base;
350
351 pdraw = calloc(1, sizeof(*pdraw));
352 if (!pdraw)
353 return NULL;
354
355 pdraw->base.destroyDrawable = dri3_destroy_drawable;
356 pdraw->base.xDrawable = xDrawable;
357 pdraw->base.drawable = drawable;
358 pdraw->base.psc = &psc->base;
359
360 (void) __glXInitialize(psc->base.dpy);
361
362 if (loader_dri3_drawable_init(XGetXCBConnection(base->dpy),
363 xDrawable, psc->driScreen,
364 psc->is_different_gpu, config->driConfig,
365 &psc->loader_dri3_ext, &glx_dri3_vtable,
366 &pdraw->loader_drawable)) {
367 free(pdraw);
368 return NULL;
369 }
370
371 return &pdraw->base;
372 }
373
374 /** dri3_wait_for_msc
375 *
376 * Get the X server to send an event when the target msc/divisor/remainder is
377 * reached.
378 */
379 static int
380 dri3_wait_for_msc(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor,
381 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
382 {
383 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
384
385 loader_dri3_wait_for_msc(&priv->loader_drawable, target_msc, divisor,
386 remainder, ust, msc, sbc);
387
388 return 1;
389 }
390
391 /** dri3_drawable_get_msc
392 *
393 * Return the current UST/MSC/SBC triplet by asking the server
394 * for an event
395 */
396 static int
397 dri3_drawable_get_msc(struct glx_screen *psc, __GLXDRIdrawable *pdraw,
398 int64_t *ust, int64_t *msc, int64_t *sbc)
399 {
400 return dri3_wait_for_msc(pdraw, 0, 0, 0, ust, msc,sbc);
401 }
402
403 /** dri3_wait_for_sbc
404 *
405 * Wait for the completed swap buffer count to reach the specified
406 * target. Presumably the application knows that this will be reached with
407 * outstanding complete events, or we're going to be here awhile.
408 */
409 static int
410 dri3_wait_for_sbc(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
411 int64_t *msc, int64_t *sbc)
412 {
413 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
414
415 return loader_dri3_wait_for_sbc(&priv->loader_drawable, target_sbc,
416 ust, msc, sbc);
417 }
418
419 static void
420 dri3_copy_sub_buffer(__GLXDRIdrawable *pdraw, int x, int y,
421 int width, int height,
422 Bool flush)
423 {
424 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
425
426 loader_dri3_copy_sub_buffer(&priv->loader_drawable, x, y,
427 width, height, flush);
428 }
429
430 static void
431 dri3_wait_x(struct glx_context *gc)
432 {
433 struct dri3_drawable *priv = (struct dri3_drawable *)
434 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
435
436 if (priv)
437 loader_dri3_wait_x(&priv->loader_drawable);
438 }
439
440 static void
441 dri3_wait_gl(struct glx_context *gc)
442 {
443 struct dri3_drawable *priv = (struct dri3_drawable *)
444 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
445
446 if (priv)
447 loader_dri3_wait_gl(&priv->loader_drawable);
448 }
449
450 /**
451 * Called by the driver when it needs to update the real front buffer with the
452 * contents of its fake front buffer.
453 */
454 static void
455 dri3_flush_front_buffer(__DRIdrawable *driDrawable, void *loaderPrivate)
456 {
457 struct loader_dri3_drawable *draw = loaderPrivate;
458 struct dri3_drawable *pdraw = loader_drawable_to_dri3_drawable(draw);
459 struct dri3_screen *psc;
460
461 if (!pdraw)
462 return;
463
464 if (!pdraw->base.psc)
465 return;
466
467 psc = (struct dri3_screen *) pdraw->base.psc;
468
469 (void) __glXInitialize(psc->base.dpy);
470
471 loader_dri3_flush(draw, __DRI2_FLUSH_DRAWABLE, __DRI2_THROTTLE_FLUSHFRONT);
472
473 (*psc->f->invalidate)(driDrawable);
474 loader_dri3_wait_gl(draw);
475 }
476
477 /**
478 * Make sure all pending swapbuffers have been submitted to hardware
479 *
480 * \param driDrawable[in] Pointer to the dri drawable whose swaps we are
481 * flushing.
482 * \param loaderPrivate[in] Pointer to the corresponding struct
483 * loader_dri_drawable.
484 */
485 static void
486 dri3_flush_swap_buffers(__DRIdrawable *driDrawable, void *loaderPrivate)
487 {
488 struct loader_dri3_drawable *draw = loaderPrivate;
489 struct dri3_drawable *pdraw = loader_drawable_to_dri3_drawable(draw);
490 struct dri3_screen *psc;
491
492 if (!pdraw)
493 return;
494
495 if (!pdraw->base.psc)
496 return;
497
498 psc = (struct dri3_screen *) pdraw->base.psc;
499
500 (void) __glXInitialize(psc->base.dpy);
501 loader_dri3_swapbuffer_barrier(draw);
502 }
503
504 static void
505 dri_set_background_context(void *loaderPrivate)
506 {
507 struct dri3_context *pcp = (struct dri3_context *)loaderPrivate;
508 __glXSetCurrentContext(&pcp->base);
509 }
510
511 static GLboolean
512 dri_is_thread_safe(void *loaderPrivate)
513 {
514 /* Unlike DRI2, DRI3 doesn't call GetBuffers/GetBuffersWithFormat
515 * during draw so we're safe here.
516 */
517 return true;
518 }
519
520 /* The image loader extension record for DRI3
521 */
522 static const __DRIimageLoaderExtension imageLoaderExtension = {
523 .base = { __DRI_IMAGE_LOADER, 3 },
524
525 .getBuffers = loader_dri3_get_buffers,
526 .flushFrontBuffer = dri3_flush_front_buffer,
527 .flushSwapBuffers = dri3_flush_swap_buffers,
528 };
529
530 const __DRIuseInvalidateExtension dri3UseInvalidate = {
531 .base = { __DRI_USE_INVALIDATE, 1 }
532 };
533
534 static const __DRIbackgroundCallableExtension driBackgroundCallable = {
535 .base = { __DRI_BACKGROUND_CALLABLE, 2 },
536
537 .setBackgroundContext = dri_set_background_context,
538 .isThreadSafe = dri_is_thread_safe,
539 };
540
541 static const __DRIextension *loader_extensions[] = {
542 &imageLoaderExtension.base,
543 &dri3UseInvalidate.base,
544 &driBackgroundCallable.base,
545 NULL
546 };
547
548 /** dri3_swap_buffers
549 *
550 * Make the current back buffer visible using the present extension
551 */
552 static int64_t
553 dri3_swap_buffers(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor,
554 int64_t remainder, Bool flush)
555 {
556 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
557 unsigned flags = __DRI2_FLUSH_DRAWABLE;
558
559 if (flush)
560 flags |= __DRI2_FLUSH_CONTEXT;
561
562 return loader_dri3_swap_buffers_msc(&priv->loader_drawable,
563 target_msc, divisor, remainder,
564 flags, false);
565 }
566
567 static int
568 dri3_get_buffer_age(__GLXDRIdrawable *pdraw)
569 {
570 struct dri3_drawable *priv = (struct dri3_drawable *)pdraw;
571
572 return loader_dri3_query_buffer_age(&priv->loader_drawable);
573 }
574
575 /** dri3_destroy_screen
576 */
577 static void
578 dri3_destroy_screen(struct glx_screen *base)
579 {
580 struct dri3_screen *psc = (struct dri3_screen *) base;
581
582 /* Free the direct rendering per screen data */
583 loader_dri3_close_screen(psc->driScreen);
584 (*psc->core->destroyScreen) (psc->driScreen);
585 driDestroyConfigs(psc->driver_configs);
586 close(psc->fd);
587 free(psc);
588 }
589
590 /** dri3_set_swap_interval
591 *
592 * Record the application swap interval specification,
593 */
594 static int
595 dri3_set_swap_interval(__GLXDRIdrawable *pdraw, int interval)
596 {
597 assert(pdraw != NULL);
598
599 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
600 GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
601 struct dri3_screen *psc = (struct dri3_screen *) priv->base.psc;
602
603 if (psc->config)
604 psc->config->configQueryi(psc->driScreen,
605 "vblank_mode", &vblank_mode);
606
607 switch (vblank_mode) {
608 case DRI_CONF_VBLANK_NEVER:
609 if (interval != 0)
610 return GLX_BAD_VALUE;
611 break;
612 case DRI_CONF_VBLANK_ALWAYS_SYNC:
613 if (interval <= 0)
614 return GLX_BAD_VALUE;
615 break;
616 default:
617 break;
618 }
619
620 priv->swap_interval = interval;
621 loader_dri3_set_swap_interval(&priv->loader_drawable, interval);
622
623 return 0;
624 }
625
626 /** dri3_get_swap_interval
627 *
628 * Return the stored swap interval
629 */
630 static int
631 dri3_get_swap_interval(__GLXDRIdrawable *pdraw)
632 {
633 assert(pdraw != NULL);
634
635 struct dri3_drawable *priv = (struct dri3_drawable *) pdraw;
636
637 return priv->swap_interval;
638 }
639
640 static void
641 dri3_bind_tex_image(Display * dpy,
642 GLXDrawable drawable,
643 int buffer, const int *attrib_list)
644 {
645 struct glx_context *gc = __glXGetCurrentContext();
646 struct dri3_context *pcp = (struct dri3_context *) gc;
647 __GLXDRIdrawable *base = GetGLXDRIDrawable(dpy, drawable);
648 struct dri3_drawable *pdraw = (struct dri3_drawable *) base;
649 struct dri3_screen *psc;
650
651 if (pdraw != NULL) {
652 psc = (struct dri3_screen *) base->psc;
653
654 (*psc->f->invalidate)(pdraw->loader_drawable.dri_drawable);
655
656 XSync(dpy, false);
657
658 (*psc->texBuffer->setTexBuffer2) (pcp->driContext,
659 pdraw->base.textureTarget,
660 pdraw->base.textureFormat,
661 pdraw->loader_drawable.dri_drawable);
662 }
663 }
664
665 static void
666 dri3_release_tex_image(Display * dpy, GLXDrawable drawable, int buffer)
667 {
668 struct glx_context *gc = __glXGetCurrentContext();
669 struct dri3_context *pcp = (struct dri3_context *) gc;
670 __GLXDRIdrawable *base = GetGLXDRIDrawable(dpy, drawable);
671 struct dri3_drawable *pdraw = (struct dri3_drawable *) base;
672 struct dri3_screen *psc;
673
674 if (pdraw != NULL) {
675 psc = (struct dri3_screen *) base->psc;
676
677 if (psc->texBuffer->base.version >= 3 &&
678 psc->texBuffer->releaseTexBuffer != NULL)
679 (*psc->texBuffer->releaseTexBuffer) (pcp->driContext,
680 pdraw->base.textureTarget,
681 pdraw->loader_drawable.dri_drawable);
682 }
683 }
684
685 static const struct glx_context_vtable dri3_context_vtable = {
686 .destroy = dri3_destroy_context,
687 .bind = dri3_bind_context,
688 .unbind = dri3_unbind_context,
689 .wait_gl = dri3_wait_gl,
690 .wait_x = dri3_wait_x,
691 .use_x_font = DRI_glXUseXFont,
692 .bind_tex_image = dri3_bind_tex_image,
693 .release_tex_image = dri3_release_tex_image,
694 .get_proc_address = NULL,
695 .interop_query_device_info = dri3_interop_query_device_info,
696 .interop_export_object = dri3_interop_export_object
697 };
698
699 /** dri3_bind_extensions
700 *
701 * Enable all of the extensions supported on DRI3
702 */
703 static void
704 dri3_bind_extensions(struct dri3_screen *psc, struct glx_display * priv,
705 const char *driverName)
706 {
707 const __DRIextension **extensions;
708 unsigned mask;
709 int i;
710
711 extensions = psc->core->getExtensions(psc->driScreen);
712
713 __glXEnableDirectExtension(&psc->base, "GLX_SGI_video_sync");
714 __glXEnableDirectExtension(&psc->base, "GLX_SGI_swap_control");
715 __glXEnableDirectExtension(&psc->base, "GLX_MESA_swap_control");
716 __glXEnableDirectExtension(&psc->base, "GLX_SGI_make_current_read");
717 __glXEnableDirectExtension(&psc->base, "GLX_INTEL_swap_event");
718
719 mask = psc->image_driver->getAPIMask(psc->driScreen);
720
721 __glXEnableDirectExtension(&psc->base, "GLX_ARB_create_context");
722 __glXEnableDirectExtension(&psc->base, "GLX_ARB_create_context_profile");
723
724 if ((mask & ((1 << __DRI_API_GLES) |
725 (1 << __DRI_API_GLES2) |
726 (1 << __DRI_API_GLES3))) != 0) {
727 __glXEnableDirectExtension(&psc->base,
728 "GLX_EXT_create_context_es_profile");
729 __glXEnableDirectExtension(&psc->base,
730 "GLX_EXT_create_context_es2_profile");
731 }
732
733 for (i = 0; extensions[i]; i++) {
734 /* when on a different gpu than the server, the server pixmaps
735 * can have a tiling mode we can't read. Thus we can't create
736 * a texture from them.
737 */
738 if (!psc->is_different_gpu &&
739 (strcmp(extensions[i]->name, __DRI_TEX_BUFFER) == 0)) {
740 psc->texBuffer = (__DRItexBufferExtension *) extensions[i];
741 __glXEnableDirectExtension(&psc->base, "GLX_EXT_texture_from_pixmap");
742 }
743
744 if ((strcmp(extensions[i]->name, __DRI2_FLUSH) == 0)) {
745 psc->f = (__DRI2flushExtension *) extensions[i];
746 /* internal driver extension, no GL extension exposed */
747 }
748
749 if (strcmp(extensions[i]->name, __DRI_IMAGE) == 0)
750 psc->image = (__DRIimageExtension *) extensions[i];
751
752 if ((strcmp(extensions[i]->name, __DRI2_CONFIG_QUERY) == 0))
753 psc->config = (__DRI2configQueryExtension *) extensions[i];
754
755 if (strcmp(extensions[i]->name, __DRI2_ROBUSTNESS) == 0)
756 __glXEnableDirectExtension(&psc->base,
757 "GLX_ARB_create_context_robustness");
758
759 if (strcmp(extensions[i]->name, __DRI2_RENDERER_QUERY) == 0) {
760 psc->rendererQuery = (__DRI2rendererQueryExtension *) extensions[i];
761 __glXEnableDirectExtension(&psc->base, "GLX_MESA_query_renderer");
762 }
763
764 if (strcmp(extensions[i]->name, __DRI2_INTEROP) == 0)
765 psc->interop = (__DRI2interopExtension*)extensions[i];
766
767 if (strcmp(extensions[i]->name, __DRI2_FLUSH_CONTROL) == 0)
768 __glXEnableDirectExtension(&psc->base,
769 "GLX_ARB_context_flush_control");
770 }
771 }
772
773 static const struct glx_screen_vtable dri3_screen_vtable = {
774 .create_context = dri3_create_context,
775 .create_context_attribs = dri3_create_context_attribs,
776 .query_renderer_integer = dri3_query_renderer_integer,
777 .query_renderer_string = dri3_query_renderer_string,
778 };
779
780 /** dri3_create_screen
781 *
782 * Initialize DRI3 on the specified screen.
783 *
784 * Opens the DRI device, locates the appropriate DRI driver
785 * and loads that.
786 *
787 * Checks to see if the driver supports the necessary extensions
788 *
789 * Initializes the driver for the screen and sets up our structures
790 */
791
792 static struct glx_screen *
793 dri3_create_screen(int screen, struct glx_display * priv)
794 {
795 xcb_connection_t *c = XGetXCBConnection(priv->dpy);
796 const __DRIconfig **driver_configs;
797 const __DRIextension **extensions;
798 const struct dri3_display *const pdp = (struct dri3_display *)
799 priv->dri3Display;
800 struct dri3_screen *psc;
801 __GLXDRIscreen *psp;
802 struct glx_config *configs = NULL, *visuals = NULL;
803 char *driverName, *tmp;
804 int i;
805 unsigned char disable;
806
807 psc = calloc(1, sizeof *psc);
808 if (psc == NULL)
809 return NULL;
810
811 psc->fd = -1;
812
813 if (!glx_screen_init(&psc->base, screen, priv)) {
814 free(psc);
815 return NULL;
816 }
817
818 psc->fd = loader_dri3_open(c, RootWindow(priv->dpy, screen), None);
819 if (psc->fd < 0) {
820 int conn_error = xcb_connection_has_error(c);
821
822 glx_screen_cleanup(&psc->base);
823 free(psc);
824 InfoMessageF("screen %d does not appear to be DRI3 capable\n", screen);
825
826 if (conn_error)
827 ErrorMessageF("Connection closed during DRI3 initialization failure");
828
829 return NULL;
830 }
831
832 psc->fd = loader_get_user_preferred_fd(psc->fd, &psc->is_different_gpu);
833
834 driverName = loader_get_driver_for_fd(psc->fd);
835 if (!driverName) {
836 ErrorMessageF("No driver found\n");
837 goto handle_error;
838 }
839
840 psc->driver = driOpenDriver(driverName);
841 if (psc->driver == NULL) {
842 ErrorMessageF("driver pointer missing\n");
843 goto handle_error;
844 }
845
846 extensions = driGetDriverExtensions(psc->driver, driverName);
847 if (extensions == NULL)
848 goto handle_error;
849
850 for (i = 0; extensions[i]; i++) {
851 if (strcmp(extensions[i]->name, __DRI_CORE) == 0)
852 psc->core = (__DRIcoreExtension *) extensions[i];
853 if (strcmp(extensions[i]->name, __DRI_IMAGE_DRIVER) == 0)
854 psc->image_driver = (__DRIimageDriverExtension *) extensions[i];
855 }
856
857
858 if (psc->core == NULL) {
859 ErrorMessageF("core dri driver extension not found\n");
860 goto handle_error;
861 }
862
863 if (psc->image_driver == NULL) {
864 ErrorMessageF("image driver extension not found\n");
865 goto handle_error;
866 }
867
868 psc->driScreen =
869 psc->image_driver->createNewScreen2(screen, psc->fd,
870 pdp->loader_extensions,
871 extensions,
872 &driver_configs, psc);
873
874 if (psc->driScreen == NULL) {
875 ErrorMessageF("failed to create dri screen\n");
876 goto handle_error;
877 }
878
879 dri3_bind_extensions(psc, priv, driverName);
880
881 if (!psc->image || psc->image->base.version < 7 || !psc->image->createImageFromFds) {
882 ErrorMessageF("Version 7 or imageFromFds image extension not found\n");
883 goto handle_error;
884 }
885
886 if (!psc->f || psc->f->base.version < 4) {
887 ErrorMessageF("Version 4 or later of flush extension not found\n");
888 goto handle_error;
889 }
890
891 if (psc->is_different_gpu && psc->image->base.version < 9) {
892 ErrorMessageF("Different GPU, but image extension version 9 or later not found\n");
893 goto handle_error;
894 }
895
896 if (psc->is_different_gpu && !psc->image->blitImage) {
897 ErrorMessageF("Different GPU, but blitImage not implemented for this driver\n");
898 goto handle_error;
899 }
900
901 if (!psc->is_different_gpu && (
902 !psc->texBuffer || psc->texBuffer->base.version < 2 ||
903 !psc->texBuffer->setTexBuffer2
904 )) {
905 ErrorMessageF("Version 2 or later of texBuffer extension not found\n");
906 goto handle_error;
907 }
908
909 psc->loader_dri3_ext.core = psc->core;
910 psc->loader_dri3_ext.image_driver = psc->image_driver;
911 psc->loader_dri3_ext.flush = psc->f;
912 psc->loader_dri3_ext.tex_buffer = psc->texBuffer;
913 psc->loader_dri3_ext.image = psc->image;
914 psc->loader_dri3_ext.config = psc->config;
915
916 configs = driConvertConfigs(psc->core, psc->base.configs, driver_configs);
917 visuals = driConvertConfigs(psc->core, psc->base.visuals, driver_configs);
918
919 if (!configs || !visuals) {
920 ErrorMessageF("No matching fbConfigs or visuals found\n");
921 goto handle_error;
922 }
923
924 glx_config_destroy_list(psc->base.configs);
925 psc->base.configs = configs;
926 glx_config_destroy_list(psc->base.visuals);
927 psc->base.visuals = visuals;
928
929 psc->driver_configs = driver_configs;
930
931 psc->base.vtable = &dri3_screen_vtable;
932 psp = &psc->vtable;
933 psc->base.driScreen = psp;
934 psp->destroyScreen = dri3_destroy_screen;
935 psp->createDrawable = dri3_create_drawable;
936 psp->swapBuffers = dri3_swap_buffers;
937
938 psp->getDrawableMSC = dri3_drawable_get_msc;
939 psp->waitForMSC = dri3_wait_for_msc;
940 psp->waitForSBC = dri3_wait_for_sbc;
941 psp->setSwapInterval = dri3_set_swap_interval;
942 psp->getSwapInterval = dri3_get_swap_interval;
943 if (psc->config->configQueryb(psc->driScreen,
944 "glx_disable_oml_sync_control",
945 &disable) || !disable)
946 __glXEnableDirectExtension(&psc->base, "GLX_OML_sync_control");
947
948 psp->copySubBuffer = dri3_copy_sub_buffer;
949 __glXEnableDirectExtension(&psc->base, "GLX_MESA_copy_sub_buffer");
950
951 psp->getBufferAge = dri3_get_buffer_age;
952 if (psc->config->configQueryb(psc->driScreen,
953 "glx_disable_ext_buffer_age",
954 &disable) || !disable)
955 __glXEnableDirectExtension(&psc->base, "GLX_EXT_buffer_age");
956
957 free(driverName);
958
959 tmp = getenv("LIBGL_SHOW_FPS");
960 psc->show_fps_interval = tmp ? atoi(tmp) : 0;
961 if (psc->show_fps_interval < 0)
962 psc->show_fps_interval = 0;
963
964 InfoMessageF("Using DRI3 for screen %d\n", screen);
965
966 return &psc->base;
967
968 handle_error:
969 CriticalErrorMessageF("failed to load driver: %s\n", driverName);
970
971 if (configs)
972 glx_config_destroy_list(configs);
973 if (visuals)
974 glx_config_destroy_list(visuals);
975 if (psc->driScreen)
976 psc->core->destroyScreen(psc->driScreen);
977 psc->driScreen = NULL;
978 if (psc->fd >= 0)
979 close(psc->fd);
980 if (psc->driver)
981 dlclose(psc->driver);
982
983 free(driverName);
984 glx_screen_cleanup(&psc->base);
985 free(psc);
986
987 return NULL;
988 }
989
990 /** dri_destroy_display
991 *
992 * Called from __glXFreeDisplayPrivate.
993 */
994 static void
995 dri3_destroy_display(__GLXDRIdisplay * dpy)
996 {
997 free(dpy);
998 }
999
1000 /** dri3_create_display
1001 *
1002 * Allocate, initialize and return a __DRIdisplayPrivate object.
1003 * This is called from __glXInitialize() when we are given a new
1004 * display pointer. This is public to that function, but hidden from
1005 * outside of libGL.
1006 */
1007 _X_HIDDEN __GLXDRIdisplay *
1008 dri3_create_display(Display * dpy)
1009 {
1010 struct dri3_display *pdp;
1011 xcb_connection_t *c = XGetXCBConnection(dpy);
1012 xcb_dri3_query_version_cookie_t dri3_cookie;
1013 xcb_dri3_query_version_reply_t *dri3_reply;
1014 xcb_present_query_version_cookie_t present_cookie;
1015 xcb_present_query_version_reply_t *present_reply;
1016 xcb_generic_error_t *error;
1017 const xcb_query_extension_reply_t *extension;
1018
1019 xcb_prefetch_extension_data(c, &xcb_dri3_id);
1020 xcb_prefetch_extension_data(c, &xcb_present_id);
1021
1022 extension = xcb_get_extension_data(c, &xcb_dri3_id);
1023 if (!(extension && extension->present))
1024 return NULL;
1025
1026 extension = xcb_get_extension_data(c, &xcb_present_id);
1027 if (!(extension && extension->present))
1028 return NULL;
1029
1030 dri3_cookie = xcb_dri3_query_version(c,
1031 XCB_DRI3_MAJOR_VERSION,
1032 XCB_DRI3_MINOR_VERSION);
1033
1034
1035 present_cookie = xcb_present_query_version(c,
1036 XCB_PRESENT_MAJOR_VERSION,
1037 XCB_PRESENT_MINOR_VERSION);
1038
1039 pdp = malloc(sizeof *pdp);
1040 if (pdp == NULL)
1041 return NULL;
1042
1043 dri3_reply = xcb_dri3_query_version_reply(c, dri3_cookie, &error);
1044 if (!dri3_reply) {
1045 free(error);
1046 goto no_extension;
1047 }
1048
1049 pdp->dri3Major = dri3_reply->major_version;
1050 pdp->dri3Minor = dri3_reply->minor_version;
1051 free(dri3_reply);
1052
1053 present_reply = xcb_present_query_version_reply(c, present_cookie, &error);
1054 if (!present_reply) {
1055 free(error);
1056 goto no_extension;
1057 }
1058 pdp->presentMajor = present_reply->major_version;
1059 pdp->presentMinor = present_reply->minor_version;
1060 free(present_reply);
1061
1062 pdp->base.destroyDisplay = dri3_destroy_display;
1063 pdp->base.createScreen = dri3_create_screen;
1064
1065 loader_set_logger(dri_message);
1066
1067 pdp->loader_extensions = loader_extensions;
1068
1069 return &pdp->base;
1070 no_extension:
1071 free(pdp);
1072 return NULL;
1073 }
1074
1075 #endif /* GLX_DIRECT_RENDERING */