Merge branch 'mesa_7_6_branch'
[mesa.git] / src / gallium / state_trackers / xorg / xorg_dri2.c
index f089965b03c8c061d956b73735f45e5f5fdbb615..8a362596c751d21fd4af8b7b846d12562305eda5 100644 (file)
@@ -33,6 +33,7 @@
 #include "xf86_OSproc.h"
 
 #include "xorg_tracker.h"
+#include "xorg_exa.h"
 
 #include "dri2.h"
 
 typedef struct {
     PixmapPtr pPixmap;
     struct pipe_texture *tex;
-    struct pipe_buffer *buf;
     struct pipe_fence_handle *fence;
 } *BufferPrivatePtr;
 
-static DRI2BufferPtr
-driCreateBuffers(DrawablePtr pDraw, unsigned int *attachments, int count)
+static Bool
+driDoCreateBuffer(DrawablePtr pDraw, DRI2BufferPtr buffer, unsigned int format)
 {
-    struct pipe_texture *depth, *tex;
-    struct pipe_buffer *buf;
+    struct pipe_texture *tex = NULL;
     ScreenPtr pScreen = pDraw->pScreen;
     ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
     modesettingPtr ms = modesettingPTR(pScrn);
-    BufferPrivatePtr privates;
-    DRI2BufferPtr buffers;
+    struct exa_pixmap_priv *exa_priv;
+    BufferPrivatePtr private = buffer->driverPrivate;
     PixmapPtr pPixmap;
     unsigned stride, handle;
-    int i;
-
-    buffers = xcalloc(count, sizeof *buffers);
-    if (!buffers)
-       goto fail_buffers;
-
-    privates = xcalloc(count, sizeof *privates);
-    if (!privates)
-       goto fail_privates;
 
-    depth = NULL;
-    for (i = 0; i < count; i++) {
-       pPixmap = NULL;
-       tex = NULL;
-       buf = NULL;
-       if (attachments[i] == DRI2BufferFrontLeft) {
-           if (pDraw->type == DRAWABLE_PIXMAP)
-               pPixmap = (PixmapPtr) pDraw;
-           else
-               pPixmap = (*pScreen->GetWindowPixmap)((WindowPtr) pDraw);
-           pPixmap->refcnt++;
-           tex = xorg_exa_get_texture(pPixmap);
-       } else if (attachments[i] == DRI2BufferStencil) {
-           pipe_texture_reference(&tex, depth);
-       } else if (attachments[i] == DRI2BufferDepth) {
+    if (pDraw->type == DRAWABLE_PIXMAP)
+       pPixmap = (PixmapPtr) pDraw;
+    else
+       pPixmap = (*pScreen->GetWindowPixmap)((WindowPtr) pDraw);
+    exa_priv = exaGetPixmapDriverPrivate(pPixmap);
+
+    switch (buffer->attachment) {
+    default:
+       if (buffer->attachment != DRI2BufferFakeFrontLeft ||
+           pDraw->type != DRAWABLE_PIXMAP) {
+           private->pPixmap = (*pScreen->CreatePixmap)(pScreen, pDraw->width,
+                                                       pDraw->height,
+                                                       pDraw->depth,
+                                                       0);
+       }
+       break;
+    case DRI2BufferFrontLeft:
+       break;
+    case DRI2BufferStencil:
+#if defined(DRI2INFOREC_VERSION) && DRI2INFOREC_VERSION > 2
+    case DRI2BufferDepthStencil:
+       if (exa_priv->depth_stencil_tex &&
+           !pf_is_depth_stencil(exa_priv->depth_stencil_tex->format))
+           exa_priv->depth_stencil_tex = NULL;
+        /* Fall through */
+#endif
+    case DRI2BufferDepth:
+       if (exa_priv->depth_stencil_tex)
+           pipe_texture_reference(&tex, exa_priv->depth_stencil_tex);
+        else {
            struct pipe_texture template;
            memset(&template, 0, sizeof(template));
            template.target = PIPE_TEXTURE_2D;
-           template.format = PIPE_FORMAT_S8Z24_UNORM;
+           if (buffer->attachment == DRI2BufferDepth)
+               template.format = ms->ds_depth_bits_last ?
+                   PIPE_FORMAT_X8Z24_UNORM : PIPE_FORMAT_Z24X8_UNORM;
+           else
+               template.format = ms->ds_depth_bits_last ?
+                   PIPE_FORMAT_S8Z24_UNORM : PIPE_FORMAT_Z24S8_UNORM;
            pf_get_block(template.format, &template.block);
            template.width[0] = pDraw->width;
            template.height[0] = pDraw->height;
            template.depth[0] = 1;
            template.last_level = 0;
-           template.tex_usage = PIPE_TEXTURE_USAGE_DEPTH_STENCIL;
+           template.tex_usage = PIPE_TEXTURE_USAGE_DEPTH_STENCIL |
+               PIPE_TEXTURE_USAGE_DISPLAY_TARGET;
            tex = ms->screen->texture_create(ms->screen, &template);
-           depth = tex;
-       } else if (attachments[i] == DRI2BufferFakeFrontLeft &&
-                  pDraw->type == DRAWABLE_PIXMAP) {
-           pPixmap = (PixmapPtr) pDraw;
-           pPixmap->refcnt++;
-           tex = xorg_exa_get_texture(pPixmap);
-       } else {
-           pPixmap = (*pScreen->CreatePixmap)(pScreen, pDraw->width,
-                                              pDraw->height,
-                                              pDraw->depth,
-                                              0);
-           tex = xorg_exa_get_texture(pPixmap);
+           pipe_texture_reference(&exa_priv->depth_stencil_tex, tex);
        }
+       break;
+    }
 
-       if (!tex)
-               FatalError("NO TEXTURE IN DRI2\n");
+    if (!private->pPixmap) {
+       private->pPixmap = pPixmap;
+       pPixmap->refcnt++;
+    }
 
-       ms->api->buffer_from_texture(ms->api, tex, &buf, &stride);
-       ms->api->global_handle_from_buffer(ms->api, ms->screen, buf, &handle);
+    if (!tex) {
+       exaMoveInPixmap(private->pPixmap);
+       xorg_exa_set_shared_usage(private->pPixmap);
+       pScreen->ModifyPixmapHeader(private->pPixmap, 0, 0, 0, 0, 0, NULL);
+       tex = xorg_exa_get_texture(private->pPixmap);
+    }
+
+    if (!tex)
+       FatalError("NO TEXTURE IN DRI2\n");
+
+    ms->api->shared_handle_from_texture(ms->api, ms->screen, tex, &stride, &handle);
+
+    buffer->name = handle;
+    buffer->pitch = stride;
+    buffer->cpp = 4;
+    buffer->driverPrivate = private;
+    buffer->flags = 0; /* not tiled */
+    private->tex = tex;
+
+    return TRUE;
+}
+
+static void
+driDoDestroyBuffer(DrawablePtr pDraw, DRI2BufferPtr buffer)
+{
+    ScreenPtr pScreen = pDraw->pScreen;
+    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
+    modesettingPtr ms = modesettingPTR(pScrn);
+    BufferPrivatePtr private = buffer->driverPrivate;
+    struct exa_pixmap_priv *exa_priv = exaGetPixmapDriverPrivate(private->pPixmap);
+
+    pipe_texture_reference(&private->tex, NULL);
+    ms->screen->fence_reference(ms->screen, &private->fence, NULL);
+    pipe_texture_reference(&exa_priv->depth_stencil_tex, NULL);
+    (*pScreen->DestroyPixmap)(private->pPixmap);
+}
+
+#if defined(DRI2INFOREC_VERSION) && DRI2INFOREC_VERSION > 2
+
+static DRI2BufferPtr
+driCreateBuffer(DrawablePtr pDraw, unsigned int attachment, unsigned int format)
+{
+    DRI2BufferPtr buffer;
+    BufferPrivatePtr private;
+
+    buffer = xcalloc(1, sizeof *buffer);
+    if (!buffer)
+       return NULL;
+
+    private = xcalloc(1, sizeof *private);
+    if (!private) {
+       goto fail;
+    }
 
-       buffers[i].name = handle;
+    buffer->attachment = attachment;
+    buffer->driverPrivate = private;
+
+    if (driDoCreateBuffer(pDraw, buffer, format))
+       return buffer;
+
+    xfree(private);
+fail:
+    xfree(buffer);
+    return NULL;
+}
+
+static void
+driDestroyBuffer(DrawablePtr pDraw, DRI2BufferPtr buffer)
+{
+    driDoDestroyBuffer(pDraw, buffer);
+
+    xfree(buffer->driverPrivate);
+    xfree(buffer);
+}
+
+#else /* DRI2INFOREC_VERSION <= 2 */
+
+static DRI2BufferPtr
+driCreateBuffers(DrawablePtr pDraw, unsigned int *attachments, int count)
+{
+    BufferPrivatePtr privates;
+    DRI2BufferPtr buffers;
+    int i;
+
+    buffers = xcalloc(count, sizeof *buffers);
+    if (!buffers)
+       goto fail_buffers;
+
+    privates = xcalloc(count, sizeof *privates);
+    if (!privates)
+       goto fail_privates;
+
+    for (i = 0; i < count; i++) {
        buffers[i].attachment = attachments[i];
-       buffers[i].pitch = stride;
-       buffers[i].cpp = 4;
        buffers[i].driverPrivate = &privates[i];
-       buffers[i].flags = 0; /* not tiled */
-       privates[i].pPixmap = pPixmap;
-       privates[i].buf = buf;
-       privates[i].tex = tex;
+
+       if (!driDoCreateBuffer(pDraw, &buffers[i], 0))
+           goto fail;
     }
 
     return buffers;
 
+fail:
+    xfree(privates);
 fail_privates:
     xfree(buffers);
 fail_buffers:
@@ -138,22 +230,10 @@ fail_buffers:
 static void
 driDestroyBuffers(DrawablePtr pDraw, DRI2BufferPtr buffers, int count)
 {
-    ScreenPtr pScreen = pDraw->pScreen;
-    ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
-    modesettingPtr ms = modesettingPTR(pScrn);
-    BufferPrivatePtr private;
     int i;
-    (void)ms;
 
     for (i = 0; i < count; i++) {
-       private = buffers[i].driverPrivate;
-
-       pipe_texture_reference(&private->tex, NULL);
-       pipe_buffer_reference(&private->buf, NULL);
-        ms->screen->fence_reference(ms->screen, &private->fence, NULL);
-
-       if (private->pPixmap)
-           (*pScreen->DestroyPixmap)(private->pPixmap);
+       driDoDestroyBuffer(pDraw, &buffers[i]);
     }
 
     if (buffers) {
@@ -162,6 +242,8 @@ driDestroyBuffers(DrawablePtr pDraw, DRI2BufferPtr buffers, int count)
     }
 }
 
+#endif /* DRI2INFOREC_VERSION */
+
 static void
 driCopyRegion(DrawablePtr pDraw, RegionPtr pRegion,
               DRI2BufferPtr pDestBuffer, DRI2BufferPtr pSrcBuffer)
@@ -257,18 +339,34 @@ driScreenInit(ScreenPtr pScreen)
     modesettingPtr ms = modesettingPTR(pScrn);
     DRI2InfoRec dri2info;
 
-    dri2info.version = 1;
-    dri2info.fd = ms->fd;
-#if 0
-    dri2info.driverName = pScrn->name;
+#if defined(DRI2INFOREC_VERSION)
+    dri2info.version = DRI2INFOREC_VERSION;
 #else
-    dri2info.driverName = "i915"; /* FIXME */
+    dri2info.version = 1;
 #endif
+    dri2info.fd = ms->fd;
+
+    dri2info.driverName = pScrn->driverName;
     dri2info.deviceName = "/dev/dri/card0"; /* FIXME */
 
+#if defined(DRI2INFOREC_VERSION) && DRI2INFOREC_VERSION > 2
+    dri2info.CreateBuffer = driCreateBuffer;
+    dri2info.DestroyBuffer = driDestroyBuffer;
+#else
     dri2info.CreateBuffers = driCreateBuffers;
     dri2info.DestroyBuffers = driDestroyBuffers;
+#endif
     dri2info.CopyRegion = driCopyRegion;
+    dri2info.Wait = NULL;
+
+    ms->d_depth_bits_last =
+        ms->screen->is_format_supported(ms->screen, PIPE_FORMAT_X8Z24_UNORM,
+                                        PIPE_TEXTURE_2D,
+                                        PIPE_TEXTURE_USAGE_DEPTH_STENCIL, 0);
+    ms->ds_depth_bits_last =
+        ms->screen->is_format_supported(ms->screen, PIPE_FORMAT_S8Z24_UNORM,
+                                        PIPE_TEXTURE_2D,
+                                        PIPE_TEXTURE_USAGE_DEPTH_STENCIL, 0);
 
     return DRI2ScreenInit(pScreen, &dri2info);
 }