2008-11-02 08:26:08 -07:00
|
|
|
/*
|
2009-09-06 13:44:18 -06:00
|
|
|
* Copyright © 2007, 2008 Red Hat, Inc.
|
2008-11-02 08:26:08 -07:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Soft-
|
|
|
|
* ware"), to deal in the Software without restriction, including without
|
|
|
|
* limitation the rights to use, copy, modify, merge, publish, distribute,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, provided that the above copyright
|
|
|
|
* notice(s) and this permission notice appear in all copies of the Soft-
|
|
|
|
* ware and that both the above copyright notice(s) and this permission
|
|
|
|
* notice appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
|
|
|
|
* ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
|
|
|
|
* RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
|
|
|
|
* THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
|
|
|
|
* QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
|
|
|
|
* MANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Except as contained in this notice, the name of a copyright holder shall
|
|
|
|
* not be used in advertising or otherwise to promote the sale, use or
|
|
|
|
* other dealings in this Software without prior written authorization of
|
|
|
|
* the copyright holder.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Kristian Høgsberg (krh@redhat.com)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_XORG_CONFIG_H
|
|
|
|
#include <xorg-config.h>
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
#include <errno.h>
|
2010-12-05 08:36:02 -07:00
|
|
|
#ifdef WITH_LIBDRM
|
2008-11-02 08:26:08 -07:00
|
|
|
#include <xf86drm.h>
|
2010-12-05 08:36:02 -07:00
|
|
|
#endif
|
2008-11-02 08:26:08 -07:00
|
|
|
#include "xf86Module.h"
|
2010-07-27 13:02:24 -06:00
|
|
|
#include "list.h"
|
2008-11-02 08:26:08 -07:00
|
|
|
#include "scrnintstr.h"
|
|
|
|
#include "windowstr.h"
|
2010-07-27 13:02:24 -06:00
|
|
|
#include "dixstruct.h"
|
2008-11-02 08:26:08 -07:00
|
|
|
#include "dri2.h"
|
2010-07-27 13:02:24 -06:00
|
|
|
#include "xf86VGAarbiter.h"
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
#include "xf86.h"
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
CARD8 dri2_major; /* version of DRI2 supported by DDX */
|
|
|
|
CARD8 dri2_minor;
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
static DevPrivateKeyRec dri2ScreenPrivateKeyRec;
|
|
|
|
#define dri2ScreenPrivateKey (&dri2ScreenPrivateKeyRec)
|
|
|
|
|
|
|
|
static DevPrivateKeyRec dri2WindowPrivateKeyRec;
|
|
|
|
#define dri2WindowPrivateKey (&dri2WindowPrivateKeyRec)
|
|
|
|
|
|
|
|
static DevPrivateKeyRec dri2PixmapPrivateKeyRec;
|
|
|
|
#define dri2PixmapPrivateKey (&dri2PixmapPrivateKeyRec)
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static RESTYPE dri2DrawableRes;
|
|
|
|
|
|
|
|
typedef struct _DRI2Screen *DRI2ScreenPtr;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
|
|
|
typedef struct _DRI2Drawable {
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2ScreenPtr dri2_screen;
|
|
|
|
DrawablePtr drawable;
|
|
|
|
struct list reference_list;
|
2009-09-06 13:44:18 -06:00
|
|
|
int width;
|
|
|
|
int height;
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2BufferPtr *buffers;
|
2009-09-06 13:44:18 -06:00
|
|
|
int bufferCount;
|
2010-07-27 13:02:24 -06:00
|
|
|
unsigned int swapsPending;
|
|
|
|
ClientPtr blockedClient;
|
|
|
|
Bool blockedOnMsc;
|
|
|
|
int swap_interval;
|
|
|
|
CARD64 swap_count;
|
|
|
|
int64_t target_sbc; /* -1 means no SBC wait outstanding */
|
|
|
|
CARD64 last_swap_target; /* most recently queued swap target */
|
|
|
|
CARD64 last_swap_msc; /* msc at completion of most recent swap */
|
|
|
|
CARD64 last_swap_ust; /* ust at completion of most recent swap */
|
|
|
|
int swap_limit; /* for N-buffering */
|
2010-12-05 08:36:02 -07:00
|
|
|
unsigned long serialNumber;
|
2009-09-06 13:44:18 -06:00
|
|
|
} DRI2DrawableRec, *DRI2DrawablePtr;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
typedef struct _DRI2Screen {
|
2010-07-27 13:02:24 -06:00
|
|
|
ScreenPtr screen;
|
|
|
|
int refcnt;
|
|
|
|
unsigned int numDrivers;
|
|
|
|
const char **driverNames;
|
2009-09-06 13:44:18 -06:00
|
|
|
const char *deviceName;
|
|
|
|
int fd;
|
|
|
|
unsigned int lastSequence;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2CreateBufferProcPtr CreateBuffer;
|
|
|
|
DRI2DestroyBufferProcPtr DestroyBuffer;
|
|
|
|
DRI2CopyRegionProcPtr CopyRegion;
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2ScheduleSwapProcPtr ScheduleSwap;
|
|
|
|
DRI2GetMSCProcPtr GetMSC;
|
|
|
|
DRI2ScheduleWaitMSCProcPtr ScheduleWaitMSC;
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2AuthMagicProcPtr AuthMagic;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
HandleExposuresProcPtr HandleExposures;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
|
|
|
ConfigNotifyProcPtr ConfigNotify;
|
2010-07-27 13:02:24 -06:00
|
|
|
} DRI2ScreenRec;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
static DRI2ScreenPtr
|
|
|
|
DRI2GetScreen(ScreenPtr pScreen)
|
|
|
|
{
|
|
|
|
return dixLookupPrivate(&pScreen->devPrivates, dri2ScreenPrivateKey);
|
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
static DRI2DrawablePtr
|
|
|
|
DRI2GetDrawable(DrawablePtr pDraw)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
WindowPtr pWin;
|
|
|
|
PixmapPtr pPixmap;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
switch (pDraw->type) {
|
|
|
|
case DRAWABLE_WINDOW:
|
2009-09-06 13:44:18 -06:00
|
|
|
pWin = (WindowPtr) pDraw;
|
|
|
|
return dixLookupPrivate(&pWin->devPrivates, dri2WindowPrivateKey);
|
2010-12-05 08:36:02 -07:00
|
|
|
case DRAWABLE_PIXMAP:
|
2009-09-06 13:44:18 -06:00
|
|
|
pPixmap = (PixmapPtr) pDraw;
|
|
|
|
return dixLookupPrivate(&pPixmap->devPrivates, dri2PixmapPrivateKey);
|
2010-12-05 08:36:02 -07:00
|
|
|
default:
|
|
|
|
return NULL;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
static unsigned long
|
|
|
|
DRI2DrawableSerial(DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
PixmapPtr pPix;
|
|
|
|
|
|
|
|
if (pDraw->type != DRAWABLE_WINDOW)
|
|
|
|
return pDraw->serialNumber;
|
|
|
|
|
|
|
|
pPix = pScreen->GetWindowPixmap((WindowPtr)pDraw);
|
|
|
|
return pPix->drawable.serialNumber;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static DRI2DrawablePtr
|
|
|
|
DRI2AllocateDrawable(DrawablePtr pDraw)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2DrawablePtr pPriv;
|
2010-07-27 13:02:24 -06:00
|
|
|
CARD64 ust;
|
|
|
|
WindowPtr pWin;
|
|
|
|
PixmapPtr pPixmap;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
pPriv = malloc(sizeof *pPriv);
|
2009-09-06 13:44:18 -06:00
|
|
|
if (pPriv == NULL)
|
2010-07-27 13:02:24 -06:00
|
|
|
return NULL;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
pPriv->dri2_screen = ds;
|
|
|
|
pPriv->drawable = pDraw;
|
2009-09-06 13:44:18 -06:00
|
|
|
pPriv->width = pDraw->width;
|
|
|
|
pPriv->height = pDraw->height;
|
|
|
|
pPriv->buffers = NULL;
|
|
|
|
pPriv->bufferCount = 0;
|
2010-07-27 13:02:24 -06:00
|
|
|
pPriv->swapsPending = 0;
|
|
|
|
pPriv->blockedClient = NULL;
|
|
|
|
pPriv->blockedOnMsc = FALSE;
|
|
|
|
pPriv->swap_count = 0;
|
|
|
|
pPriv->target_sbc = -1;
|
|
|
|
pPriv->swap_interval = 1;
|
|
|
|
/* Initialize last swap target from DDX if possible */
|
|
|
|
if (!ds->GetMSC || !(*ds->GetMSC)(pDraw, &ust, &pPriv->last_swap_target))
|
|
|
|
pPriv->last_swap_target = 0;
|
|
|
|
|
|
|
|
pPriv->swap_limit = 1; /* default to double buffering */
|
|
|
|
pPriv->last_swap_msc = 0;
|
|
|
|
pPriv->last_swap_ust = 0;
|
|
|
|
list_init(&pPriv->reference_list);
|
2010-12-05 08:36:02 -07:00
|
|
|
pPriv->serialNumber = DRI2DrawableSerial(pDraw);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pDraw->type == DRAWABLE_WINDOW) {
|
2008-11-02 08:26:08 -07:00
|
|
|
pWin = (WindowPtr) pDraw;
|
2009-09-06 13:44:18 -06:00
|
|
|
dixSetPrivate(&pWin->devPrivates, dri2WindowPrivateKey, pPriv);
|
2010-07-27 13:02:24 -06:00
|
|
|
} else {
|
2008-11-02 08:26:08 -07:00
|
|
|
pPixmap = (PixmapPtr) pDraw;
|
2009-09-06 13:44:18 -06:00
|
|
|
dixSetPrivate(&pPixmap->devPrivates, dri2PixmapPrivateKey, pPriv);
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
return pPriv;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct DRI2DrawableRefRec {
|
2010-12-05 08:36:02 -07:00
|
|
|
XID id;
|
|
|
|
XID dri2_id;
|
|
|
|
DRI2InvalidateProcPtr invalidate;
|
|
|
|
void *priv;
|
|
|
|
struct list link;
|
2010-07-27 13:02:24 -06:00
|
|
|
} DRI2DrawableRefRec, *DRI2DrawableRefPtr;
|
|
|
|
|
|
|
|
static DRI2DrawableRefPtr
|
|
|
|
DRI2LookupDrawableRef(DRI2DrawablePtr pPriv, XID id)
|
|
|
|
{
|
|
|
|
DRI2DrawableRefPtr ref;
|
|
|
|
|
|
|
|
list_for_each_entry(ref, &pPriv->reference_list, link) {
|
|
|
|
if (ref->id == id)
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2AddDrawableRef(DRI2DrawablePtr pPriv, XID id, XID dri2_id,
|
|
|
|
DRI2InvalidateProcPtr invalidate, void *priv)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
DRI2DrawableRefPtr ref;
|
|
|
|
|
|
|
|
ref = malloc(sizeof *ref);
|
|
|
|
if (ref == NULL)
|
|
|
|
return BadAlloc;
|
|
|
|
|
|
|
|
if (!AddResource(dri2_id, dri2DrawableRes, pPriv))
|
|
|
|
return BadAlloc;
|
|
|
|
if (!DRI2LookupDrawableRef(pPriv, id))
|
|
|
|
if (!AddResource(id, dri2DrawableRes, pPriv))
|
|
|
|
return BadAlloc;
|
|
|
|
|
|
|
|
ref->id = id;
|
|
|
|
ref->dri2_id = dri2_id;
|
2010-12-05 08:36:02 -07:00
|
|
|
ref->invalidate = invalidate;
|
|
|
|
ref->priv = priv;
|
2010-07-27 13:02:24 -06:00
|
|
|
list_add(&ref->link, &pPriv->reference_list);
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2CreateDrawable(ClientPtr client, DrawablePtr pDraw, XID id,
|
|
|
|
DRI2InvalidateProcPtr invalidate, void *priv)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
XID dri2_id;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
pPriv = DRI2AllocateDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return BadAlloc;
|
|
|
|
|
|
|
|
dri2_id = FakeClientID(client->index);
|
2010-12-05 08:36:02 -07:00
|
|
|
rc = DRI2AddDrawableRef(pPriv, id, dri2_id, invalidate, priv);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (rc != Success)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int DRI2DrawableGone(pointer p, XID id)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv = p;
|
|
|
|
DRI2ScreenPtr ds = pPriv->dri2_screen;
|
|
|
|
DRI2DrawableRefPtr ref, next;
|
|
|
|
WindowPtr pWin;
|
|
|
|
PixmapPtr pPixmap;
|
|
|
|
DrawablePtr pDraw;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
list_for_each_entry_safe(ref, next, &pPriv->reference_list, link) {
|
|
|
|
if (ref->dri2_id == id) {
|
|
|
|
list_del(&ref->link);
|
|
|
|
/* If this was the last ref under this X drawable XID,
|
|
|
|
* unregister the X drawable resource. */
|
|
|
|
if (!DRI2LookupDrawableRef(pPriv, ref->id))
|
|
|
|
FreeResourceByType(ref->id, dri2DrawableRes, TRUE);
|
|
|
|
free(ref);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ref->id == id) {
|
|
|
|
list_del(&ref->link);
|
|
|
|
FreeResourceByType(ref->dri2_id, dri2DrawableRes, TRUE);
|
|
|
|
free(ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!list_is_empty(&pPriv->reference_list))
|
|
|
|
return Success;
|
|
|
|
|
|
|
|
pDraw = pPriv->drawable;
|
|
|
|
if (pDraw->type == DRAWABLE_WINDOW) {
|
|
|
|
pWin = (WindowPtr) pDraw;
|
|
|
|
dixSetPrivate(&pWin->devPrivates, dri2WindowPrivateKey, NULL);
|
|
|
|
} else {
|
|
|
|
pPixmap = (PixmapPtr) pDraw;
|
|
|
|
dixSetPrivate(&pPixmap->devPrivates, dri2PixmapPrivateKey, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pPriv->buffers != NULL) {
|
|
|
|
for (i = 0; i < pPriv->bufferCount; i++)
|
|
|
|
(*ds->DestroyBuffer)(pDraw, pPriv->buffers[i]);
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
free(pPriv->buffers);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
free(pPriv);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
return Success;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
static int
|
|
|
|
find_attachment(DRI2DrawablePtr pPriv, unsigned attachment)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
int i;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if (pPriv->buffers == NULL) {
|
|
|
|
return -1;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
for (i = 0; i < pPriv->bufferCount; i++) {
|
|
|
|
if ((pPriv->buffers[i] != NULL)
|
|
|
|
&& (pPriv->buffers[i]->attachment == attachment)) {
|
|
|
|
return i;
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
return -1;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static Bool
|
2009-09-06 13:44:18 -06:00
|
|
|
allocate_or_reuse_buffer(DrawablePtr pDraw, DRI2ScreenPtr ds,
|
|
|
|
DRI2DrawablePtr pPriv,
|
|
|
|
unsigned int attachment, unsigned int format,
|
2010-07-27 13:02:24 -06:00
|
|
|
int dimensions_match, DRI2BufferPtr *buffer)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
int old_buf = find_attachment(pPriv, attachment);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if ((old_buf < 0)
|
|
|
|
|| !dimensions_match
|
|
|
|
|| (pPriv->buffers[old_buf]->format != format)) {
|
2010-07-27 13:02:24 -06:00
|
|
|
*buffer = (*ds->CreateBuffer)(pDraw, attachment, format);
|
2010-12-05 08:36:02 -07:00
|
|
|
pPriv->serialNumber = DRI2DrawableSerial(pDraw);
|
2010-07-27 13:02:24 -06:00
|
|
|
return TRUE;
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
} else {
|
2010-07-27 13:02:24 -06:00
|
|
|
*buffer = pPriv->buffers[old_buf];
|
2009-09-06 13:44:18 -06:00
|
|
|
pPriv->buffers[old_buf] = NULL;
|
2010-07-27 13:02:24 -06:00
|
|
|
return FALSE;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
static void
|
|
|
|
update_dri2_drawable_buffers(DRI2DrawablePtr pPriv, DrawablePtr pDraw,
|
|
|
|
DRI2BufferPtr *buffers, int *out_count, int *width, int *height)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (pPriv->buffers != NULL) {
|
|
|
|
for (i = 0; i < pPriv->bufferCount; i++) {
|
|
|
|
if (pPriv->buffers[i] != NULL) {
|
|
|
|
(*ds->DestroyBuffer)(pDraw, pPriv->buffers[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(pPriv->buffers);
|
|
|
|
}
|
|
|
|
|
|
|
|
pPriv->buffers = buffers;
|
|
|
|
pPriv->bufferCount = *out_count;
|
|
|
|
pPriv->width = pDraw->width;
|
|
|
|
pPriv->height = pDraw->height;
|
|
|
|
*width = pPriv->width;
|
|
|
|
*height = pPriv->height;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static DRI2BufferPtr *
|
2009-09-06 13:44:18 -06:00
|
|
|
do_get_buffers(DrawablePtr pDraw, int *width, int *height,
|
|
|
|
unsigned int *attachments, int count, int *out_count,
|
|
|
|
int has_format)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
DRI2DrawablePtr pPriv = DRI2GetDrawable(pDraw);
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2BufferPtr *buffers;
|
2009-09-06 13:44:18 -06:00
|
|
|
int need_real_front = 0;
|
|
|
|
int need_fake_front = 0;
|
|
|
|
int have_fake_front = 0;
|
|
|
|
int front_format = 0;
|
2009-10-31 08:09:43 -06:00
|
|
|
int dimensions_match;
|
2010-07-27 13:02:24 -06:00
|
|
|
int buffers_changed = 0;
|
2009-09-06 13:44:18 -06:00
|
|
|
int i;
|
|
|
|
|
2009-10-31 08:09:43 -06:00
|
|
|
if (!pPriv) {
|
|
|
|
*width = pDraw->width;
|
|
|
|
*height = pDraw->height;
|
|
|
|
*out_count = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dimensions_match = (pDraw->width == pPriv->width)
|
2010-12-05 08:36:02 -07:00
|
|
|
&& (pDraw->height == pPriv->height)
|
|
|
|
&& (pPriv->serialNumber == DRI2DrawableSerial(pDraw));
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
buffers = malloc((count + 1) * sizeof(buffers[0]));
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
const unsigned attachment = *(attachments++);
|
|
|
|
const unsigned format = (has_format) ? *(attachments++) : 0;
|
|
|
|
|
|
|
|
if (allocate_or_reuse_buffer(pDraw, ds, pPriv, attachment,
|
|
|
|
format, dimensions_match,
|
|
|
|
&buffers[i]))
|
|
|
|
buffers_changed = 1;
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (buffers[i] == NULL)
|
|
|
|
goto err_out;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* If the drawable is a window and the front-buffer is requested,
|
|
|
|
* silently add the fake front-buffer to the list of requested
|
|
|
|
* attachments. The counting logic in the loop accounts for the case
|
|
|
|
* where the client requests both the fake and real front-buffer.
|
|
|
|
*/
|
|
|
|
if (attachment == DRI2BufferBackLeft) {
|
|
|
|
need_real_front++;
|
|
|
|
front_format = format;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (attachment == DRI2BufferFrontLeft) {
|
|
|
|
need_real_front--;
|
|
|
|
front_format = format;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pDraw->type == DRAWABLE_WINDOW) {
|
|
|
|
need_fake_front++;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pDraw->type == DRAWABLE_WINDOW) {
|
|
|
|
if (attachment == DRI2BufferFakeFrontLeft) {
|
2009-09-06 13:44:18 -06:00
|
|
|
need_fake_front--;
|
|
|
|
have_fake_front = 1;
|
|
|
|
}
|
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (need_real_front > 0) {
|
|
|
|
if (allocate_or_reuse_buffer(pDraw, ds, pPriv, DRI2BufferFrontLeft,
|
|
|
|
front_format, dimensions_match,
|
2010-12-05 08:36:02 -07:00
|
|
|
&buffers[i]))
|
2010-07-27 13:02:24 -06:00
|
|
|
buffers_changed = 1;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
|
|
|
if (buffers[i] == NULL)
|
|
|
|
goto err_out;
|
|
|
|
i++;
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (need_fake_front > 0) {
|
|
|
|
if (allocate_or_reuse_buffer(pDraw, ds, pPriv, DRI2BufferFakeFrontLeft,
|
|
|
|
front_format, dimensions_match,
|
2010-12-05 08:36:02 -07:00
|
|
|
&buffers[i]))
|
2010-07-27 13:02:24 -06:00
|
|
|
buffers_changed = 1;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (buffers[i] == NULL)
|
|
|
|
goto err_out;
|
|
|
|
|
|
|
|
i++;
|
2010-07-27 13:02:24 -06:00
|
|
|
have_fake_front = 1;
|
|
|
|
}
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
*out_count = i;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
update_dri2_drawable_buffers(pPriv, pDraw, buffers, out_count, width, height);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
|
|
|
/* If the client is getting a fake front-buffer, pre-fill it with the
|
|
|
|
* contents of the real front-buffer. This ensures correct operation of
|
|
|
|
* applications that call glXWaitX before calling glDrawBuffer.
|
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
if (have_fake_front && buffers_changed) {
|
2009-09-06 13:44:18 -06:00
|
|
|
BoxRec box;
|
|
|
|
RegionRec region;
|
|
|
|
|
|
|
|
box.x1 = 0;
|
|
|
|
box.y1 = 0;
|
|
|
|
box.x2 = pPriv->width;
|
|
|
|
box.y2 = pPriv->height;
|
2010-12-05 08:36:02 -07:00
|
|
|
RegionInit(®ion, &box, 0);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
|
|
|
DRI2CopyRegion(pDraw, ®ion, DRI2BufferFakeFrontLeft,
|
|
|
|
DRI2BufferFrontLeft);
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
return pPriv->buffers;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
|
|
|
err_out:
|
|
|
|
|
|
|
|
*out_count = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
if (buffers[i] != NULL)
|
|
|
|
(*ds->DestroyBuffer)(pDraw, buffers[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(buffers);
|
|
|
|
buffers = NULL;
|
|
|
|
|
|
|
|
update_dri2_drawable_buffers(pPriv, pDraw, buffers, out_count, width, height);
|
|
|
|
|
|
|
|
return buffers;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2BufferPtr *
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2GetBuffers(DrawablePtr pDraw, int *width, int *height,
|
|
|
|
unsigned int *attachments, int count, int *out_count)
|
|
|
|
{
|
|
|
|
return do_get_buffers(pDraw, width, height, attachments, count,
|
|
|
|
out_count, FALSE);
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2BufferPtr *
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2GetBuffersWithFormat(DrawablePtr pDraw, int *width, int *height,
|
|
|
|
unsigned int *attachments, int count, int *out_count)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
return do_get_buffers(pDraw, width, height, attachments, count,
|
|
|
|
out_count, TRUE);
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
static void
|
|
|
|
DRI2InvalidateDrawable(DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
DRI2DrawableRefPtr ref;
|
|
|
|
|
|
|
|
if (!pPriv)
|
|
|
|
return;
|
|
|
|
|
|
|
|
list_for_each_entry(ref, &pPriv->reference_list, link)
|
|
|
|
ref->invalidate(pDraw, ref->priv);
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/*
|
|
|
|
* In the direct rendered case, we throttle the clients that have more
|
|
|
|
* than their share of outstanding swaps (and thus busy buffers) when a
|
|
|
|
* new GetBuffers request is received. In the AIGLX case, we allow the
|
|
|
|
* client to get the new buffers, but throttle when the next GLX request
|
|
|
|
* comes in (see __glXDRIcontextWait()).
|
|
|
|
*/
|
|
|
|
Bool
|
|
|
|
DRI2ThrottleClient(ClientPtr client, DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Throttle to swap limit */
|
|
|
|
if ((pPriv->swapsPending >= pPriv->swap_limit) &&
|
|
|
|
!pPriv->blockedClient) {
|
|
|
|
ResetCurrentRequest(client);
|
|
|
|
client->sequence--;
|
|
|
|
IgnoreClient(client);
|
|
|
|
pPriv->blockedClient = client;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
__DRI2BlockClient(ClientPtr client, DRI2DrawablePtr pPriv)
|
|
|
|
{
|
|
|
|
if (pPriv->blockedClient == NULL) {
|
|
|
|
IgnoreClient(client);
|
|
|
|
pPriv->blockedClient = client;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DRI2BlockClient(ClientPtr client, DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
__DRI2BlockClient(client, pPriv);
|
|
|
|
pPriv->blockedOnMsc = TRUE;
|
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
int
|
|
|
|
DRI2CopyRegion(DrawablePtr pDraw, RegionPtr pRegion,
|
|
|
|
unsigned int dest, unsigned int src)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
DRI2BufferPtr pDestBuffer, pSrcBuffer;
|
|
|
|
int i;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return BadDrawable;
|
|
|
|
|
|
|
|
pDestBuffer = NULL;
|
|
|
|
pSrcBuffer = NULL;
|
|
|
|
for (i = 0; i < pPriv->bufferCount; i++)
|
|
|
|
{
|
|
|
|
if (pPriv->buffers[i]->attachment == dest)
|
|
|
|
pDestBuffer = (DRI2BufferPtr) pPriv->buffers[i];
|
|
|
|
if (pPriv->buffers[i]->attachment == src)
|
|
|
|
pSrcBuffer = (DRI2BufferPtr) pPriv->buffers[i];
|
|
|
|
}
|
|
|
|
if (pSrcBuffer == NULL || pDestBuffer == NULL)
|
|
|
|
return BadValue;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
(*ds->CopyRegion)(pDraw, pRegion, pDestBuffer, pSrcBuffer);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
return Success;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* Can this drawable be page flipped? */
|
|
|
|
Bool
|
|
|
|
DRI2CanFlip(DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
WindowPtr pWin, pRoot;
|
|
|
|
PixmapPtr pWinPixmap, pRootPixmap;
|
|
|
|
|
|
|
|
if (pDraw->type == DRAWABLE_PIXMAP)
|
|
|
|
return TRUE;
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
pRoot = pScreen->root;
|
2010-07-27 13:02:24 -06:00
|
|
|
pRootPixmap = pScreen->GetWindowPixmap(pRoot);
|
|
|
|
|
|
|
|
pWin = (WindowPtr) pDraw;
|
|
|
|
pWinPixmap = pScreen->GetWindowPixmap(pWin);
|
|
|
|
if (pRootPixmap != pWinPixmap)
|
|
|
|
return FALSE;
|
2010-12-05 08:36:02 -07:00
|
|
|
if (!RegionEqual(&pWin->clipList, &pRoot->winSize))
|
2010-07-27 13:02:24 -06:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Can we do a pixmap exchange instead of a blit? */
|
|
|
|
Bool
|
|
|
|
DRI2CanExchange(DrawablePtr pDraw)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
void
|
2010-07-27 13:02:24 -06:00
|
|
|
DRI2WaitMSCComplete(ClientPtr client, DrawablePtr pDraw, int frame,
|
|
|
|
unsigned int tv_sec, unsigned int tv_usec)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2DrawablePtr pPriv;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
2008-11-02 08:26:08 -07:00
|
|
|
if (pPriv == NULL)
|
|
|
|
return;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ProcDRI2WaitMSCReply(client, ((CARD64)tv_sec * 1000000) + tv_usec,
|
|
|
|
frame, pPriv->swap_count);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pPriv->blockedClient)
|
|
|
|
AttendClient(pPriv->blockedClient);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
pPriv->blockedClient = NULL;
|
|
|
|
pPriv->blockedOnMsc = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
DRI2WakeClient(ClientPtr client, DrawablePtr pDraw, int frame,
|
|
|
|
unsigned int tv_sec, unsigned int tv_usec)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: bad drawable\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Swap completed.
|
|
|
|
* Wake the client iff:
|
|
|
|
* - it was waiting on SBC
|
|
|
|
* - was blocked due to GLX make current
|
|
|
|
* - was blocked due to swap throttling
|
|
|
|
* - is not blocked due to an MSC wait
|
|
|
|
*/
|
|
|
|
if (pPriv->target_sbc != -1 &&
|
|
|
|
pPriv->target_sbc <= pPriv->swap_count) {
|
|
|
|
ProcDRI2WaitMSCReply(client, ((CARD64)tv_sec * 1000000) + tv_usec,
|
|
|
|
frame, pPriv->swap_count);
|
|
|
|
pPriv->target_sbc = -1;
|
|
|
|
|
|
|
|
AttendClient(pPriv->blockedClient);
|
|
|
|
pPriv->blockedClient = NULL;
|
|
|
|
} else if (pPriv->target_sbc == -1 && !pPriv->blockedOnMsc) {
|
|
|
|
if (pPriv->blockedClient) {
|
|
|
|
AttendClient(pPriv->blockedClient);
|
|
|
|
pPriv->blockedClient = NULL;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
|
|
|
DRI2SwapComplete(ClientPtr client, DrawablePtr pDraw, int frame,
|
|
|
|
unsigned int tv_sec, unsigned int tv_usec, int type,
|
|
|
|
DRI2SwapEventPtr swap_complete, void *swap_data)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
CARD64 ust = 0;
|
2010-12-05 08:36:02 -07:00
|
|
|
BoxRec box;
|
|
|
|
RegionRec region;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: bad drawable\n", __func__);
|
|
|
|
return;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
pPriv->swapsPending--;
|
|
|
|
pPriv->swap_count++;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
box.x1 = 0;
|
|
|
|
box.y1 = 0;
|
|
|
|
box.x2 = pDraw->width;
|
|
|
|
box.y2 = pDraw->height;
|
|
|
|
RegionInit(®ion, &box, 0);
|
|
|
|
DRI2CopyRegion(pDraw, ®ion, DRI2BufferFakeFrontLeft,
|
|
|
|
DRI2BufferFrontLeft);
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ust = ((CARD64)tv_sec * 1000000) + tv_usec;
|
|
|
|
if (swap_complete)
|
|
|
|
swap_complete(client, swap_data, type, ust, frame, pPriv->swap_count);
|
|
|
|
|
|
|
|
pPriv->last_swap_msc = frame;
|
|
|
|
pPriv->last_swap_ust = ust;
|
|
|
|
|
|
|
|
DRI2WakeClient(client, pDraw, frame, tv_sec, tv_usec);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
DRI2WaitSwap(ClientPtr client, DrawablePtr pDrawable)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv = DRI2GetDrawable(pDrawable);
|
|
|
|
|
|
|
|
/* If we're currently waiting for a swap on this drawable, reset
|
|
|
|
* the request and suspend the client. We only support one
|
|
|
|
* blocked client per drawable. */
|
|
|
|
if ((pPriv->swapsPending) &&
|
|
|
|
pPriv->blockedClient == NULL) {
|
|
|
|
ResetCurrentRequest(client);
|
|
|
|
client->sequence--;
|
|
|
|
__DRI2BlockClient(client, pPriv);
|
|
|
|
return TRUE;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
DRI2SwapBuffers(ClientPtr client, DrawablePtr pDraw, CARD64 target_msc,
|
|
|
|
CARD64 divisor, CARD64 remainder, CARD64 *swap_target,
|
|
|
|
DRI2SwapEventPtr func, void *data)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
DRI2BufferPtr pDestBuffer = NULL, pSrcBuffer = NULL;
|
|
|
|
int ret, i;
|
|
|
|
CARD64 ust, current_msc;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: bad drawable\n", __func__);
|
|
|
|
return BadDrawable;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < pPriv->bufferCount; i++) {
|
|
|
|
if (pPriv->buffers[i]->attachment == DRI2BufferFrontLeft)
|
|
|
|
pDestBuffer = (DRI2BufferPtr) pPriv->buffers[i];
|
|
|
|
if (pPriv->buffers[i]->attachment == DRI2BufferBackLeft)
|
|
|
|
pSrcBuffer = (DRI2BufferPtr) pPriv->buffers[i];
|
|
|
|
}
|
|
|
|
if (pSrcBuffer == NULL || pDestBuffer == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: drawable has no back or front?\n", __func__);
|
|
|
|
return BadDrawable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Old DDX or no swap interval, just blit */
|
|
|
|
if (!ds->ScheduleSwap || !pPriv->swap_interval) {
|
|
|
|
BoxRec box;
|
|
|
|
RegionRec region;
|
|
|
|
|
|
|
|
box.x1 = 0;
|
|
|
|
box.y1 = 0;
|
|
|
|
box.x2 = pDraw->width;
|
|
|
|
box.y2 = pDraw->height;
|
2010-12-05 08:36:02 -07:00
|
|
|
RegionInit(®ion, &box, 0);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
pPriv->swapsPending++;
|
|
|
|
|
|
|
|
(*ds->CopyRegion)(pDraw, ®ion, pDestBuffer, pSrcBuffer);
|
|
|
|
DRI2SwapComplete(client, pDraw, target_msc, 0, 0, DRI2_BLIT_COMPLETE,
|
|
|
|
func, data);
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In the simple glXSwapBuffers case, all params will be 0, and we just
|
|
|
|
* need to schedule a swap for the last swap target + the swap interval.
|
|
|
|
*/
|
|
|
|
if (target_msc == 0 && divisor == 0 && remainder == 0) {
|
|
|
|
/* If the current vblank count of the drawable's crtc is lower
|
|
|
|
* than the count stored in last_swap_target from a previous swap
|
|
|
|
* then reinitialize last_swap_target to the current crtc's msc,
|
|
|
|
* otherwise the swap will hang. This will happen if the drawable
|
|
|
|
* is moved to a crtc with a lower refresh rate, or a crtc that just
|
|
|
|
* got enabled.
|
|
|
|
*/
|
2010-12-21 13:10:44 -07:00
|
|
|
if (ds->GetMSC) {
|
|
|
|
if (!(*ds->GetMSC)(pDraw, &ust, ¤t_msc))
|
|
|
|
pPriv->last_swap_target = 0;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2010-12-21 13:10:44 -07:00
|
|
|
if (current_msc < pPriv->last_swap_target)
|
|
|
|
pPriv->last_swap_target = current_msc;
|
|
|
|
|
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Swap target for this swap is last swap target + swap interval since
|
|
|
|
* we have to account for the current swap count, interval, and the
|
|
|
|
* number of pending swaps.
|
|
|
|
*/
|
|
|
|
*swap_target = pPriv->last_swap_target + pPriv->swap_interval;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* glXSwapBuffersMscOML could have a 0 target_msc, honor it */
|
|
|
|
*swap_target = target_msc;
|
|
|
|
}
|
|
|
|
|
|
|
|
pPriv->swapsPending++;
|
|
|
|
ret = (*ds->ScheduleSwap)(client, pDraw, pDestBuffer, pSrcBuffer,
|
|
|
|
swap_target, divisor, remainder, func, data);
|
|
|
|
if (!ret) {
|
|
|
|
pPriv->swapsPending--; /* didn't schedule */
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: driver failed to schedule swap\n", __func__);
|
|
|
|
return BadDrawable;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
pPriv->last_swap_target = *swap_target;
|
|
|
|
|
|
|
|
/* According to spec, return expected swapbuffers count SBC after this swap
|
|
|
|
* will complete.
|
|
|
|
*/
|
|
|
|
*swap_target = pPriv->swap_count + pPriv->swapsPending;
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2InvalidateDrawable(pDraw);
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DRI2SwapInterval(DrawablePtr pDrawable, int interval)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDrawable->pScreen;
|
|
|
|
DRI2DrawablePtr pPriv = DRI2GetDrawable(pDrawable);
|
|
|
|
|
|
|
|
if (pPriv == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: bad drawable\n", __func__);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fixme: check against arbitrary max? */
|
|
|
|
pPriv->swap_interval = interval;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
DRI2GetMSC(DrawablePtr pDraw, CARD64 *ust, CARD64 *msc, CARD64 *sbc)
|
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
Bool ret;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_ERROR,
|
|
|
|
"[DRI2] %s: bad drawable\n", __func__);
|
|
|
|
return BadDrawable;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ds->GetMSC) {
|
|
|
|
*ust = 0;
|
|
|
|
*msc = 0;
|
|
|
|
*sbc = pPriv->swap_count;
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Spec needs to be updated to include unmapped or redirected
|
|
|
|
* drawables
|
|
|
|
*/
|
|
|
|
|
|
|
|
ret = (*ds->GetMSC)(pDraw, ust, msc);
|
|
|
|
if (!ret)
|
|
|
|
return BadDrawable;
|
|
|
|
|
|
|
|
*sbc = pPriv->swap_count;
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
DRI2WaitMSC(ClientPtr client, DrawablePtr pDraw, CARD64 target_msc,
|
|
|
|
CARD64 divisor, CARD64 remainder)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pDraw->pScreen);
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
Bool ret;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return BadDrawable;
|
|
|
|
|
|
|
|
/* Old DDX just completes immediately */
|
|
|
|
if (!ds->ScheduleWaitMSC) {
|
|
|
|
DRI2WaitMSCComplete(client, pDraw, target_msc, 0, 0);
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = (*ds->ScheduleWaitMSC)(client, pDraw, target_msc, divisor, remainder);
|
|
|
|
if (!ret)
|
|
|
|
return BadDrawable;
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
DRI2WaitSBC(ClientPtr client, DrawablePtr pDraw, CARD64 target_sbc)
|
|
|
|
{
|
|
|
|
DRI2DrawablePtr pPriv;
|
|
|
|
|
|
|
|
pPriv = DRI2GetDrawable(pDraw);
|
|
|
|
if (pPriv == NULL)
|
|
|
|
return BadDrawable;
|
|
|
|
|
|
|
|
/* target_sbc == 0 means to block until all pending swaps are
|
|
|
|
* finished. Recalculate target_sbc to get that behaviour.
|
|
|
|
*/
|
|
|
|
if (target_sbc == 0)
|
|
|
|
target_sbc = pPriv->swap_count + pPriv->swapsPending;
|
|
|
|
|
|
|
|
/* If current swap count already >= target_sbc, reply and
|
|
|
|
* return immediately with (ust, msc, sbc) triplet of
|
|
|
|
* most recent completed swap.
|
|
|
|
*/
|
|
|
|
if (pPriv->swap_count >= target_sbc) {
|
|
|
|
ProcDRI2WaitMSCReply(client, pPriv->last_swap_ust,
|
|
|
|
pPriv->last_swap_msc, pPriv->swap_count);
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
pPriv->target_sbc = target_sbc;
|
|
|
|
__DRI2BlockClient(client, pPriv);
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
|
|
|
DRI2HasSwapControl(ScreenPtr pScreen)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pScreen);
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
return ds->ScheduleSwap && ds->GetMSC;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2009-09-06 13:44:18 -06:00
|
|
|
DRI2Connect(ScreenPtr pScreen, unsigned int driverType, int *fd,
|
|
|
|
const char **driverName, const char **deviceName)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2ScreenPtr ds;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (!dixPrivateKeyRegistered(dri2ScreenPrivateKey))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
ds = DRI2GetScreen(pScreen);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (ds == NULL || driverType >= ds->numDrivers ||
|
|
|
|
!ds->driverNames[driverType])
|
2008-11-02 08:26:08 -07:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*fd = ds->fd;
|
2010-07-27 13:02:24 -06:00
|
|
|
*driverName = ds->driverNames[driverType];
|
2009-09-06 13:44:18 -06:00
|
|
|
*deviceName = ds->deviceName;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2010-12-05 08:36:02 -07:00
|
|
|
DRI2Authenticate(ScreenPtr pScreen, uint32_t magic)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pScreen);
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (ds == NULL || (*ds->AuthMagic)(ds->fd, magic))
|
|
|
|
return FALSE;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
static int
|
|
|
|
DRI2ConfigNotify(WindowPtr pWin, int x, int y, int w, int h, int bw,
|
|
|
|
WindowPtr pSib)
|
|
|
|
{
|
|
|
|
DrawablePtr pDraw = (DrawablePtr)pWin;
|
|
|
|
ScreenPtr pScreen = pDraw->pScreen;
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pScreen);
|
|
|
|
DRI2DrawablePtr dd = DRI2GetDrawable(pDraw);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (ds->ConfigNotify) {
|
|
|
|
pScreen->ConfigNotify = ds->ConfigNotify;
|
|
|
|
|
|
|
|
ret = (*pScreen->ConfigNotify)(pWin, x, y, w, h, bw, pSib);
|
|
|
|
|
|
|
|
ds->ConfigNotify = pScreen->ConfigNotify;
|
|
|
|
pScreen->ConfigNotify = DRI2ConfigNotify;
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dd || (dd->width == w && dd->height == h))
|
|
|
|
return Success;
|
|
|
|
|
|
|
|
DRI2InvalidateDrawable(pDraw);
|
|
|
|
return Success;
|
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
Bool
|
2008-11-02 08:26:08 -07:00
|
|
|
DRI2ScreenInit(ScreenPtr pScreen, DRI2InfoPtr info)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds;
|
2010-07-27 13:02:24 -06:00
|
|
|
const char* driverTypeNames[] = {
|
|
|
|
"DRI", /* DRI2DriverDRI */
|
|
|
|
"VDPAU", /* DRI2DriverVDPAU */
|
|
|
|
};
|
|
|
|
unsigned int i;
|
|
|
|
CARD8 cur_minor;
|
|
|
|
|
|
|
|
if (info->version < 3)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!xf86VGAarbiterAllowDRI(pScreen)) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_WARNING,
|
|
|
|
"[DRI2] Direct rendering is not supported when VGA arb is necessary for the device\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (!dixRegisterPrivateKey(&dri2ScreenPrivateKeyRec, PRIVATE_SCREEN, 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!dixRegisterPrivateKey(&dri2WindowPrivateKeyRec, PRIVATE_WINDOW, 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!dixRegisterPrivateKey(&dri2PixmapPrivateKeyRec, PRIVATE_PIXMAP, 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
ds = calloc(1, sizeof *ds);
|
2008-11-02 08:26:08 -07:00
|
|
|
if (!ds)
|
2009-09-06 13:44:18 -06:00
|
|
|
return FALSE;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ds->screen = pScreen;
|
2009-09-06 13:44:18 -06:00
|
|
|
ds->fd = info->fd;
|
|
|
|
ds->deviceName = info->deviceName;
|
2010-07-27 13:02:24 -06:00
|
|
|
dri2_major = 1;
|
|
|
|
|
|
|
|
ds->CreateBuffer = info->CreateBuffer;
|
|
|
|
ds->DestroyBuffer = info->DestroyBuffer;
|
|
|
|
ds->CopyRegion = info->CopyRegion;
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (info->version >= 4) {
|
|
|
|
ds->ScheduleSwap = info->ScheduleSwap;
|
|
|
|
ds->ScheduleWaitMSC = info->ScheduleWaitMSC;
|
|
|
|
ds->GetMSC = info->GetMSC;
|
2010-12-05 08:36:02 -07:00
|
|
|
cur_minor = 3;
|
2009-09-06 13:44:18 -06:00
|
|
|
} else {
|
2010-07-27 13:02:24 -06:00
|
|
|
cur_minor = 1;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (info->version >= 5) {
|
|
|
|
ds->AuthMagic = info->AuthMagic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* if the driver doesn't provide an AuthMagic function or the info struct
|
|
|
|
* version is too low, it relies on the old method (using libdrm) or fail
|
|
|
|
*/
|
|
|
|
if (!ds->AuthMagic)
|
|
|
|
#ifdef WITH_LIBDRM
|
|
|
|
ds->AuthMagic = drmAuthMagic;
|
|
|
|
#else
|
|
|
|
goto err_out;
|
|
|
|
#endif
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* Initialize minor if needed and set to minimum provied by DDX */
|
|
|
|
if (!dri2_minor || dri2_minor > cur_minor)
|
|
|
|
dri2_minor = cur_minor;
|
|
|
|
|
|
|
|
if (info->version == 3 || info->numDrivers == 0) {
|
|
|
|
/* Driver too old: use the old-style driverName field */
|
|
|
|
ds->numDrivers = 1;
|
2010-12-05 08:36:02 -07:00
|
|
|
ds->driverNames = malloc(sizeof(*ds->driverNames));
|
|
|
|
if (!ds->driverNames)
|
|
|
|
goto err_out;
|
2010-07-27 13:02:24 -06:00
|
|
|
ds->driverNames[0] = info->driverName;
|
|
|
|
} else {
|
|
|
|
ds->numDrivers = info->numDrivers;
|
2010-12-05 08:36:02 -07:00
|
|
|
ds->driverNames = malloc(info->numDrivers * sizeof(*ds->driverNames));
|
|
|
|
if (!ds->driverNames)
|
|
|
|
goto err_out;
|
2010-07-27 13:02:24 -06:00
|
|
|
memcpy(ds->driverNames, info->driverNames,
|
|
|
|
info->numDrivers * sizeof(*ds->driverNames));
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
2009-09-06 13:44:18 -06:00
|
|
|
|
|
|
|
dixSetPrivate(&pScreen->devPrivates, dri2ScreenPrivateKey, ds);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
ds->ConfigNotify = pScreen->ConfigNotify;
|
|
|
|
pScreen->ConfigNotify = DRI2ConfigNotify;
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
xf86DrvMsg(pScreen->myNum, X_INFO, "[DRI2] Setup complete\n");
|
2010-07-27 13:02:24 -06:00
|
|
|
for (i = 0; i < sizeof(driverTypeNames) / sizeof(driverTypeNames[0]); i++) {
|
|
|
|
if (i < ds->numDrivers && ds->driverNames[i]) {
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_INFO, "[DRI2] %s driver: %s\n",
|
|
|
|
driverTypeNames[i], ds->driverNames[i]);
|
|
|
|
}
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
return TRUE;
|
2010-12-05 08:36:02 -07:00
|
|
|
|
|
|
|
err_out:
|
|
|
|
xf86DrvMsg(pScreen->myNum, X_WARNING,
|
|
|
|
"[DRI2] Initialization failed for info version %d.\n", info->version);
|
|
|
|
free(ds);
|
|
|
|
return FALSE;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DRI2CloseScreen(ScreenPtr pScreen)
|
|
|
|
{
|
|
|
|
DRI2ScreenPtr ds = DRI2GetScreen(pScreen);
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
free(ds->driverNames);
|
|
|
|
free(ds);
|
2009-09-06 13:44:18 -06:00
|
|
|
dixSetPrivate(&pScreen->devPrivates, dri2ScreenPrivateKey, NULL);
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
extern ExtensionModule dri2ExtensionModule;
|
|
|
|
|
|
|
|
static pointer
|
|
|
|
DRI2Setup(pointer module, pointer opts, int *errmaj, int *errmin)
|
|
|
|
{
|
|
|
|
static Bool setupDone = FALSE;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
dri2DrawableRes = CreateNewResourceType(DRI2DrawableGone, "DRI2Drawable");
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if (!setupDone)
|
|
|
|
{
|
2008-11-02 08:26:08 -07:00
|
|
|
setupDone = TRUE;
|
|
|
|
LoadExtension(&dri2ExtensionModule, FALSE);
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-02 08:26:08 -07:00
|
|
|
if (errmaj)
|
|
|
|
*errmaj = LDR_ONCEONLY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (pointer) 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static XF86ModuleVersionInfo DRI2VersRec =
|
|
|
|
{
|
|
|
|
"dri2",
|
|
|
|
MODULEVENDORSTRING,
|
|
|
|
MODINFOSTRING1,
|
|
|
|
MODINFOSTRING2,
|
|
|
|
XORG_VERSION_CURRENT,
|
2010-07-27 13:02:24 -06:00
|
|
|
1, 2, 0,
|
2008-11-02 08:26:08 -07:00
|
|
|
ABI_CLASS_EXTENSION,
|
|
|
|
ABI_EXTENSION_VERSION,
|
|
|
|
MOD_CLASS_NONE,
|
|
|
|
{ 0, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
_X_EXPORT XF86ModuleData dri2ModuleData = { &DRI2VersRec, DRI2Setup, NULL };
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
void
|
|
|
|
DRI2Version(int *major, int *minor)
|
|
|
|
{
|
|
|
|
if (major != NULL)
|
|
|
|
*major = DRI2VersRec.majorversion;
|
|
|
|
|
|
|
|
if (minor != NULL)
|
|
|
|
*minor = DRI2VersRec.minorversion;
|
|
|
|
}
|