gallium: add target-helpers/wrap_screen.c to C_SOURCES
[mesa/mesa-lb.git] / src / glx / dri_glx.c
blobe47db82b70f64f59c1a55e3a5fc61e765c6336b3
1 /**************************************************************************
3 Copyright 1998-1999 Precision Insight, Inc., Cedar Park, Texas.
4 All Rights Reserved.
6 Permission is hereby granted, free of charge, to any person obtaining a
7 copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sub license, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
14 The above copyright notice and this permission notice (including the
15 next paragraph) shall be included in all copies or substantial portions
16 of the Software.
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
22 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
29 * Authors:
30 * Kevin E. Martin <kevin@precisioninsight.com>
31 * Brian Paul <brian@precisioninsight.com>
35 #ifdef GLX_DIRECT_RENDERING
37 #include <X11/Xlib.h>
38 #include <X11/extensions/Xfixes.h>
39 #include <X11/extensions/Xdamage.h>
40 #include "glxclient.h"
41 #include "xf86dri.h"
42 #include "dri2.h"
43 #include "sarea.h"
44 #include <dlfcn.h>
45 #include <sys/types.h>
46 #include <sys/mman.h>
47 #include "xf86drm.h"
48 #include "dri_common.h"
50 typedef struct __GLXDRIdisplayPrivateRec __GLXDRIdisplayPrivate;
51 typedef struct __GLXDRIcontextPrivateRec __GLXDRIcontextPrivate;
53 struct __GLXDRIdisplayPrivateRec
55 __GLXDRIdisplay base;
58 ** XFree86-DRI version information
60 int driMajor;
61 int driMinor;
62 int driPatch;
65 struct __GLXDRIcontextPrivateRec
67 __GLXDRIcontext base;
68 __DRIcontext *driContext;
69 XID hwContextID;
70 __GLXscreenConfigs *psc;
74 * Given a display pointer and screen number, determine the name of
75 * the DRI driver for the screen. (I.e. "r128", "tdfx", etc).
76 * Return True for success, False for failure.
78 static Bool
79 driGetDriverName(Display * dpy, int scrNum, char **driverName)
81 int directCapable;
82 Bool b;
83 int event, error;
84 int driverMajor, driverMinor, driverPatch;
86 *driverName = NULL;
88 if (XF86DRIQueryExtension(dpy, &event, &error)) { /* DRI1 */
89 if (!XF86DRIQueryDirectRenderingCapable(dpy, scrNum, &directCapable)) {
90 ErrorMessageF("XF86DRIQueryDirectRenderingCapable failed\n");
91 return False;
93 if (!directCapable) {
94 ErrorMessageF("XF86DRIQueryDirectRenderingCapable returned false\n");
95 return False;
98 b = XF86DRIGetClientDriverName(dpy, scrNum, &driverMajor, &driverMinor,
99 &driverPatch, driverName);
100 if (!b) {
101 ErrorMessageF("Cannot determine driver name for screen %d\n",
102 scrNum);
103 return False;
106 InfoMessageF("XF86DRIGetClientDriverName: %d.%d.%d %s (screen %d)\n",
107 driverMajor, driverMinor, driverPatch, *driverName,
108 scrNum);
110 return True;
112 else if (DRI2QueryExtension(dpy, &event, &error)) { /* DRI2 */
113 char *dev;
114 Bool ret = DRI2Connect(dpy, RootWindow(dpy, scrNum), driverName, &dev);
116 if (ret)
117 Xfree(dev);
119 return ret;
122 return False;
126 * Exported function for querying the DRI driver for a given screen.
128 * The returned char pointer points to a static array that will be
129 * overwritten by subsequent calls.
131 PUBLIC const char *
132 glXGetScreenDriver(Display * dpy, int scrNum)
134 static char ret[32];
135 char *driverName;
136 if (driGetDriverName(dpy, scrNum, &driverName)) {
137 int len;
138 if (!driverName)
139 return NULL;
140 len = strlen(driverName);
141 if (len >= 31)
142 return NULL;
143 memcpy(ret, driverName, len + 1);
144 Xfree(driverName);
145 return ret;
147 return NULL;
151 * Exported function for obtaining a driver's option list (UTF-8 encoded XML).
153 * The returned char pointer points directly into the driver. Therefore
154 * it should be treated as a constant.
156 * If the driver was not found or does not support configuration NULL is
157 * returned.
159 * Note: The driver remains opened after this function returns.
161 PUBLIC const char *
162 glXGetDriverConfig(const char *driverName)
164 void *handle = driOpenDriver(driverName);
165 if (handle)
166 return dlsym(handle, "__driConfigOptions");
167 else
168 return NULL;
171 #ifdef XDAMAGE_1_1_INTERFACE
173 static GLboolean
174 has_damage_post(Display * dpy)
176 static GLboolean inited = GL_FALSE;
177 static GLboolean has_damage;
179 if (!inited) {
180 int major, minor;
182 if (XDamageQueryVersion(dpy, &major, &minor) &&
183 major == 1 && minor >= 1) {
184 has_damage = GL_TRUE;
186 else {
187 has_damage = GL_FALSE;
189 inited = GL_TRUE;
192 return has_damage;
195 static void
196 __glXReportDamage(__DRIdrawable * driDraw,
197 int x, int y,
198 drm_clip_rect_t * rects, int num_rects,
199 GLboolean front_buffer, void *loaderPrivate)
201 XRectangle *xrects;
202 XserverRegion region;
203 int i;
204 int x_off, y_off;
205 __GLXDRIdrawable *glxDraw = loaderPrivate;
206 __GLXscreenConfigs *psc = glxDraw->psc;
207 Display *dpy = psc->dpy;
208 Drawable drawable;
210 if (!has_damage_post(dpy))
211 return;
213 if (front_buffer) {
214 x_off = x;
215 y_off = y;
216 drawable = RootWindow(dpy, psc->scr);
218 else {
219 x_off = 0;
220 y_off = 0;
221 drawable = glxDraw->xDrawable;
224 xrects = malloc(sizeof(XRectangle) * num_rects);
225 if (xrects == NULL)
226 return;
228 for (i = 0; i < num_rects; i++) {
229 xrects[i].x = rects[i].x1 + x_off;
230 xrects[i].y = rects[i].y1 + y_off;
231 xrects[i].width = rects[i].x2 - rects[i].x1;
232 xrects[i].height = rects[i].y2 - rects[i].y1;
234 region = XFixesCreateRegion(dpy, xrects, num_rects);
235 free(xrects);
236 XDamageAdd(dpy, drawable, region);
237 XFixesDestroyRegion(dpy, region);
240 static const __DRIdamageExtension damageExtension = {
241 {__DRI_DAMAGE, __DRI_DAMAGE_VERSION},
242 __glXReportDamage,
245 #endif
247 static GLboolean
248 __glXDRIGetDrawableInfo(__DRIdrawable * drawable,
249 unsigned int *index, unsigned int *stamp,
250 int *X, int *Y, int *W, int *H,
251 int *numClipRects, drm_clip_rect_t ** pClipRects,
252 int *backX, int *backY,
253 int *numBackClipRects,
254 drm_clip_rect_t ** pBackClipRects,
255 void *loaderPrivate)
257 __GLXDRIdrawable *glxDraw = loaderPrivate;
258 __GLXscreenConfigs *psc = glxDraw->psc;
259 Display *dpy = psc->dpy;
261 return XF86DRIGetDrawableInfo(dpy, psc->scr, glxDraw->drawable,
262 index, stamp, X, Y, W, H,
263 numClipRects, pClipRects,
264 backX, backY,
265 numBackClipRects, pBackClipRects);
268 static const __DRIgetDrawableInfoExtension getDrawableInfoExtension = {
269 {__DRI_GET_DRAWABLE_INFO, __DRI_GET_DRAWABLE_INFO_VERSION},
270 __glXDRIGetDrawableInfo
273 static const __DRIextension *loader_extensions[] = {
274 &systemTimeExtension.base,
275 &getDrawableInfoExtension.base,
276 #ifdef XDAMAGE_1_1_INTERFACE
277 &damageExtension.base,
278 #endif
279 NULL
283 * Perform the required libGL-side initialization and call the client-side
284 * driver's \c __driCreateNewScreen function.
286 * \param dpy Display pointer.
287 * \param scrn Screen number on the display.
288 * \param psc DRI screen information.
289 * \param driDpy DRI display information.
290 * \param createNewScreen Pointer to the client-side driver's
291 * \c __driCreateNewScreen function.
292 * \returns A pointer to the \c __DRIscreen structure returned by
293 * the client-side driver on success, or \c NULL on failure.
295 static void *
296 CallCreateNewScreen(Display * dpy, int scrn, __GLXscreenConfigs * psc,
297 __GLXDRIdisplayPrivate * driDpy)
299 void *psp = NULL;
300 drm_handle_t hSAREA;
301 drmAddress pSAREA = MAP_FAILED;
302 char *BusID;
303 __DRIversion ddx_version;
304 __DRIversion dri_version;
305 __DRIversion drm_version;
306 __DRIframebuffer framebuffer;
307 int fd = -1;
308 int status;
310 drm_magic_t magic;
311 drmVersionPtr version;
312 int newlyopened;
313 char *driverName;
314 drm_handle_t hFB;
315 int junk;
316 const __DRIconfig **driver_configs;
317 __GLcontextModes *visual;
319 /* DRI protocol version. */
320 dri_version.major = driDpy->driMajor;
321 dri_version.minor = driDpy->driMinor;
322 dri_version.patch = driDpy->driPatch;
324 framebuffer.base = MAP_FAILED;
325 framebuffer.dev_priv = NULL;
326 framebuffer.size = 0;
328 if (!XF86DRIOpenConnection(dpy, scrn, &hSAREA, &BusID)) {
329 ErrorMessageF("XF86DRIOpenConnection failed\n");
330 goto handle_error;
333 fd = drmOpenOnce(NULL, BusID, &newlyopened);
335 Xfree(BusID); /* No longer needed */
337 if (fd < 0) {
338 ErrorMessageF("drmOpenOnce failed (%s)\n", strerror(-fd));
339 goto handle_error;
342 if (drmGetMagic(fd, &magic)) {
343 ErrorMessageF("drmGetMagic failed\n");
344 goto handle_error;
347 version = drmGetVersion(fd);
348 if (version) {
349 drm_version.major = version->version_major;
350 drm_version.minor = version->version_minor;
351 drm_version.patch = version->version_patchlevel;
352 drmFreeVersion(version);
354 else {
355 drm_version.major = -1;
356 drm_version.minor = -1;
357 drm_version.patch = -1;
360 if (newlyopened && !XF86DRIAuthConnection(dpy, scrn, magic)) {
361 ErrorMessageF("XF86DRIAuthConnection failed\n");
362 goto handle_error;
365 /* Get device name (like "tdfx") and the ddx version numbers.
366 * We'll check the version in each DRI driver's "createNewScreen"
367 * function. */
368 if (!XF86DRIGetClientDriverName(dpy, scrn,
369 &ddx_version.major,
370 &ddx_version.minor,
371 &ddx_version.patch, &driverName)) {
372 ErrorMessageF("XF86DRIGetClientDriverName failed\n");
373 goto handle_error;
376 Xfree(driverName); /* No longer needed. */
379 * Get device-specific info. pDevPriv will point to a struct
380 * (such as DRIRADEONRec in xfree86/driver/ati/radeon_dri.h) that
381 * has information about the screen size, depth, pitch, ancilliary
382 * buffers, DRM mmap handles, etc.
384 if (!XF86DRIGetDeviceInfo(dpy, scrn, &hFB, &junk,
385 &framebuffer.size, &framebuffer.stride,
386 &framebuffer.dev_priv_size,
387 &framebuffer.dev_priv)) {
388 ErrorMessageF("XF86DRIGetDeviceInfo failed");
389 goto handle_error;
392 framebuffer.width = DisplayWidth(dpy, scrn);
393 framebuffer.height = DisplayHeight(dpy, scrn);
395 /* Map the framebuffer region. */
396 status = drmMap(fd, hFB, framebuffer.size,
397 (drmAddressPtr) & framebuffer.base);
398 if (status != 0) {
399 ErrorMessageF("drmMap of framebuffer failed (%s)", strerror(-status));
400 goto handle_error;
403 /* Map the SAREA region. Further mmap regions may be setup in
404 * each DRI driver's "createNewScreen" function.
406 status = drmMap(fd, hSAREA, SAREA_MAX, &pSAREA);
407 if (status != 0) {
408 ErrorMessageF("drmMap of SAREA failed (%s)", strerror(-status));
409 goto handle_error;
412 psp = (*psc->legacy->createNewScreen) (scrn,
413 &ddx_version,
414 &dri_version,
415 &drm_version,
416 &framebuffer,
417 pSAREA,
419 loader_extensions,
420 &driver_configs, psc);
422 if (psp == NULL) {
423 ErrorMessageF("Calling driver entry point failed");
424 goto handle_error;
427 psc->configs = driConvertConfigs(psc->core, psc->configs, driver_configs);
428 psc->visuals = driConvertConfigs(psc->core, psc->visuals, driver_configs);
430 psc->driver_configs = driver_configs;
432 /* Visuals with depth != screen depth are subject to automatic compositing
433 * in the X server, so DRI1 can't render to them properly. Mark them as
434 * non-conformant to prevent apps from picking them up accidentally.
436 for (visual = psc->visuals; visual; visual = visual->next) {
437 XVisualInfo template;
438 XVisualInfo *visuals;
439 int num_visuals;
440 long mask;
442 template.visualid = visual->visualID;
443 mask = VisualIDMask;
444 visuals = XGetVisualInfo(dpy, mask, &template, &num_visuals);
446 if (visuals) {
447 if (num_visuals > 0 && visuals->depth != DefaultDepth(dpy, scrn))
448 visual->visualRating = GLX_NON_CONFORMANT_CONFIG;
450 XFree(visuals);
454 return psp;
456 handle_error:
457 if (pSAREA != MAP_FAILED)
458 drmUnmap(pSAREA, SAREA_MAX);
460 if (framebuffer.base != MAP_FAILED)
461 drmUnmap((drmAddress) framebuffer.base, framebuffer.size);
463 if (framebuffer.dev_priv != NULL)
464 Xfree(framebuffer.dev_priv);
466 if (fd >= 0)
467 drmCloseOnce(fd);
469 XF86DRICloseConnection(dpy, scrn);
471 ErrorMessageF("reverting to software direct rendering\n");
473 return NULL;
476 static void
477 driDestroyContext(__GLXDRIcontext * context,
478 __GLXscreenConfigs * psc, Display * dpy)
480 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
482 (*psc->core->destroyContext) (pcp->driContext);
484 XF86DRIDestroyContext(psc->dpy, psc->scr, pcp->hwContextID);
485 Xfree(pcp);
488 static Bool
489 driBindContext(__GLXDRIcontext * context,
490 __GLXDRIdrawable * draw, __GLXDRIdrawable * read)
492 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
493 const __DRIcoreExtension *core = pcp->psc->core;
495 return (*core->bindContext) (pcp->driContext,
496 draw->driDrawable, read->driDrawable);
499 static void
500 driUnbindContext(__GLXDRIcontext * context)
502 __GLXDRIcontextPrivate *pcp = (__GLXDRIcontextPrivate *) context;
503 const __DRIcoreExtension *core = pcp->psc->core;
505 (*core->unbindContext) (pcp->driContext);
508 static __GLXDRIcontext *
509 driCreateContext(__GLXscreenConfigs * psc,
510 const __GLcontextModes * mode,
511 GLXContext gc, GLXContext shareList, int renderType)
513 __GLXDRIcontextPrivate *pcp, *pcp_shared;
514 drm_context_t hwContext;
515 __DRIcontext *shared = NULL;
516 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) mode;
518 if (!psc || !psc->driScreen)
519 return NULL;
521 if (shareList) {
522 pcp_shared = (__GLXDRIcontextPrivate *) shareList->driContext;
523 shared = pcp_shared->driContext;
526 pcp = Xmalloc(sizeof *pcp);
527 if (pcp == NULL)
528 return NULL;
530 pcp->psc = psc;
531 if (!XF86DRICreateContextWithConfig(psc->dpy, psc->scr,
532 mode->visualID,
533 &pcp->hwContextID, &hwContext)) {
534 Xfree(pcp);
535 return NULL;
538 pcp->driContext =
539 (*psc->legacy->createNewContext) (psc->__driScreen,
540 config->driConfig,
541 renderType, shared, hwContext, pcp);
542 if (pcp->driContext == NULL) {
543 XF86DRIDestroyContext(psc->dpy, psc->scr, pcp->hwContextID);
544 Xfree(pcp);
545 return NULL;
548 pcp->base.destroyContext = driDestroyContext;
549 pcp->base.bindContext = driBindContext;
550 pcp->base.unbindContext = driUnbindContext;
552 return &pcp->base;
555 static void
556 driDestroyDrawable(__GLXDRIdrawable * pdraw)
558 __GLXscreenConfigs *psc = pdraw->psc;
560 (*psc->core->destroyDrawable) (pdraw->driDrawable);
561 XF86DRIDestroyDrawable(psc->dpy, psc->scr, pdraw->drawable);
562 Xfree(pdraw);
565 static __GLXDRIdrawable *
566 driCreateDrawable(__GLXscreenConfigs * psc,
567 XID xDrawable,
568 GLXDrawable drawable, const __GLcontextModes * modes)
570 __GLXDRIdrawable *pdraw;
571 drm_drawable_t hwDrawable;
572 void *empty_attribute_list = NULL;
573 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) modes;
575 /* Old dri can't handle GLX 1.3+ drawable constructors. */
576 if (xDrawable != drawable)
577 return NULL;
579 pdraw = Xmalloc(sizeof(*pdraw));
580 if (!pdraw)
581 return NULL;
583 pdraw->drawable = drawable;
584 pdraw->psc = psc;
586 if (!XF86DRICreateDrawable(psc->dpy, psc->scr, drawable, &hwDrawable)) {
587 Xfree(pdraw);
588 return NULL;
591 /* Create a new drawable */
592 pdraw->driDrawable =
593 (*psc->legacy->createNewDrawable) (psc->__driScreen,
594 config->driConfig,
595 hwDrawable,
596 GLX_WINDOW_BIT,
597 empty_attribute_list, pdraw);
599 if (!pdraw->driDrawable) {
600 XF86DRIDestroyDrawable(psc->dpy, psc->scr, drawable);
601 Xfree(pdraw);
602 return NULL;
605 pdraw->destroyDrawable = driDestroyDrawable;
607 return pdraw;
610 static int64_t
611 driSwapBuffers(__GLXDRIdrawable * pdraw, int64_t unused1, int64_t unused2,
612 int64_t unused3)
614 (*pdraw->psc->core->swapBuffers) (pdraw->driDrawable);
615 return 0;
618 static void
619 driCopySubBuffer(__GLXDRIdrawable * pdraw,
620 int x, int y, int width, int height)
622 (*pdraw->psc->driCopySubBuffer->copySubBuffer) (pdraw->driDrawable,
623 x, y, width, height);
626 static void
627 driDestroyScreen(__GLXscreenConfigs * psc)
629 /* Free the direct rendering per screen data */
630 if (psc->__driScreen)
631 (*psc->core->destroyScreen) (psc->__driScreen);
632 psc->__driScreen = NULL;
633 if (psc->driver)
634 dlclose(psc->driver);
637 static __GLXDRIscreen *
638 driCreateScreen(__GLXscreenConfigs * psc, int screen,
639 __GLXdisplayPrivate * priv)
641 __GLXDRIdisplayPrivate *pdp;
642 __GLXDRIscreen *psp;
643 const __DRIextension **extensions;
644 char *driverName;
645 int i;
647 psp = Xcalloc(1, sizeof *psp);
648 if (psp == NULL)
649 return NULL;
651 if (!driGetDriverName(priv->dpy, screen, &driverName)) {
652 Xfree(psp);
653 return NULL;
656 psc->driver = driOpenDriver(driverName);
657 Xfree(driverName);
658 if (psc->driver == NULL) {
659 Xfree(psp);
660 return NULL;
663 extensions = dlsym(psc->driver, __DRI_DRIVER_EXTENSIONS);
664 if (extensions == NULL) {
665 ErrorMessageF("driver exports no extensions (%s)\n", dlerror());
666 Xfree(psp);
667 return NULL;
670 for (i = 0; extensions[i]; i++) {
671 if (strcmp(extensions[i]->name, __DRI_CORE) == 0)
672 psc->core = (__DRIcoreExtension *) extensions[i];
673 if (strcmp(extensions[i]->name, __DRI_LEGACY) == 0)
674 psc->legacy = (__DRIlegacyExtension *) extensions[i];
677 if (psc->core == NULL || psc->legacy == NULL) {
678 Xfree(psp);
679 return NULL;
682 pdp = (__GLXDRIdisplayPrivate *) priv->driDisplay;
683 psc->__driScreen = CallCreateNewScreen(psc->dpy, screen, psc, pdp);
684 if (psc->__driScreen == NULL) {
685 dlclose(psc->driver);
686 Xfree(psp);
687 return NULL;
690 driBindExtensions(psc);
691 driBindCommonExtensions(psc);
693 if (psc->driCopySubBuffer)
694 psp->copySubBuffer = driCopySubBuffer;
696 psp->destroyScreen = driDestroyScreen;
697 psp->createContext = driCreateContext;
698 psp->createDrawable = driCreateDrawable;
699 psp->swapBuffers = driSwapBuffers;
700 psp->waitX = NULL;
701 psp->waitGL = NULL;
703 return psp;
706 /* Called from __glXFreeDisplayPrivate.
708 static void
709 driDestroyDisplay(__GLXDRIdisplay * dpy)
711 Xfree(dpy);
715 * Allocate, initialize and return a __DRIdisplayPrivate object.
716 * This is called from __glXInitialize() when we are given a new
717 * display pointer.
719 _X_HIDDEN __GLXDRIdisplay *
720 driCreateDisplay(Display * dpy)
722 __GLXDRIdisplayPrivate *pdpyp;
723 int eventBase, errorBase;
724 int major, minor, patch;
726 if (!XF86DRIQueryExtension(dpy, &eventBase, &errorBase)) {
727 return NULL;
730 if (!XF86DRIQueryVersion(dpy, &major, &minor, &patch)) {
731 return NULL;
734 pdpyp = Xmalloc(sizeof *pdpyp);
735 if (!pdpyp) {
736 return NULL;
739 pdpyp->driMajor = major;
740 pdpyp->driMinor = minor;
741 pdpyp->driPatch = patch;
743 pdpyp->base.destroyDisplay = driDestroyDisplay;
744 pdpyp->base.createScreen = driCreateScreen;
746 return &pdpyp->base;
749 #endif /* GLX_DIRECT_RENDERING */