glx: Implement GLX_EXT_no_config_context
[mesa.git] / src / glx / dri2_glx.c
1 /*
2 * Copyright © 2008 Red Hat, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Soft-
6 * ware"), to deal in the Software without restriction, including without
7 * limitation the rights to use, copy, modify, merge, publish, distribute,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, provided that the above copyright
10 * notice(s) and this permission notice appear in all copies of the Soft-
11 * ware and that both the above copyright notice(s) and this permission
12 * notice appear in supporting documentation.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
16 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
17 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
18 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
19 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
22 * MANCE OF THIS SOFTWARE.
23 *
24 * Except as contained in this notice, the name of a copyright holder shall
25 * not be used in advertising or otherwise to promote the sale, use or
26 * other dealings in this Software without prior written authorization of
27 * the copyright holder.
28 *
29 * Authors:
30 * Kristian Høgsberg (krh@redhat.com)
31 */
32
33 #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL)
34
35 #include <X11/Xlib.h>
36 #include <X11/extensions/Xfixes.h>
37 #include <X11/Xlib-xcb.h>
38 #include <xcb/xcb.h>
39 #include <xcb/dri2.h>
40 #include "glxclient.h"
41 #include <X11/extensions/dri2proto.h>
42 #include <dlfcn.h>
43 #include <fcntl.h>
44 #include <unistd.h>
45 #include <sys/types.h>
46 #include <sys/mman.h>
47 #include <sys/time.h>
48 #include "dri2.h"
49 #include "dri_common.h"
50 #include "dri2_priv.h"
51 #include "loader.h"
52
53 /* From xmlpool/options.h, user exposed so should be stable */
54 #define DRI_CONF_VBLANK_NEVER 0
55 #define DRI_CONF_VBLANK_DEF_INTERVAL_0 1
56 #define DRI_CONF_VBLANK_DEF_INTERVAL_1 2
57 #define DRI_CONF_VBLANK_ALWAYS_SYNC 3
58
59 #undef DRI2_MINOR
60 #define DRI2_MINOR 1
61
62 struct dri2_display
63 {
64 __GLXDRIdisplay base;
65
66 /*
67 ** XFree86-DRI version information
68 */
69 int driMajor;
70 int driMinor;
71 int driPatch;
72 int swapAvailable;
73 int invalidateAvailable;
74
75 __glxHashTable *dri2Hash;
76
77 const __DRIextension *loader_extensions[5];
78 };
79
80 struct dri2_drawable
81 {
82 __GLXDRIdrawable base;
83 __DRIdrawable *driDrawable;
84 __DRIbuffer buffers[5];
85 int bufferCount;
86 int width, height;
87 int have_back;
88 int have_fake_front;
89 int swap_interval;
90
91 uint64_t previous_time;
92 unsigned frames;
93 };
94
95 static const struct glx_context_vtable dri2_context_vtable;
96
97 /* For XCB's handling of ust/msc/sbc counters, we have to hand it the high and
98 * low halves separately. This helps you split them.
99 */
100 static void
101 split_counter(uint64_t counter, uint32_t *hi, uint32_t *lo)
102 {
103 *hi = (counter >> 32);
104 *lo = counter & 0xffffffff;
105 }
106
107 static uint64_t
108 merge_counter(uint32_t hi, uint32_t lo)
109 {
110 return ((uint64_t)hi << 32) | lo;
111 }
112
113 static void
114 dri2_destroy_context(struct glx_context *context)
115 {
116 struct dri2_context *pcp = (struct dri2_context *) context;
117 struct dri2_screen *psc = (struct dri2_screen *) context->psc;
118
119 driReleaseDrawables(&pcp->base);
120
121 free((char *) context->extensions);
122
123 (*psc->core->destroyContext) (pcp->driContext);
124
125 free(pcp);
126 }
127
128 static Bool
129 dri2_bind_context(struct glx_context *context, struct glx_context *old,
130 GLXDrawable draw, GLXDrawable read)
131 {
132 struct dri2_context *pcp = (struct dri2_context *) context;
133 struct dri2_screen *psc = (struct dri2_screen *) pcp->base.psc;
134 struct dri2_drawable *pdraw, *pread;
135 __DRIdrawable *dri_draw = NULL, *dri_read = NULL;
136 struct glx_display *dpyPriv = psc->base.display;
137 struct dri2_display *pdp;
138
139 pdraw = (struct dri2_drawable *) driFetchDrawable(context, draw);
140 pread = (struct dri2_drawable *) driFetchDrawable(context, read);
141
142 driReleaseDrawables(&pcp->base);
143
144 if (pdraw)
145 dri_draw = pdraw->driDrawable;
146 else if (draw != None)
147 return GLXBadDrawable;
148
149 if (pread)
150 dri_read = pread->driDrawable;
151 else if (read != None)
152 return GLXBadDrawable;
153
154 if (!(*psc->core->bindContext) (pcp->driContext, dri_draw, dri_read))
155 return GLXBadContext;
156
157 /* If the server doesn't send invalidate events, we may miss a
158 * resize before the rendering starts. Invalidate the buffers now
159 * so the driver will recheck before rendering starts. */
160 pdp = (struct dri2_display *) dpyPriv->dri2Display;
161 if (!pdp->invalidateAvailable && pdraw) {
162 dri2InvalidateBuffers(psc->base.dpy, pdraw->base.xDrawable);
163 if (pread != pdraw && pread)
164 dri2InvalidateBuffers(psc->base.dpy, pread->base.xDrawable);
165 }
166
167 return Success;
168 }
169
170 static void
171 dri2_unbind_context(struct glx_context *context, struct glx_context *new)
172 {
173 struct dri2_context *pcp = (struct dri2_context *) context;
174 struct dri2_screen *psc = (struct dri2_screen *) pcp->base.psc;
175
176 (*psc->core->unbindContext) (pcp->driContext);
177 }
178
179 static struct glx_context *
180 dri2_create_context(struct glx_screen *base,
181 struct glx_config *config_base,
182 struct glx_context *shareList, int renderType)
183 {
184 struct dri2_context *pcp, *pcp_shared;
185 struct dri2_screen *psc = (struct dri2_screen *) base;
186 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base;
187 __DRIcontext *shared = NULL;
188
189 /* Check the renderType value */
190 if (!validate_renderType_against_config(config_base, renderType))
191 return NULL;
192
193 if (shareList) {
194 /* If the shareList context is not a DRI2 context, we cannot possibly
195 * create a DRI2 context that shares it.
196 */
197 if (shareList->vtable->destroy != dri2_destroy_context) {
198 return NULL;
199 }
200
201 pcp_shared = (struct dri2_context *) shareList;
202 shared = pcp_shared->driContext;
203 }
204
205 pcp = calloc(1, sizeof *pcp);
206 if (pcp == NULL)
207 return NULL;
208
209 if (!glx_context_init(&pcp->base, &psc->base, &config->base)) {
210 free(pcp);
211 return NULL;
212 }
213
214 pcp->base.renderType = renderType;
215
216 pcp->driContext =
217 (*psc->dri2->createNewContext) (psc->driScreen,
218 config->driConfig, shared, pcp);
219
220 if (pcp->driContext == NULL) {
221 free(pcp);
222 return NULL;
223 }
224
225 pcp->base.vtable = &dri2_context_vtable;
226
227 return &pcp->base;
228 }
229
230 static struct glx_context *
231 dri2_create_context_attribs(struct glx_screen *base,
232 struct glx_config *config_base,
233 struct glx_context *shareList,
234 unsigned num_attribs,
235 const uint32_t *attribs,
236 unsigned *error)
237 {
238 struct dri2_context *pcp = NULL;
239 struct dri2_context *pcp_shared = NULL;
240 struct dri2_screen *psc = (struct dri2_screen *) base;
241 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base;
242 __DRIcontext *shared = NULL;
243
244 uint32_t minor_ver;
245 uint32_t major_ver;
246 uint32_t renderType;
247 uint32_t flags;
248 unsigned api;
249 int reset;
250 int release;
251 uint32_t ctx_attribs[2 * 6];
252 unsigned num_ctx_attribs = 0;
253
254 if (psc->dri2->base.version < 3) {
255 *error = __DRI_CTX_ERROR_NO_MEMORY;
256 goto error_exit;
257 }
258
259 /* Remap the GLX tokens to DRI2 tokens.
260 */
261 if (!dri2_convert_glx_attribs(num_attribs, attribs,
262 &major_ver, &minor_ver, &renderType, &flags,
263 &api, &reset, &release, error))
264 goto error_exit;
265
266 if (!dri2_check_no_error(flags, shareList, major_ver, error)) {
267 goto error_exit;
268 }
269
270 /* Check the renderType value */
271 if (!validate_renderType_against_config(config_base, renderType))
272 goto error_exit;
273
274 if (shareList) {
275 pcp_shared = (struct dri2_context *) shareList;
276 shared = pcp_shared->driContext;
277 }
278
279 pcp = calloc(1, sizeof *pcp);
280 if (pcp == NULL) {
281 *error = __DRI_CTX_ERROR_NO_MEMORY;
282 goto error_exit;
283 }
284
285 if (!glx_context_init(&pcp->base, &psc->base, config_base))
286 goto error_exit;
287
288 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_MAJOR_VERSION;
289 ctx_attribs[num_ctx_attribs++] = major_ver;
290 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_MINOR_VERSION;
291 ctx_attribs[num_ctx_attribs++] = minor_ver;
292
293 /* Only send a value when the non-default value is requested. By doing
294 * this we don't have to check the driver's DRI2 version before sending the
295 * default value.
296 */
297 if (reset != __DRI_CTX_RESET_NO_NOTIFICATION) {
298 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_RESET_STRATEGY;
299 ctx_attribs[num_ctx_attribs++] = reset;
300 }
301
302 if (release != __DRI_CTX_RELEASE_BEHAVIOR_FLUSH) {
303 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_RELEASE_BEHAVIOR;
304 ctx_attribs[num_ctx_attribs++] = release;
305 }
306
307 if (flags != 0) {
308 ctx_attribs[num_ctx_attribs++] = __DRI_CTX_ATTRIB_FLAGS;
309
310 /* The current __DRI_CTX_FLAG_* values are identical to the
311 * GLX_CONTEXT_*_BIT values.
312 */
313 ctx_attribs[num_ctx_attribs++] = flags;
314 }
315
316 /* The renderType is retrieved from attribs, or set to default
317 * of GLX_RGBA_TYPE.
318 */
319 pcp->base.renderType = renderType;
320
321 if (flags & __DRI_CTX_FLAG_NO_ERROR)
322 pcp->base.noError = GL_TRUE;
323
324 pcp->driContext =
325 (*psc->dri2->createContextAttribs) (psc->driScreen,
326 api,
327 config ? config->driConfig : NULL,
328 shared,
329 num_ctx_attribs / 2,
330 ctx_attribs,
331 error,
332 pcp);
333
334 if (pcp->driContext == NULL)
335 goto error_exit;
336
337 pcp->base.vtable = &dri2_context_vtable;
338
339 return &pcp->base;
340
341 error_exit:
342 free(pcp);
343
344 return NULL;
345 }
346
347 static void
348 dri2DestroyDrawable(__GLXDRIdrawable *base)
349 {
350 struct dri2_screen *psc = (struct dri2_screen *) base->psc;
351 struct dri2_drawable *pdraw = (struct dri2_drawable *) base;
352 struct glx_display *dpyPriv = psc->base.display;
353 struct dri2_display *pdp = (struct dri2_display *)dpyPriv->dri2Display;
354
355 __glxHashDelete(pdp->dri2Hash, pdraw->base.xDrawable);
356 (*psc->core->destroyDrawable) (pdraw->driDrawable);
357
358 /* If it's a GLX 1.3 drawables, we can destroy the DRI2 drawable
359 * now, as the application explicitly asked to destroy the GLX
360 * drawable. Otherwise, for legacy drawables, we let the DRI2
361 * drawable linger on the server, since there's no good way of
362 * knowing when the application is done with it. The server will
363 * destroy the DRI2 drawable when it destroys the X drawable or the
364 * client exits anyway. */
365 if (pdraw->base.xDrawable != pdraw->base.drawable)
366 DRI2DestroyDrawable(psc->base.dpy, pdraw->base.xDrawable);
367
368 free(pdraw);
369 }
370
371 static __GLXDRIdrawable *
372 dri2CreateDrawable(struct glx_screen *base, XID xDrawable,
373 GLXDrawable drawable, struct glx_config *config_base)
374 {
375 struct dri2_drawable *pdraw;
376 struct dri2_screen *psc = (struct dri2_screen *) base;
377 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base;
378 struct glx_display *dpyPriv;
379 struct dri2_display *pdp;
380 GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
381
382 dpyPriv = __glXInitialize(psc->base.dpy);
383 if (dpyPriv == NULL)
384 return NULL;
385
386 pdraw = calloc(1, sizeof(*pdraw));
387 if (!pdraw)
388 return NULL;
389
390 pdraw->base.destroyDrawable = dri2DestroyDrawable;
391 pdraw->base.xDrawable = xDrawable;
392 pdraw->base.drawable = drawable;
393 pdraw->base.psc = &psc->base;
394 pdraw->bufferCount = 0;
395 pdraw->swap_interval = 1; /* default may be overridden below */
396 pdraw->have_back = 0;
397
398 if (psc->config)
399 psc->config->configQueryi(psc->driScreen,
400 "vblank_mode", &vblank_mode);
401
402 switch (vblank_mode) {
403 case DRI_CONF_VBLANK_NEVER:
404 case DRI_CONF_VBLANK_DEF_INTERVAL_0:
405 pdraw->swap_interval = 0;
406 break;
407 case DRI_CONF_VBLANK_DEF_INTERVAL_1:
408 case DRI_CONF_VBLANK_ALWAYS_SYNC:
409 default:
410 pdraw->swap_interval = 1;
411 break;
412 }
413
414 DRI2CreateDrawable(psc->base.dpy, xDrawable);
415 pdp = (struct dri2_display *)dpyPriv->dri2Display;
416 /* Create a new drawable */
417 pdraw->driDrawable =
418 (*psc->dri2->createNewDrawable) (psc->driScreen,
419 config->driConfig, pdraw);
420
421 if (!pdraw->driDrawable) {
422 DRI2DestroyDrawable(psc->base.dpy, xDrawable);
423 free(pdraw);
424 return NULL;
425 }
426
427 if (__glxHashInsert(pdp->dri2Hash, xDrawable, pdraw)) {
428 (*psc->core->destroyDrawable) (pdraw->driDrawable);
429 DRI2DestroyDrawable(psc->base.dpy, xDrawable);
430 free(pdraw);
431 return None;
432 }
433
434 /*
435 * Make sure server has the same swap interval we do for the new
436 * drawable.
437 */
438 if (psc->vtable.setSwapInterval)
439 psc->vtable.setSwapInterval(&pdraw->base, pdraw->swap_interval);
440
441 return &pdraw->base;
442 }
443
444 static int
445 dri2DrawableGetMSC(struct glx_screen *psc, __GLXDRIdrawable *pdraw,
446 int64_t *ust, int64_t *msc, int64_t *sbc)
447 {
448 xcb_connection_t *c = XGetXCBConnection(pdraw->psc->dpy);
449 xcb_dri2_get_msc_cookie_t get_msc_cookie;
450 xcb_dri2_get_msc_reply_t *get_msc_reply;
451
452 get_msc_cookie = xcb_dri2_get_msc_unchecked(c, pdraw->xDrawable);
453 get_msc_reply = xcb_dri2_get_msc_reply(c, get_msc_cookie, NULL);
454
455 if (!get_msc_reply)
456 return 0;
457
458 *ust = merge_counter(get_msc_reply->ust_hi, get_msc_reply->ust_lo);
459 *msc = merge_counter(get_msc_reply->msc_hi, get_msc_reply->msc_lo);
460 *sbc = merge_counter(get_msc_reply->sbc_hi, get_msc_reply->sbc_lo);
461 free(get_msc_reply);
462
463 return 1;
464 }
465
466 static int
467 dri2WaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor,
468 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
469 {
470 xcb_connection_t *c = XGetXCBConnection(pdraw->psc->dpy);
471 xcb_dri2_wait_msc_cookie_t wait_msc_cookie;
472 xcb_dri2_wait_msc_reply_t *wait_msc_reply;
473 uint32_t target_msc_hi, target_msc_lo;
474 uint32_t divisor_hi, divisor_lo;
475 uint32_t remainder_hi, remainder_lo;
476
477 split_counter(target_msc, &target_msc_hi, &target_msc_lo);
478 split_counter(divisor, &divisor_hi, &divisor_lo);
479 split_counter(remainder, &remainder_hi, &remainder_lo);
480
481 wait_msc_cookie = xcb_dri2_wait_msc_unchecked(c, pdraw->xDrawable,
482 target_msc_hi, target_msc_lo,
483 divisor_hi, divisor_lo,
484 remainder_hi, remainder_lo);
485 wait_msc_reply = xcb_dri2_wait_msc_reply(c, wait_msc_cookie, NULL);
486
487 if (!wait_msc_reply)
488 return 0;
489
490 *ust = merge_counter(wait_msc_reply->ust_hi, wait_msc_reply->ust_lo);
491 *msc = merge_counter(wait_msc_reply->msc_hi, wait_msc_reply->msc_lo);
492 *sbc = merge_counter(wait_msc_reply->sbc_hi, wait_msc_reply->sbc_lo);
493 free(wait_msc_reply);
494
495 return 1;
496 }
497
498 static int
499 dri2WaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
500 int64_t *msc, int64_t *sbc)
501 {
502 xcb_connection_t *c = XGetXCBConnection(pdraw->psc->dpy);
503 xcb_dri2_wait_sbc_cookie_t wait_sbc_cookie;
504 xcb_dri2_wait_sbc_reply_t *wait_sbc_reply;
505 uint32_t target_sbc_hi, target_sbc_lo;
506
507 split_counter(target_sbc, &target_sbc_hi, &target_sbc_lo);
508
509 wait_sbc_cookie = xcb_dri2_wait_sbc_unchecked(c, pdraw->xDrawable,
510 target_sbc_hi, target_sbc_lo);
511 wait_sbc_reply = xcb_dri2_wait_sbc_reply(c, wait_sbc_cookie, NULL);
512
513 if (!wait_sbc_reply)
514 return 0;
515
516 *ust = merge_counter(wait_sbc_reply->ust_hi, wait_sbc_reply->ust_lo);
517 *msc = merge_counter(wait_sbc_reply->msc_hi, wait_sbc_reply->msc_lo);
518 *sbc = merge_counter(wait_sbc_reply->sbc_hi, wait_sbc_reply->sbc_lo);
519 free(wait_sbc_reply);
520
521 return 1;
522 }
523
524 static __DRIcontext *
525 dri2GetCurrentContext()
526 {
527 struct glx_context *gc = __glXGetCurrentContext();
528 struct dri2_context *dri2Ctx = (struct dri2_context *)gc;
529
530 return (gc != &dummyContext) ? dri2Ctx->driContext : NULL;
531 }
532
533 /**
534 * dri2Throttle - Request driver throttling
535 *
536 * This function uses the DRI2 throttle extension to give the
537 * driver the opportunity to throttle on flush front, copysubbuffer
538 * and swapbuffers.
539 */
540 static void
541 dri2Throttle(struct dri2_screen *psc,
542 struct dri2_drawable *draw,
543 enum __DRI2throttleReason reason)
544 {
545 if (psc->throttle) {
546 __DRIcontext *ctx = dri2GetCurrentContext();
547
548 psc->throttle->throttle(ctx, draw->driDrawable, reason);
549 }
550 }
551
552 /**
553 * Asks the driver to flush any queued work necessary for serializing with the
554 * X command stream, and optionally the slightly more strict requirement of
555 * glFlush() equivalence (which would require flushing even if nothing had
556 * been drawn to a window system framebuffer, for example).
557 */
558 static void
559 dri2Flush(struct dri2_screen *psc,
560 __DRIcontext *ctx,
561 struct dri2_drawable *draw,
562 unsigned flags,
563 enum __DRI2throttleReason throttle_reason)
564 {
565 if (ctx && psc->f && psc->f->base.version >= 4) {
566 psc->f->flush_with_flags(ctx, draw->driDrawable, flags, throttle_reason);
567 } else {
568 if (flags & __DRI2_FLUSH_CONTEXT)
569 glFlush();
570
571 if (psc->f)
572 psc->f->flush(draw->driDrawable);
573
574 dri2Throttle(psc, draw, throttle_reason);
575 }
576 }
577
578 static void
579 __dri2CopySubBuffer(__GLXDRIdrawable *pdraw, int x, int y,
580 int width, int height,
581 enum __DRI2throttleReason reason, Bool flush)
582 {
583 struct dri2_drawable *priv = (struct dri2_drawable *) pdraw;
584 struct dri2_screen *psc = (struct dri2_screen *) pdraw->psc;
585 XRectangle xrect;
586 XserverRegion region;
587 __DRIcontext *ctx = dri2GetCurrentContext();
588 unsigned flags;
589
590 /* Check we have the right attachments */
591 if (!priv->have_back)
592 return;
593
594 xrect.x = x;
595 xrect.y = priv->height - y - height;
596 xrect.width = width;
597 xrect.height = height;
598
599 flags = __DRI2_FLUSH_DRAWABLE;
600 if (flush)
601 flags |= __DRI2_FLUSH_CONTEXT;
602 dri2Flush(psc, ctx, priv, flags, __DRI2_THROTTLE_SWAPBUFFER);
603
604 region = XFixesCreateRegion(psc->base.dpy, &xrect, 1);
605 DRI2CopyRegion(psc->base.dpy, pdraw->xDrawable, region,
606 DRI2BufferFrontLeft, DRI2BufferBackLeft);
607
608 /* Refresh the fake front (if present) after we just damaged the real
609 * front.
610 */
611 if (priv->have_fake_front)
612 DRI2CopyRegion(psc->base.dpy, pdraw->xDrawable, region,
613 DRI2BufferFakeFrontLeft, DRI2BufferFrontLeft);
614
615 XFixesDestroyRegion(psc->base.dpy, region);
616 }
617
618 static void
619 dri2CopySubBuffer(__GLXDRIdrawable *pdraw, int x, int y,
620 int width, int height, Bool flush)
621 {
622 __dri2CopySubBuffer(pdraw, x, y, width, height,
623 __DRI2_THROTTLE_COPYSUBBUFFER, flush);
624 }
625
626
627 static void
628 dri2_copy_drawable(struct dri2_drawable *priv, int dest, int src)
629 {
630 XRectangle xrect;
631 XserverRegion region;
632 struct dri2_screen *psc = (struct dri2_screen *) priv->base.psc;
633
634 xrect.x = 0;
635 xrect.y = 0;
636 xrect.width = priv->width;
637 xrect.height = priv->height;
638
639 if (psc->f)
640 (*psc->f->flush) (priv->driDrawable);
641
642 region = XFixesCreateRegion(psc->base.dpy, &xrect, 1);
643 DRI2CopyRegion(psc->base.dpy, priv->base.xDrawable, region, dest, src);
644 XFixesDestroyRegion(psc->base.dpy, region);
645
646 }
647
648 static void
649 dri2_wait_x(struct glx_context *gc)
650 {
651 struct dri2_drawable *priv = (struct dri2_drawable *)
652 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
653
654 if (priv == NULL || !priv->have_fake_front)
655 return;
656
657 dri2_copy_drawable(priv, DRI2BufferFakeFrontLeft, DRI2BufferFrontLeft);
658 }
659
660 static void
661 dri2_wait_gl(struct glx_context *gc)
662 {
663 struct dri2_drawable *priv = (struct dri2_drawable *)
664 GetGLXDRIDrawable(gc->currentDpy, gc->currentDrawable);
665
666 if (priv == NULL || !priv->have_fake_front)
667 return;
668
669 dri2_copy_drawable(priv, DRI2BufferFrontLeft, DRI2BufferFakeFrontLeft);
670 }
671
672 /**
673 * Called by the driver when it needs to update the real front buffer with the
674 * contents of its fake front buffer.
675 */
676 static void
677 dri2FlushFrontBuffer(__DRIdrawable *driDrawable, void *loaderPrivate)
678 {
679 struct glx_display *priv;
680 struct dri2_display *pdp;
681 struct glx_context *gc;
682 struct dri2_drawable *pdraw = loaderPrivate;
683 struct dri2_screen *psc;
684
685 if (!pdraw)
686 return;
687
688 if (!pdraw->base.psc)
689 return;
690
691 psc = (struct dri2_screen *) pdraw->base.psc;
692
693 priv = __glXInitialize(psc->base.dpy);
694
695 if (priv == NULL)
696 return;
697
698 pdp = (struct dri2_display *) priv->dri2Display;
699 gc = __glXGetCurrentContext();
700
701 dri2Throttle(psc, pdraw, __DRI2_THROTTLE_FLUSHFRONT);
702
703 /* Old servers don't send invalidate events */
704 if (!pdp->invalidateAvailable)
705 dri2InvalidateBuffers(priv->dpy, pdraw->base.xDrawable);
706
707 dri2_wait_gl(gc);
708 }
709
710
711 static void
712 dri2DestroyScreen(struct glx_screen *base)
713 {
714 struct dri2_screen *psc = (struct dri2_screen *) base;
715
716 /* Free the direct rendering per screen data */
717 (*psc->core->destroyScreen) (psc->driScreen);
718 driDestroyConfigs(psc->driver_configs);
719 close(psc->fd);
720 free(psc);
721 }
722
723 /**
724 * Process list of buffer received from the server
725 *
726 * Processes the list of buffers received in a reply from the server to either
727 * \c DRI2GetBuffers or \c DRI2GetBuffersWithFormat.
728 */
729 static void
730 process_buffers(struct dri2_drawable * pdraw, DRI2Buffer * buffers,
731 unsigned count)
732 {
733 int i;
734
735 pdraw->bufferCount = count;
736 pdraw->have_fake_front = 0;
737 pdraw->have_back = 0;
738
739 /* This assumes the DRI2 buffer attachment tokens matches the
740 * __DRIbuffer tokens. */
741 for (i = 0; i < count; i++) {
742 pdraw->buffers[i].attachment = buffers[i].attachment;
743 pdraw->buffers[i].name = buffers[i].name;
744 pdraw->buffers[i].pitch = buffers[i].pitch;
745 pdraw->buffers[i].cpp = buffers[i].cpp;
746 pdraw->buffers[i].flags = buffers[i].flags;
747 if (pdraw->buffers[i].attachment == __DRI_BUFFER_FAKE_FRONT_LEFT)
748 pdraw->have_fake_front = 1;
749 if (pdraw->buffers[i].attachment == __DRI_BUFFER_BACK_LEFT)
750 pdraw->have_back = 1;
751 }
752
753 }
754
755 unsigned dri2GetSwapEventType(Display* dpy, XID drawable)
756 {
757 struct glx_display *glx_dpy = __glXInitialize(dpy);
758 __GLXDRIdrawable *pdraw;
759 pdraw = dri2GetGlxDrawableFromXDrawableId(dpy, drawable);
760 if (!pdraw || !(pdraw->eventMask & GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK))
761 return 0;
762 return glx_dpy->codes->first_event + GLX_BufferSwapComplete;
763 }
764
765 static void show_fps(struct dri2_drawable *draw)
766 {
767 const int interval =
768 ((struct dri2_screen *) draw->base.psc)->show_fps_interval;
769 struct timeval tv;
770 uint64_t current_time;
771
772 gettimeofday(&tv, 0);
773 current_time = (uint64_t)tv.tv_sec*1000000 + (uint64_t)tv.tv_usec;
774
775 draw->frames++;
776
777 if (draw->previous_time + interval * 1000000 <= current_time) {
778 if (draw->previous_time) {
779 fprintf(stderr, "libGL: FPS = %.1f\n",
780 ((uint64_t)draw->frames * 1000000) /
781 (double)(current_time - draw->previous_time));
782 }
783 draw->frames = 0;
784 draw->previous_time = current_time;
785 }
786 }
787
788 static int64_t
789 dri2XcbSwapBuffers(Display *dpy,
790 __GLXDRIdrawable *pdraw,
791 int64_t target_msc,
792 int64_t divisor,
793 int64_t remainder)
794 {
795 xcb_dri2_swap_buffers_cookie_t swap_buffers_cookie;
796 xcb_dri2_swap_buffers_reply_t *swap_buffers_reply;
797 uint32_t target_msc_hi, target_msc_lo;
798 uint32_t divisor_hi, divisor_lo;
799 uint32_t remainder_hi, remainder_lo;
800 int64_t ret = 0;
801 xcb_connection_t *c = XGetXCBConnection(dpy);
802
803 split_counter(target_msc, &target_msc_hi, &target_msc_lo);
804 split_counter(divisor, &divisor_hi, &divisor_lo);
805 split_counter(remainder, &remainder_hi, &remainder_lo);
806
807 swap_buffers_cookie =
808 xcb_dri2_swap_buffers_unchecked(c, pdraw->xDrawable,
809 target_msc_hi, target_msc_lo,
810 divisor_hi, divisor_lo,
811 remainder_hi, remainder_lo);
812
813 /* Immediately wait on the swapbuffers reply. If we didn't, we'd have
814 * to do so some time before reusing a (non-pageflipped) backbuffer.
815 * Otherwise, the new rendering could get ahead of the X Server's
816 * dispatch of the swapbuffer and you'd display garbage.
817 *
818 * We use XSync() first to reap the invalidate events through the event
819 * filter, to ensure that the next drawing doesn't use an invalidated
820 * buffer.
821 */
822 XSync(dpy, False);
823
824 swap_buffers_reply =
825 xcb_dri2_swap_buffers_reply(c, swap_buffers_cookie, NULL);
826 if (swap_buffers_reply) {
827 ret = merge_counter(swap_buffers_reply->swap_hi,
828 swap_buffers_reply->swap_lo);
829 free(swap_buffers_reply);
830 }
831 return ret;
832 }
833
834 static int64_t
835 dri2SwapBuffers(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor,
836 int64_t remainder, Bool flush)
837 {
838 struct dri2_drawable *priv = (struct dri2_drawable *) pdraw;
839 struct glx_display *dpyPriv = __glXInitialize(priv->base.psc->dpy);
840 struct dri2_screen *psc = (struct dri2_screen *) priv->base.psc;
841 struct dri2_display *pdp =
842 (struct dri2_display *)dpyPriv->dri2Display;
843 int64_t ret = 0;
844
845 /* Check we have the right attachments */
846 if (!priv->have_back)
847 return ret;
848
849 /* Old servers can't handle swapbuffers */
850 if (!pdp->swapAvailable) {
851 __dri2CopySubBuffer(pdraw, 0, 0, priv->width, priv->height,
852 __DRI2_THROTTLE_SWAPBUFFER, flush);
853 } else {
854 __DRIcontext *ctx = dri2GetCurrentContext();
855 unsigned flags = __DRI2_FLUSH_DRAWABLE;
856 if (flush)
857 flags |= __DRI2_FLUSH_CONTEXT;
858 dri2Flush(psc, ctx, priv, flags, __DRI2_THROTTLE_SWAPBUFFER);
859
860 ret = dri2XcbSwapBuffers(pdraw->psc->dpy, pdraw,
861 target_msc, divisor, remainder);
862 }
863
864 if (psc->show_fps_interval) {
865 show_fps(priv);
866 }
867
868 /* Old servers don't send invalidate events */
869 if (!pdp->invalidateAvailable)
870 dri2InvalidateBuffers(dpyPriv->dpy, pdraw->xDrawable);
871
872 return ret;
873 }
874
875 static __DRIbuffer *
876 dri2GetBuffers(__DRIdrawable * driDrawable,
877 int *width, int *height,
878 unsigned int *attachments, int count,
879 int *out_count, void *loaderPrivate)
880 {
881 struct dri2_drawable *pdraw = loaderPrivate;
882 DRI2Buffer *buffers;
883
884 buffers = DRI2GetBuffers(pdraw->base.psc->dpy, pdraw->base.xDrawable,
885 width, height, attachments, count, out_count);
886 if (buffers == NULL)
887 return NULL;
888
889 pdraw->width = *width;
890 pdraw->height = *height;
891 process_buffers(pdraw, buffers, *out_count);
892
893 free(buffers);
894
895 return pdraw->buffers;
896 }
897
898 static __DRIbuffer *
899 dri2GetBuffersWithFormat(__DRIdrawable * driDrawable,
900 int *width, int *height,
901 unsigned int *attachments, int count,
902 int *out_count, void *loaderPrivate)
903 {
904 struct dri2_drawable *pdraw = loaderPrivate;
905 DRI2Buffer *buffers;
906
907 buffers = DRI2GetBuffersWithFormat(pdraw->base.psc->dpy,
908 pdraw->base.xDrawable,
909 width, height, attachments,
910 count, out_count);
911 if (buffers == NULL)
912 return NULL;
913
914 pdraw->width = *width;
915 pdraw->height = *height;
916 process_buffers(pdraw, buffers, *out_count);
917
918 free(buffers);
919
920 return pdraw->buffers;
921 }
922
923 static int
924 dri2SetSwapInterval(__GLXDRIdrawable *pdraw, int interval)
925 {
926 xcb_connection_t *c = XGetXCBConnection(pdraw->psc->dpy);
927 struct dri2_drawable *priv = (struct dri2_drawable *) pdraw;
928 GLint vblank_mode = DRI_CONF_VBLANK_DEF_INTERVAL_1;
929 struct dri2_screen *psc = (struct dri2_screen *) priv->base.psc;
930
931 if (psc->config)
932 psc->config->configQueryi(psc->driScreen,
933 "vblank_mode", &vblank_mode);
934
935 switch (vblank_mode) {
936 case DRI_CONF_VBLANK_NEVER:
937 if (interval != 0)
938 return GLX_BAD_VALUE;
939 break;
940 case DRI_CONF_VBLANK_ALWAYS_SYNC:
941 if (interval <= 0)
942 return GLX_BAD_VALUE;
943 break;
944 default:
945 break;
946 }
947
948 xcb_dri2_swap_interval(c, priv->base.xDrawable, interval);
949 priv->swap_interval = interval;
950
951 return 0;
952 }
953
954 static int
955 dri2GetSwapInterval(__GLXDRIdrawable *pdraw)
956 {
957 struct dri2_drawable *priv = (struct dri2_drawable *) pdraw;
958
959 return priv->swap_interval;
960 }
961
962 static void
963 driSetBackgroundContext(void *loaderPrivate)
964 {
965 struct dri2_context *pcp = (struct dri2_context *) loaderPrivate;
966 __glXSetCurrentContext(&pcp->base);
967 }
968
969 static GLboolean
970 driIsThreadSafe(void *loaderPrivate)
971 {
972 struct dri2_context *pcp = (struct dri2_context *) loaderPrivate;
973 /* Check Xlib is running in thread safe mode
974 *
975 * 'lock_fns' is the XLockDisplay function pointer of the X11 display 'dpy'.
976 * It wll be NULL if XInitThreads wasn't called.
977 */
978 return pcp->base.psc->dpy->lock_fns != NULL;
979 }
980
981 static const __DRIdri2LoaderExtension dri2LoaderExtension = {
982 .base = { __DRI_DRI2_LOADER, 3 },
983
984 .getBuffers = dri2GetBuffers,
985 .flushFrontBuffer = dri2FlushFrontBuffer,
986 .getBuffersWithFormat = dri2GetBuffersWithFormat,
987 };
988
989 static const __DRIdri2LoaderExtension dri2LoaderExtension_old = {
990 .base = { __DRI_DRI2_LOADER, 3 },
991
992 .getBuffers = dri2GetBuffers,
993 .flushFrontBuffer = dri2FlushFrontBuffer,
994 .getBuffersWithFormat = NULL,
995 };
996
997 static const __DRIuseInvalidateExtension dri2UseInvalidate = {
998 .base = { __DRI_USE_INVALIDATE, 1 }
999 };
1000
1001 static const __DRIbackgroundCallableExtension driBackgroundCallable = {
1002 .base = { __DRI_BACKGROUND_CALLABLE, 2 },
1003
1004 .setBackgroundContext = driSetBackgroundContext,
1005 .isThreadSafe = driIsThreadSafe,
1006 };
1007
1008 _X_HIDDEN void
1009 dri2InvalidateBuffers(Display *dpy, XID drawable)
1010 {
1011 __GLXDRIdrawable *pdraw =
1012 dri2GetGlxDrawableFromXDrawableId(dpy, drawable);
1013 struct dri2_screen *psc;
1014 struct dri2_drawable *pdp = (struct dri2_drawable *) pdraw;
1015
1016 if (!pdraw)
1017 return;
1018
1019 psc = (struct dri2_screen *) pdraw->psc;
1020
1021 if (psc->f && psc->f->base.version >= 3 && psc->f->invalidate)
1022 psc->f->invalidate(pdp->driDrawable);
1023 }
1024
1025 static void
1026 dri2_bind_tex_image(Display * dpy,
1027 GLXDrawable drawable,
1028 int buffer, const int *attrib_list)
1029 {
1030 struct glx_context *gc = __glXGetCurrentContext();
1031 struct dri2_context *pcp = (struct dri2_context *) gc;
1032 __GLXDRIdrawable *base = GetGLXDRIDrawable(dpy, drawable);
1033 struct glx_display *dpyPriv = __glXInitialize(dpy);
1034 struct dri2_drawable *pdraw = (struct dri2_drawable *) base;
1035 struct dri2_display *pdp;
1036 struct dri2_screen *psc;
1037
1038 if (dpyPriv == NULL)
1039 return;
1040
1041 pdp = (struct dri2_display *) dpyPriv->dri2Display;
1042
1043 if (pdraw != NULL) {
1044 psc = (struct dri2_screen *) base->psc;
1045
1046 if (!pdp->invalidateAvailable && psc->f &&
1047 psc->f->base.version >= 3 && psc->f->invalidate)
1048 psc->f->invalidate(pdraw->driDrawable);
1049
1050 if (psc->texBuffer->base.version >= 2 &&
1051 psc->texBuffer->setTexBuffer2 != NULL) {
1052 (*psc->texBuffer->setTexBuffer2) (pcp->driContext,
1053 pdraw->base.textureTarget,
1054 pdraw->base.textureFormat,
1055 pdraw->driDrawable);
1056 }
1057 else {
1058 (*psc->texBuffer->setTexBuffer) (pcp->driContext,
1059 pdraw->base.textureTarget,
1060 pdraw->driDrawable);
1061 }
1062 }
1063 }
1064
1065 static void
1066 dri2_release_tex_image(Display * dpy, GLXDrawable drawable, int buffer)
1067 {
1068 struct glx_context *gc = __glXGetCurrentContext();
1069 struct dri2_context *pcp = (struct dri2_context *) gc;
1070 __GLXDRIdrawable *base = GetGLXDRIDrawable(dpy, drawable);
1071 struct glx_display *dpyPriv = __glXInitialize(dpy);
1072 struct dri2_drawable *pdraw = (struct dri2_drawable *) base;
1073 struct dri2_screen *psc;
1074
1075 if (dpyPriv != NULL && pdraw != NULL) {
1076 psc = (struct dri2_screen *) base->psc;
1077
1078 if (psc->texBuffer->base.version >= 3 &&
1079 psc->texBuffer->releaseTexBuffer != NULL) {
1080 (*psc->texBuffer->releaseTexBuffer) (pcp->driContext,
1081 pdraw->base.textureTarget,
1082 pdraw->driDrawable);
1083 }
1084 }
1085 }
1086
1087 static const struct glx_context_vtable dri2_context_vtable = {
1088 .destroy = dri2_destroy_context,
1089 .bind = dri2_bind_context,
1090 .unbind = dri2_unbind_context,
1091 .wait_gl = dri2_wait_gl,
1092 .wait_x = dri2_wait_x,
1093 .use_x_font = DRI_glXUseXFont,
1094 .bind_tex_image = dri2_bind_tex_image,
1095 .release_tex_image = dri2_release_tex_image,
1096 .get_proc_address = NULL,
1097 .interop_query_device_info = dri2_interop_query_device_info,
1098 .interop_export_object = dri2_interop_export_object
1099 };
1100
1101 static void
1102 dri2BindExtensions(struct dri2_screen *psc, struct glx_display * priv,
1103 const char *driverName)
1104 {
1105 const struct dri2_display *const pdp = (struct dri2_display *)
1106 priv->dri2Display;
1107 const __DRIextension **extensions;
1108 int i;
1109
1110 extensions = psc->core->getExtensions(psc->driScreen);
1111
1112 __glXEnableDirectExtension(&psc->base, "GLX_SGI_swap_control");
1113 __glXEnableDirectExtension(&psc->base, "GLX_MESA_swap_control");
1114 __glXEnableDirectExtension(&psc->base, "GLX_SGI_make_current_read");
1115
1116 /*
1117 * GLX_INTEL_swap_event is broken on the server side, where it's
1118 * currently unconditionally enabled. This completely breaks
1119 * systems running on drivers which don't support that extension.
1120 * There's no way to test for its presence on this side, so instead
1121 * of disabling it unconditionally, just disable it for drivers
1122 * which are known to not support it, or for DDX drivers supporting
1123 * only an older (pre-ScheduleSwap) version of DRI2.
1124 *
1125 * This is a hack which is required until:
1126 * http://lists.x.org/archives/xorg-devel/2013-February/035449.html
1127 * is merged and updated xserver makes it's way into distros:
1128 */
1129 if (pdp->swapAvailable && strcmp(driverName, "vmwgfx") != 0) {
1130 __glXEnableDirectExtension(&psc->base, "GLX_INTEL_swap_event");
1131 }
1132
1133 if (psc->dri2->base.version >= 3) {
1134 const unsigned mask = psc->dri2->getAPIMask(psc->driScreen);
1135
1136 __glXEnableDirectExtension(&psc->base, "GLX_ARB_create_context");
1137 __glXEnableDirectExtension(&psc->base, "GLX_ARB_create_context_profile");
1138 __glXEnableDirectExtension(&psc->base, "GLX_EXT_no_config_context");
1139
1140 if ((mask & ((1 << __DRI_API_GLES) |
1141 (1 << __DRI_API_GLES2) |
1142 (1 << __DRI_API_GLES3))) != 0) {
1143 __glXEnableDirectExtension(&psc->base,
1144 "GLX_EXT_create_context_es_profile");
1145 __glXEnableDirectExtension(&psc->base,
1146 "GLX_EXT_create_context_es2_profile");
1147 }
1148 }
1149
1150 for (i = 0; extensions[i]; i++) {
1151 if ((strcmp(extensions[i]->name, __DRI_TEX_BUFFER) == 0)) {
1152 psc->texBuffer = (__DRItexBufferExtension *) extensions[i];
1153 __glXEnableDirectExtension(&psc->base, "GLX_EXT_texture_from_pixmap");
1154 }
1155
1156 if ((strcmp(extensions[i]->name, __DRI2_FLUSH) == 0)) {
1157 psc->f = (__DRI2flushExtension *) extensions[i];
1158 /* internal driver extension, no GL extension exposed */
1159 }
1160
1161 if ((strcmp(extensions[i]->name, __DRI2_CONFIG_QUERY) == 0))
1162 psc->config = (__DRI2configQueryExtension *) extensions[i];
1163
1164 if (((strcmp(extensions[i]->name, __DRI2_THROTTLE) == 0)))
1165 psc->throttle = (__DRI2throttleExtension *) extensions[i];
1166
1167 /* DRI2 version 3 is also required because
1168 * GLX_ARB_create_context_robustness requires GLX_ARB_create_context.
1169 */
1170 if (psc->dri2->base.version >= 3
1171 && strcmp(extensions[i]->name, __DRI2_ROBUSTNESS) == 0)
1172 __glXEnableDirectExtension(&psc->base,
1173 "GLX_ARB_create_context_robustness");
1174
1175 /* DRI2 version 3 is also required because
1176 * GLX_ARB_create_context_no_error requires GLX_ARB_create_context.
1177 */
1178 if (psc->dri2->base.version >= 3
1179 && strcmp(extensions[i]->name, __DRI2_NO_ERROR) == 0)
1180 __glXEnableDirectExtension(&psc->base,
1181 "GLX_ARB_create_context_no_error");
1182
1183 /* DRI2 version 3 is also required because GLX_MESA_query_renderer
1184 * requires GLX_ARB_create_context_profile.
1185 */
1186 if (psc->dri2->base.version >= 3
1187 && strcmp(extensions[i]->name, __DRI2_RENDERER_QUERY) == 0) {
1188 psc->rendererQuery = (__DRI2rendererQueryExtension *) extensions[i];
1189 __glXEnableDirectExtension(&psc->base, "GLX_MESA_query_renderer");
1190 }
1191
1192 if (strcmp(extensions[i]->name, __DRI2_INTEROP) == 0)
1193 psc->interop = (__DRI2interopExtension*)extensions[i];
1194
1195 /* DRI2 version 3 is also required because
1196 * GLX_ARB_control_flush_control requires GLX_ARB_create_context.
1197 */
1198 if (psc->dri2->base.version >= 3
1199 && strcmp(extensions[i]->name, __DRI2_FLUSH_CONTROL) == 0)
1200 __glXEnableDirectExtension(&psc->base,
1201 "GLX_ARB_context_flush_control");
1202 }
1203 }
1204
1205 static const struct glx_screen_vtable dri2_screen_vtable = {
1206 .create_context = dri2_create_context,
1207 .create_context_attribs = dri2_create_context_attribs,
1208 .query_renderer_integer = dri2_query_renderer_integer,
1209 .query_renderer_string = dri2_query_renderer_string,
1210 };
1211
1212 static struct glx_screen *
1213 dri2CreateScreen(int screen, struct glx_display * priv)
1214 {
1215 const __DRIconfig **driver_configs;
1216 const __DRIextension **extensions;
1217 const struct dri2_display *const pdp = (struct dri2_display *)
1218 priv->dri2Display;
1219 struct dri2_screen *psc;
1220 __GLXDRIscreen *psp;
1221 struct glx_config *configs = NULL, *visuals = NULL;
1222 char *driverName = NULL, *loader_driverName, *deviceName, *tmp;
1223 drm_magic_t magic;
1224 int i;
1225 unsigned char disable;
1226
1227 psc = calloc(1, sizeof *psc);
1228 if (psc == NULL)
1229 return NULL;
1230
1231 psc->fd = -1;
1232
1233 if (!glx_screen_init(&psc->base, screen, priv)) {
1234 free(psc);
1235 return NULL;
1236 }
1237
1238 if (!DRI2Connect(priv->dpy, RootWindow(priv->dpy, screen),
1239 &driverName, &deviceName)) {
1240 glx_screen_cleanup(&psc->base);
1241 free(psc);
1242 InfoMessageF("screen %d does not appear to be DRI2 capable\n", screen);
1243 return NULL;
1244 }
1245
1246 psc->fd = loader_open_device(deviceName);
1247 if (psc->fd < 0) {
1248 ErrorMessageF("failed to open drm device: %s\n", strerror(errno));
1249 goto handle_error;
1250 }
1251
1252 if (drmGetMagic(psc->fd, &magic)) {
1253 ErrorMessageF("failed to get magic\n");
1254 goto handle_error;
1255 }
1256
1257 if (!DRI2Authenticate(priv->dpy, RootWindow(priv->dpy, screen), magic)) {
1258 ErrorMessageF("failed to authenticate magic %d\n", magic);
1259 goto handle_error;
1260 }
1261
1262 /* If Mesa knows about the appropriate driver for this fd, then trust it.
1263 * Otherwise, default to the server's value.
1264 */
1265 loader_driverName = loader_get_driver_for_fd(psc->fd);
1266 if (loader_driverName) {
1267 free(driverName);
1268 driverName = loader_driverName;
1269 }
1270
1271 extensions = driOpenDriver(driverName, &psc->driver);
1272 if (extensions == NULL)
1273 goto handle_error;
1274
1275 for (i = 0; extensions[i]; i++) {
1276 if (strcmp(extensions[i]->name, __DRI_CORE) == 0)
1277 psc->core = (__DRIcoreExtension *) extensions[i];
1278 if (strcmp(extensions[i]->name, __DRI_DRI2) == 0)
1279 psc->dri2 = (__DRIdri2Extension *) extensions[i];
1280 }
1281
1282 if (psc->core == NULL || psc->dri2 == NULL) {
1283 ErrorMessageF("core dri or dri2 extension not found\n");
1284 goto handle_error;
1285 }
1286
1287 if (psc->dri2->base.version >= 4) {
1288 psc->driScreen =
1289 psc->dri2->createNewScreen2(screen, psc->fd,
1290 (const __DRIextension **)
1291 &pdp->loader_extensions[0],
1292 extensions,
1293 &driver_configs, psc);
1294 } else {
1295 psc->driScreen =
1296 psc->dri2->createNewScreen(screen, psc->fd,
1297 (const __DRIextension **)
1298 &pdp->loader_extensions[0],
1299 &driver_configs, psc);
1300 }
1301
1302 if (psc->driScreen == NULL) {
1303 ErrorMessageF("failed to create dri screen\n");
1304 goto handle_error;
1305 }
1306
1307 dri2BindExtensions(psc, priv, driverName);
1308
1309 configs = driConvertConfigs(psc->core, psc->base.configs, driver_configs);
1310 visuals = driConvertConfigs(psc->core, psc->base.visuals, driver_configs);
1311
1312 if (!configs || !visuals) {
1313 ErrorMessageF("No matching fbConfigs or visuals found\n");
1314 goto handle_error;
1315 }
1316
1317 glx_config_destroy_list(psc->base.configs);
1318 psc->base.configs = configs;
1319 glx_config_destroy_list(psc->base.visuals);
1320 psc->base.visuals = visuals;
1321
1322 psc->driver_configs = driver_configs;
1323
1324 psc->base.vtable = &dri2_screen_vtable;
1325 psp = &psc->vtable;
1326 psc->base.driScreen = psp;
1327 psp->destroyScreen = dri2DestroyScreen;
1328 psp->createDrawable = dri2CreateDrawable;
1329 psp->swapBuffers = dri2SwapBuffers;
1330 psp->getDrawableMSC = NULL;
1331 psp->waitForMSC = NULL;
1332 psp->waitForSBC = NULL;
1333 psp->setSwapInterval = NULL;
1334 psp->getSwapInterval = NULL;
1335 psp->getBufferAge = NULL;
1336
1337 if (pdp->driMinor >= 2) {
1338 psp->getDrawableMSC = dri2DrawableGetMSC;
1339 psp->waitForMSC = dri2WaitForMSC;
1340 psp->waitForSBC = dri2WaitForSBC;
1341 psp->setSwapInterval = dri2SetSwapInterval;
1342 psp->getSwapInterval = dri2GetSwapInterval;
1343 if (psc->config->configQueryb(psc->driScreen,
1344 "glx_disable_oml_sync_control",
1345 &disable) || !disable)
1346 __glXEnableDirectExtension(&psc->base, "GLX_OML_sync_control");
1347 }
1348
1349 if (psc->config->configQueryb(psc->driScreen,
1350 "glx_disable_sgi_video_sync",
1351 &disable) || !disable)
1352 __glXEnableDirectExtension(&psc->base, "GLX_SGI_video_sync");
1353
1354 /* DRI2 supports SubBuffer through DRI2CopyRegion, so it's always
1355 * available.*/
1356 psp->copySubBuffer = dri2CopySubBuffer;
1357 __glXEnableDirectExtension(&psc->base, "GLX_MESA_copy_sub_buffer");
1358
1359 free(driverName);
1360 free(deviceName);
1361
1362 tmp = getenv("LIBGL_SHOW_FPS");
1363 psc->show_fps_interval = (tmp) ? atoi(tmp) : 0;
1364 if (psc->show_fps_interval < 0)
1365 psc->show_fps_interval = 0;
1366
1367 InfoMessageF("Using DRI2 for screen %d\n", screen);
1368
1369 return &psc->base;
1370
1371 handle_error:
1372 CriticalErrorMessageF("failed to load driver: %s\n", driverName);
1373
1374 if (configs)
1375 glx_config_destroy_list(configs);
1376 if (visuals)
1377 glx_config_destroy_list(visuals);
1378 if (psc->driScreen)
1379 psc->core->destroyScreen(psc->driScreen);
1380 psc->driScreen = NULL;
1381 if (psc->fd >= 0)
1382 close(psc->fd);
1383 if (psc->driver)
1384 dlclose(psc->driver);
1385
1386 free(driverName);
1387 free(deviceName);
1388 glx_screen_cleanup(&psc->base);
1389 free(psc);
1390
1391 return NULL;
1392 }
1393
1394 /* Called from __glXFreeDisplayPrivate.
1395 */
1396 static void
1397 dri2DestroyDisplay(__GLXDRIdisplay * dpy)
1398 {
1399 struct dri2_display *pdp = (struct dri2_display *) dpy;
1400
1401 __glxHashDestroy(pdp->dri2Hash);
1402 free(dpy);
1403 }
1404
1405 _X_HIDDEN __GLXDRIdrawable *
1406 dri2GetGlxDrawableFromXDrawableId(Display *dpy, XID id)
1407 {
1408 struct glx_display *d = __glXInitialize(dpy);
1409 struct dri2_display *pdp = (struct dri2_display *) d->dri2Display;
1410 __GLXDRIdrawable *pdraw;
1411
1412 if (__glxHashLookup(pdp->dri2Hash, id, (void *) &pdraw) == 0)
1413 return pdraw;
1414
1415 return NULL;
1416 }
1417
1418 /*
1419 * Allocate, initialize and return a __DRIdisplayPrivate object.
1420 * This is called from __glXInitialize() when we are given a new
1421 * display pointer.
1422 */
1423 _X_HIDDEN __GLXDRIdisplay *
1424 dri2CreateDisplay(Display * dpy)
1425 {
1426 struct dri2_display *pdp;
1427 int eventBase, errorBase, i;
1428
1429 if (!DRI2QueryExtension(dpy, &eventBase, &errorBase))
1430 return NULL;
1431
1432 pdp = malloc(sizeof *pdp);
1433 if (pdp == NULL)
1434 return NULL;
1435
1436 if (!DRI2QueryVersion(dpy, &pdp->driMajor, &pdp->driMinor)) {
1437 free(pdp);
1438 return NULL;
1439 }
1440
1441 pdp->driPatch = 0;
1442 pdp->swapAvailable = (pdp->driMinor >= 2);
1443 pdp->invalidateAvailable = (pdp->driMinor >= 3);
1444
1445 pdp->base.destroyDisplay = dri2DestroyDisplay;
1446 pdp->base.createScreen = dri2CreateScreen;
1447
1448 i = 0;
1449 if (pdp->driMinor < 1)
1450 pdp->loader_extensions[i++] = &dri2LoaderExtension_old.base;
1451 else
1452 pdp->loader_extensions[i++] = &dri2LoaderExtension.base;
1453
1454 pdp->loader_extensions[i++] = &dri2UseInvalidate.base;
1455
1456 pdp->loader_extensions[i++] = &driBackgroundCallable.base;
1457
1458 pdp->loader_extensions[i++] = NULL;
1459
1460 pdp->dri2Hash = __glxHashCreate();
1461 if (pdp->dri2Hash == NULL) {
1462 free(pdp);
1463 return NULL;
1464 }
1465
1466 return &pdp->base;
1467 }
1468
1469 #endif /* GLX_DIRECT_RENDERING */