2004-04-14 12:39:58 +00:00
|
|
|
/* $XFree86: xc/lib/GL/dri/dri_util.c,v 1.7 2003/04/28 17:01:25 dawes Exp $ */
|
|
|
|
|
/**
|
|
|
|
|
* \file dri_util.c
|
|
|
|
|
* DRI utility functions.
|
|
|
|
|
*
|
|
|
|
|
* This module acts as glue between GLX and the actual hardware driver. A DRI
|
|
|
|
|
* driver doesn't really \e have to use any of this - it's optional. But, some
|
|
|
|
|
* useful stuff is done here that otherwise would have to be duplicated in most
|
|
|
|
|
* drivers.
|
|
|
|
|
*
|
|
|
|
|
* Basically, these utility functions take care of some of the dirty details of
|
|
|
|
|
* screen initialization, context creation, context binding, DRM setup, etc.
|
|
|
|
|
*
|
|
|
|
|
* These functions are compiled into each DRI driver so libGL.so knows nothing
|
|
|
|
|
* about them.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
#include <stdio.h>
|
2004-06-07 21:23:12 +00:00
|
|
|
|
2004-12-14 09:11:52 +00:00
|
|
|
#ifndef MAP_FAILED
|
|
|
|
|
#define MAP_FAILED ((void *)-1)
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-07-24 06:29:14 +00:00
|
|
|
#include "imports.h"
|
|
|
|
|
#define None 0
|
2004-06-07 21:23:12 +00:00
|
|
|
|
|
|
|
|
#include "dri_util.h"
|
2004-06-02 22:45:00 +00:00
|
|
|
#include "drm_sarea.h"
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2005-04-13 18:41:33 +00:00
|
|
|
#ifndef GLX_OML_sync_control
|
2007-05-10 15:52:22 -04:00
|
|
|
typedef GLboolean ( * PFNGLXGETMSCRATEOMLPROC) (__DRIdrawable *drawable, int32_t *numerator, int32_t *denominator);
|
2004-05-27 22:49:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
2005-07-26 02:44:01 +00:00
|
|
|
/* This pointer *must* be set by the driver's __driCreateNewScreen funciton!
|
|
|
|
|
*/
|
|
|
|
|
const __DRIinterfaceMethods * dri_interface = NULL;
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
/**
|
|
|
|
|
* This is used in a couple of places that call \c driCreateNewDrawable.
|
|
|
|
|
*/
|
|
|
|
|
static const int empty_attribute_list[1] = { None };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Cached copy of the internal API version used by libGL and the client-side
|
|
|
|
|
* DRI driver.
|
|
|
|
|
*/
|
|
|
|
|
static int api_ver = 0;
|
|
|
|
|
|
|
|
|
|
/* forward declarations */
|
2007-05-11 16:43:20 -04:00
|
|
|
static int driQueryFrameTracking( __DRIdrawable *drawable,
|
2005-09-04 22:55:57 +00:00
|
|
|
int64_t *sbc, int64_t *missedFrames,
|
|
|
|
|
float *lastMissedUsage, float *usage );
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
static void *driCreateNewDrawable(__DRIscreen *screen,
|
|
|
|
|
const __GLcontextModes *modes,
|
2007-05-10 17:14:38 -04:00
|
|
|
__DRIdrawable *pdraw,
|
|
|
|
|
drm_drawable_t hwDrawable,
|
2005-09-04 22:55:57 +00:00
|
|
|
int renderType, const int *attrs);
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
static void driDestroyDrawable(__DRIdrawable *drawable);
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Print message to \c stderr if the \c LIBGL_DEBUG environment variable
|
|
|
|
|
* is set.
|
|
|
|
|
*
|
|
|
|
|
* Is called from the drivers.
|
|
|
|
|
*
|
|
|
|
|
* \param f \c printf like format string.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
__driUtilMessage(const char *f, ...)
|
|
|
|
|
{
|
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
|
|
if (getenv("LIBGL_DEBUG")) {
|
|
|
|
|
fprintf(stderr, "libGL error: \n");
|
|
|
|
|
va_start(args, f);
|
|
|
|
|
vfprintf(stderr, f, args);
|
|
|
|
|
va_end(args);
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/** \name Context (un)binding functions */
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Unbind context.
|
|
|
|
|
*
|
2007-05-10 15:52:22 -04:00
|
|
|
* \param scrn the screen.
|
2004-04-14 12:39:58 +00:00
|
|
|
* \param gc context.
|
|
|
|
|
*
|
|
|
|
|
* \return \c GL_TRUE on success, or \c GL_FALSE on failure.
|
|
|
|
|
*
|
|
|
|
|
* \internal
|
|
|
|
|
* This function calls __DriverAPIRec::UnbindContext, and then decrements
|
|
|
|
|
* __DRIdrawablePrivateRec::refcount which must be non-zero for a successful
|
|
|
|
|
* return.
|
|
|
|
|
*
|
|
|
|
|
* While casting the opaque private pointers associated with the parameters
|
|
|
|
|
* into their respective real types it also assures they are not \c NULL.
|
|
|
|
|
*/
|
2007-05-10 15:52:22 -04:00
|
|
|
static GLboolean driUnbindContext(__DRIcontext *ctx)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
__DRIcontextPrivate *pcp;
|
|
|
|
|
__DRIscreenPrivate *psp;
|
|
|
|
|
__DRIdrawablePrivate *pdp;
|
|
|
|
|
__DRIdrawablePrivate *prp;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Assume error checking is done properly in glXMakeCurrent before
|
2005-07-24 06:29:14 +00:00
|
|
|
** calling driUnbindContext.
|
2004-04-14 12:39:58 +00:00
|
|
|
*/
|
|
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
if (ctx == NULL)
|
|
|
|
|
return GL_FALSE;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2004-04-29 12:23:39 +00:00
|
|
|
pcp = (__DRIcontextPrivate *)ctx->private;
|
2007-05-10 15:52:22 -04:00
|
|
|
psp = (__DRIscreenPrivate *)pcp->driScreenPriv;
|
2007-01-07 08:12:01 -05:00
|
|
|
pdp = (__DRIdrawablePrivate *)pcp->driDrawablePriv;
|
|
|
|
|
prp = (__DRIdrawablePrivate *)pcp->driReadablePriv;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
/* Let driver unbind drawable from context */
|
|
|
|
|
(*psp->DriverAPI.UnbindContext)(pcp);
|
|
|
|
|
|
|
|
|
|
if (pdp->refcount == 0) {
|
|
|
|
|
/* ERROR!!! */
|
|
|
|
|
return GL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pdp->refcount--;
|
|
|
|
|
|
|
|
|
|
if (prp != pdp) {
|
|
|
|
|
if (prp->refcount == 0) {
|
|
|
|
|
/* ERROR!!! */
|
|
|
|
|
return GL_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
prp->refcount--;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX this is disabled so that if we call SwapBuffers on an unbound
|
|
|
|
|
* window we can determine the last context bound to the window and
|
|
|
|
|
* use that context's lock. (BrianP, 2-Dec-2000)
|
|
|
|
|
*/
|
|
|
|
|
#if 0
|
|
|
|
|
/* Unbind the drawable */
|
|
|
|
|
pcp->driDrawablePriv = NULL;
|
|
|
|
|
pdp->driContextPriv = &psp->dummyContextPriv;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This function takes both a read buffer and a draw buffer. This is needed
|
|
|
|
|
* for \c glXMakeCurrentReadSGI or GLX 1.3's \c glXMakeContextCurrent
|
|
|
|
|
* function.
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static GLboolean DoBindContext(__DRIcontext *ctx,
|
|
|
|
|
__DRIdrawable *pdraw,
|
|
|
|
|
__DRIdrawable *pread)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
__DRIdrawablePrivate *pdp;
|
|
|
|
|
__DRIdrawablePrivate *prp;
|
2004-04-29 12:23:39 +00:00
|
|
|
__DRIcontextPrivate * const pcp = ctx->private;
|
2007-05-10 15:52:22 -04:00
|
|
|
__DRIscreenPrivate *psp = pcp->driScreenPriv;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
pdp = (__DRIdrawablePrivate *) pdraw->private;
|
2007-01-07 08:12:01 -05:00
|
|
|
prp = (__DRIdrawablePrivate *) pread->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
/* Bind the drawable to the context */
|
|
|
|
|
pcp->driDrawablePriv = pdp;
|
2006-10-16 20:59:53 +00:00
|
|
|
pcp->driReadablePriv = prp;
|
2004-04-14 12:39:58 +00:00
|
|
|
pdp->driContextPriv = pcp;
|
|
|
|
|
pdp->refcount++;
|
|
|
|
|
if ( pdp != prp ) {
|
|
|
|
|
prp->refcount++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Now that we have a context associated with this drawable, we can
|
|
|
|
|
** initialize the drawable information if has not been done before.
|
|
|
|
|
*/
|
|
|
|
|
if (!pdp->pStamp || *pdp->pStamp != pdp->lastStamp) {
|
|
|
|
|
DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
__driUtilUpdateDrawableInfo(pdp);
|
|
|
|
|
DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-26 07:59:14 -07:00
|
|
|
if ((pdp != prp) && (!prp->pStamp || *prp->pStamp != prp->lastStamp)) {
|
2006-10-16 20:59:53 +00:00
|
|
|
DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
__driUtilUpdateDrawableInfo(prp);
|
|
|
|
|
DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
/* Call device-specific MakeCurrent */
|
|
|
|
|
(*psp->DriverAPI.MakeCurrent)(pcp, pdp, prp);
|
|
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-04-29 12:23:39 +00:00
|
|
|
/**
|
|
|
|
|
* This function takes both a read buffer and a draw buffer. This is needed
|
|
|
|
|
* for \c glXMakeCurrentReadSGI or GLX 1.3's \c glXMakeContextCurrent
|
|
|
|
|
* function.
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static GLboolean driBindContext(__DRIcontext * ctx,
|
|
|
|
|
__DRIdrawable *pdraw,
|
|
|
|
|
__DRIdrawable *pread)
|
2004-04-29 12:23:39 +00:00
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
** Assume error checking is done properly in glXMakeCurrent before
|
|
|
|
|
** calling driBindContext.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
if (ctx == NULL || pdraw == None || pread == None)
|
2004-04-29 12:23:39 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
return DoBindContext( ctx, pdraw, pread );
|
2004-04-29 12:23:39 +00:00
|
|
|
}
|
2004-04-14 12:39:58 +00:00
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/** \name Drawable handling functions */
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update private drawable information.
|
|
|
|
|
*
|
|
|
|
|
* \param pdp pointer to the private drawable information to update.
|
|
|
|
|
*
|
|
|
|
|
* This function basically updates the __DRIdrawablePrivate struct's
|
2005-07-26 02:44:01 +00:00
|
|
|
* cliprect information by calling \c __DRIinterfaceMethods::getDrawableInfo.
|
|
|
|
|
* This is usually called by the DRI_VALIDATE_DRAWABLE_INFO macro which
|
2004-04-14 12:39:58 +00:00
|
|
|
* compares the __DRIdrwablePrivate pStamp and lastStamp values. If
|
|
|
|
|
* the values are different that means we have to update the clipping
|
|
|
|
|
* info.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
__driUtilUpdateDrawableInfo(__DRIdrawablePrivate *pdp)
|
|
|
|
|
{
|
|
|
|
|
__DRIscreenPrivate *psp;
|
|
|
|
|
__DRIcontextPrivate *pcp = pdp->driContextPriv;
|
|
|
|
|
|
2006-10-16 20:59:53 +00:00
|
|
|
if (!pcp
|
|
|
|
|
|| ((pdp != pcp->driDrawablePriv) && (pdp != pcp->driReadablePriv))) {
|
2006-12-01 12:41:43 +00:00
|
|
|
/* ERROR!!!
|
|
|
|
|
* ...but we must ignore it. There can be many contexts bound to a
|
|
|
|
|
* drawable.
|
|
|
|
|
*/
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
psp = pdp->driScreenPriv;
|
|
|
|
|
if (!psp) {
|
|
|
|
|
/* ERROR!!! */
|
2007-02-26 07:57:31 -07:00
|
|
|
_mesa_problem(NULL, "Warning! Possible infinite loop due to bug "
|
2006-12-01 12:41:43 +00:00
|
|
|
"in file %s, line %d\n",
|
|
|
|
|
__FILE__, __LINE__);
|
2004-04-14 12:39:58 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pdp->pClipRects) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp->pClipRects);
|
2007-07-10 10:49:28 +02:00
|
|
|
pdp->pClipRects = NULL;
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pdp->pBackClipRects) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp->pBackClipRects);
|
2007-07-10 10:49:28 +02:00
|
|
|
pdp->pBackClipRects = NULL;
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DRM_SPINUNLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
|
2007-05-10 17:14:38 -04:00
|
|
|
if (! (*dri_interface->getDrawableInfo)(pdp->pdraw,
|
2004-04-14 12:39:58 +00:00
|
|
|
&pdp->index, &pdp->lastStamp,
|
|
|
|
|
&pdp->x, &pdp->y, &pdp->w, &pdp->h,
|
|
|
|
|
&pdp->numClipRects, &pdp->pClipRects,
|
|
|
|
|
&pdp->backX,
|
|
|
|
|
&pdp->backY,
|
|
|
|
|
&pdp->numBackClipRects,
|
|
|
|
|
&pdp->pBackClipRects )) {
|
|
|
|
|
/* Error -- eg the window may have been destroyed. Keep going
|
|
|
|
|
* with no cliprects.
|
|
|
|
|
*/
|
|
|
|
|
pdp->pStamp = &pdp->lastStamp; /* prevent endless loop */
|
|
|
|
|
pdp->numClipRects = 0;
|
|
|
|
|
pdp->pClipRects = NULL;
|
|
|
|
|
pdp->numBackClipRects = 0;
|
|
|
|
|
pdp->pBackClipRects = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
pdp->pStamp = &(psp->pSAREA->drawableTable[pdp->index].stamp);
|
|
|
|
|
|
|
|
|
|
DRM_SPINLOCK(&psp->pSAREA->drawable_lock, psp->drawLockID);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/** \name GLX callbacks */
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Swap buffers.
|
|
|
|
|
*
|
|
|
|
|
* \param drawablePrivate opaque pointer to the per-drawable private info.
|
|
|
|
|
*
|
|
|
|
|
* \internal
|
|
|
|
|
* This function calls __DRIdrawablePrivate::swapBuffers.
|
|
|
|
|
*
|
|
|
|
|
* Is called directly from glXSwapBuffers().
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static void driSwapBuffers(__DRIdrawable *drawable)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2007-01-05 18:19:58 -08:00
|
|
|
drm_clip_rect_t rect;
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
dPriv->swapBuffers(dPriv);
|
2007-01-05 18:19:58 -08:00
|
|
|
|
|
|
|
|
/* Check that we actually have the new damage report method */
|
|
|
|
|
if (api_ver < 20070105 || dri_interface->reportDamage == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Assume it's affecting the whole drawable for now */
|
|
|
|
|
rect.x1 = 0;
|
|
|
|
|
rect.y1 = 0;
|
|
|
|
|
rect.x2 = rect.x1 + dPriv->w;
|
|
|
|
|
rect.y2 = rect.y1 + dPriv->h;
|
|
|
|
|
|
|
|
|
|
/* Report the damage. Currently, all our drivers draw directly to the
|
|
|
|
|
* front buffer, so we report the damage there rather than to the backing
|
|
|
|
|
* store (if any).
|
|
|
|
|
*/
|
2007-05-10 15:52:22 -04:00
|
|
|
(*dri_interface->reportDamage)(dPriv->pdraw, dPriv->x, dPriv->y,
|
2007-01-05 18:19:58 -08:00
|
|
|
&rect, 1, GL_TRUE);
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called directly from a number of higher-level GLX functions.
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static int driGetMSC( __DRIscreen *screen, int64_t *msc )
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIscreenPrivate *sPriv = screen->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
return sPriv->DriverAPI.GetMSC( sPriv, msc );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Called directly from a number of higher-level GLX functions.
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static int driGetSBC(__DRIdrawable *drawable, int64_t *sbc)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
__DRIswapInfo sInfo;
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
status = dPriv->driScreenPriv->DriverAPI.GetSwapInfo( dPriv, & sInfo );
|
|
|
|
|
*sbc = sInfo.swap_count;
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
static int driWaitForSBC(__DRIdrawable *drawable, int64_t target_sbc,
|
|
|
|
|
int64_t * msc, int64_t * sbc)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
return dPriv->driScreenPriv->DriverAPI.WaitForSBC( dPriv, target_sbc,
|
|
|
|
|
msc, sbc );
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
static int driWaitForMSC(__DRIdrawable *drawable, int64_t target_msc,
|
|
|
|
|
int64_t divisor, int64_t remainder,
|
|
|
|
|
int64_t * msc, int64_t * sbc)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
__DRIswapInfo sInfo;
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
status = dPriv->driScreenPriv->DriverAPI.WaitForMSC( dPriv, target_msc,
|
|
|
|
|
divisor, remainder,
|
|
|
|
|
msc );
|
|
|
|
|
|
|
|
|
|
/* GetSwapInfo() may not be provided by the driver if GLX_SGI_video_sync
|
|
|
|
|
* is supported but GLX_OML_sync_control is not. Therefore, don't return
|
|
|
|
|
* an error value if GetSwapInfo() is not implemented.
|
|
|
|
|
*/
|
|
|
|
|
if ( status == 0
|
|
|
|
|
&& dPriv->driScreenPriv->DriverAPI.GetSwapInfo ) {
|
|
|
|
|
status = dPriv->driScreenPriv->DriverAPI.GetSwapInfo( dPriv, & sInfo );
|
|
|
|
|
*sbc = sInfo.swap_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
static int64_t driSwapBuffersMSC(__DRIdrawable *drawable, int64_t target_msc,
|
|
|
|
|
int64_t divisor, int64_t remainder)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
return dPriv->driScreenPriv->DriverAPI.SwapBuffersMSC( dPriv, target_msc,
|
|
|
|
|
divisor,
|
|
|
|
|
remainder );
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-11 16:43:20 -04:00
|
|
|
static void driCopySubBuffer(__DRIdrawable *drawable,
|
2006-03-31 15:48:04 +00:00
|
|
|
int x, int y, int w, int h)
|
|
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *dPriv = drawable->private;
|
2006-03-31 15:48:04 +00:00
|
|
|
dPriv->driScreenPriv->DriverAPI.CopySubBuffer(dPriv, x, y, w, h);
|
|
|
|
|
}
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2007-05-15 15:17:30 -04:00
|
|
|
const __DRIcopySubBufferExtension driCopySubBufferExtension = {
|
|
|
|
|
{ __DRI_COPY_SUB_BUFFER }, driCopySubBuffer
|
|
|
|
|
};
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
/**
|
|
|
|
|
* This is called via __DRIscreenRec's createNewDrawable pointer.
|
|
|
|
|
*/
|
2007-05-10 15:52:22 -04:00
|
|
|
static void *driCreateNewDrawable(__DRIscreen *screen,
|
2004-04-14 12:39:58 +00:00
|
|
|
const __GLcontextModes *modes,
|
|
|
|
|
__DRIdrawable *pdraw,
|
2007-05-10 17:14:38 -04:00
|
|
|
drm_drawable_t hwDrawable,
|
2004-04-14 12:39:58 +00:00
|
|
|
int renderType,
|
|
|
|
|
const int *attrs)
|
|
|
|
|
{
|
|
|
|
|
__DRIscreenPrivate *psp;
|
|
|
|
|
__DRIdrawablePrivate *pdp;
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 22:24:00 +00:00
|
|
|
pdraw->private = NULL;
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
/* Since pbuffers are not yet supported, no drawable attributes are
|
|
|
|
|
* supported either.
|
|
|
|
|
*/
|
|
|
|
|
(void) attrs;
|
|
|
|
|
|
2004-06-07 21:23:12 +00:00
|
|
|
pdp = (__DRIdrawablePrivate *)_mesa_malloc(sizeof(__DRIdrawablePrivate));
|
2004-04-14 12:39:58 +00:00
|
|
|
if (!pdp) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-10 17:14:38 -04:00
|
|
|
pdp->hHWDrawable = hwDrawable;
|
2004-04-14 12:39:58 +00:00
|
|
|
pdp->pdraw = pdraw;
|
|
|
|
|
pdp->refcount = 0;
|
|
|
|
|
pdp->pStamp = NULL;
|
|
|
|
|
pdp->lastStamp = 0;
|
|
|
|
|
pdp->index = 0;
|
|
|
|
|
pdp->x = 0;
|
|
|
|
|
pdp->y = 0;
|
|
|
|
|
pdp->w = 0;
|
|
|
|
|
pdp->h = 0;
|
|
|
|
|
pdp->numClipRects = 0;
|
|
|
|
|
pdp->numBackClipRects = 0;
|
|
|
|
|
pdp->pClipRects = NULL;
|
|
|
|
|
pdp->pBackClipRects = NULL;
|
|
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
psp = (__DRIscreenPrivate *)screen->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
pdp->driScreenPriv = psp;
|
|
|
|
|
pdp->driContextPriv = &psp->dummyContextPriv;
|
|
|
|
|
|
|
|
|
|
if (!(*psp->DriverAPI.CreateBuffer)(psp, pdp, modes,
|
|
|
|
|
renderType == GLX_PIXMAP_BIT)) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp);
|
2004-04-14 12:39:58 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pdraw->private = pdp;
|
|
|
|
|
pdraw->destroyDrawable = driDestroyDrawable;
|
|
|
|
|
pdraw->swapBuffers = driSwapBuffers; /* called by glXSwapBuffers() */
|
|
|
|
|
|
2005-07-24 06:29:14 +00:00
|
|
|
pdraw->getSBC = driGetSBC;
|
|
|
|
|
pdraw->waitForSBC = driWaitForSBC;
|
|
|
|
|
pdraw->waitForMSC = driWaitForMSC;
|
|
|
|
|
pdraw->swapBuffersMSC = driSwapBuffersMSC;
|
|
|
|
|
pdraw->frameTracking = NULL;
|
|
|
|
|
pdraw->queryFrameTracking = driQueryFrameTracking;
|
|
|
|
|
|
|
|
|
|
/* This special default value is replaced with the configured
|
|
|
|
|
* default value when the drawable is first bound to a direct
|
|
|
|
|
* rendering context.
|
|
|
|
|
*/
|
|
|
|
|
pdraw->swap_interval = (unsigned)-1;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
pdp->swapBuffers = psp->DriverAPI.SwapBuffers;
|
|
|
|
|
|
|
|
|
|
return (void *) pdp;
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-04 22:55:57 +00:00
|
|
|
static void
|
2007-05-11 16:43:20 -04:00
|
|
|
driDestroyDrawable(__DRIdrawable *drawable)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate *pdp = drawable->private;
|
2006-03-23 04:13:37 +00:00
|
|
|
__DRIscreenPrivate *psp;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
if (pdp) {
|
2006-03-23 04:13:37 +00:00
|
|
|
psp = pdp->driScreenPriv;
|
2004-04-14 12:39:58 +00:00
|
|
|
(*psp->DriverAPI.DestroyBuffer)(pdp);
|
|
|
|
|
if (pdp->pClipRects) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp->pClipRects);
|
2004-04-14 12:39:58 +00:00
|
|
|
pdp->pClipRects = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (pdp->pBackClipRects) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp->pBackClipRects);
|
2004-04-14 12:39:58 +00:00
|
|
|
pdp->pBackClipRects = NULL;
|
|
|
|
|
}
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pdp);
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/** \name Context handling functions */
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Destroy the per-context private information.
|
|
|
|
|
*
|
|
|
|
|
* \param contextPrivate opaque pointer to the per-drawable private info.
|
|
|
|
|
*
|
|
|
|
|
* \internal
|
|
|
|
|
* This function calls __DriverAPIRec::DestroyContext on \p contextPrivate, calls
|
|
|
|
|
* drmDestroyContext(), and finally frees \p contextPrivate.
|
|
|
|
|
*/
|
2005-09-04 22:55:57 +00:00
|
|
|
static void
|
2007-05-11 16:43:20 -04:00
|
|
|
driDestroyContext(__DRIcontext *context)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIcontextPrivate *pcp = context->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
if (pcp) {
|
|
|
|
|
(*pcp->driScreenPriv->DriverAPI.DestroyContext)(pcp);
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pcp);
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create the per-drawable private driver information.
|
|
|
|
|
*
|
|
|
|
|
* \param dpy The display handle.
|
|
|
|
|
* \param modes Mode used to create the new context.
|
|
|
|
|
* \param render_type Type of rendering target. \c GLX_RGBA is the only
|
|
|
|
|
* type likely to ever be supported for direct-rendering.
|
|
|
|
|
* \param sharedPrivate The shared context dependent methods or \c NULL if
|
|
|
|
|
* non-existent.
|
|
|
|
|
* \param pctx DRI context to receive the context dependent methods.
|
|
|
|
|
*
|
|
|
|
|
* \returns An opaque pointer to the per-context private information on
|
|
|
|
|
* success, or \c NULL on failure.
|
|
|
|
|
*
|
|
|
|
|
* \internal
|
|
|
|
|
* This function allocates and fills a __DRIcontextPrivateRec structure. It
|
|
|
|
|
* performs some device independent initialization and passes all the
|
|
|
|
|
* relevent information to __DriverAPIRec::CreateContext to create the
|
|
|
|
|
* context.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static void *
|
2007-05-10 15:52:22 -04:00
|
|
|
driCreateNewContext(__DRIscreen *screen, const __GLcontextModes *modes,
|
2007-05-10 18:38:49 -04:00
|
|
|
int render_type, void *sharedPrivate,
|
|
|
|
|
drm_context_t hwContext, __DRIcontext *pctx)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
__DRIcontextPrivate *pcp;
|
|
|
|
|
__DRIcontextPrivate *pshare = (__DRIcontextPrivate *) sharedPrivate;
|
|
|
|
|
__DRIscreenPrivate *psp;
|
|
|
|
|
void * const shareCtx = (pshare != NULL) ? pshare->driverPrivate : NULL;
|
|
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
psp = (__DRIscreenPrivate *)screen->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2004-06-07 21:23:12 +00:00
|
|
|
pcp = (__DRIcontextPrivate *)_mesa_malloc(sizeof(__DRIcontextPrivate));
|
2004-04-14 12:39:58 +00:00
|
|
|
if (!pcp) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-10 18:38:49 -04:00
|
|
|
pcp->hHWContext = hwContext;
|
2004-04-14 12:39:58 +00:00
|
|
|
pcp->driScreenPriv = psp;
|
|
|
|
|
pcp->driDrawablePriv = NULL;
|
|
|
|
|
|
|
|
|
|
/* When the first context is created for a screen, initialize a "dummy"
|
|
|
|
|
* context.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!psp->dummyContextPriv.driScreenPriv) {
|
|
|
|
|
psp->dummyContextPriv.hHWContext = psp->pSAREA->dummy_context;
|
|
|
|
|
psp->dummyContextPriv.driScreenPriv = psp;
|
|
|
|
|
psp->dummyContextPriv.driDrawablePriv = NULL;
|
|
|
|
|
psp->dummyContextPriv.driverPrivate = NULL;
|
|
|
|
|
/* No other fields should be used! */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pctx->destroyContext = driDestroyContext;
|
2005-07-24 06:29:14 +00:00
|
|
|
pctx->bindContext = driBindContext;
|
|
|
|
|
pctx->unbindContext = driUnbindContext;
|
2004-04-29 12:23:39 +00:00
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
if ( !(*psp->DriverAPI.CreateContext)(modes, pcp, shareCtx) ) {
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(pcp);
|
2004-04-14 12:39:58 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pcp;
|
|
|
|
|
}
|
|
|
|
|
/*@}*/
|
|
|
|
|
|
2007-05-15 15:17:30 -04:00
|
|
|
|
2007-05-15 12:31:31 -04:00
|
|
|
static const __DRIextension **
|
|
|
|
|
driGetExtensions(__DRIscreen *screen)
|
|
|
|
|
{
|
|
|
|
|
__DRIscreenPrivate *psp = screen->private;
|
|
|
|
|
|
2007-05-15 15:17:30 -04:00
|
|
|
return psp->extensions;
|
2007-05-15 12:31:31 -04:00
|
|
|
}
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/** \name Screen handling functions */
|
|
|
|
|
/*****************************************************************/
|
|
|
|
|
/*@{*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Destroy the per-screen private information.
|
|
|
|
|
*
|
|
|
|
|
* \param dpy the display handle.
|
|
|
|
|
* \param scrn the screen number.
|
|
|
|
|
* \param screenPrivate opaque pointer to the per-screen private information.
|
|
|
|
|
*
|
|
|
|
|
* \internal
|
|
|
|
|
* This function calls __DriverAPIRec::DestroyScreen on \p screenPrivate, calls
|
|
|
|
|
* drmClose(), and finally frees \p screenPrivate.
|
|
|
|
|
*/
|
2007-05-11 16:43:20 -04:00
|
|
|
static void driDestroyScreen(__DRIscreen *screen)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIscreenPrivate *psp = screen->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
if (psp) {
|
|
|
|
|
/* No interaction with the X-server is possible at this point. This
|
|
|
|
|
* routine is called after XCloseDisplay, so there is no protocol
|
|
|
|
|
* stream open to the X-server anymore.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (psp->DriverAPI.DestroyScreen)
|
|
|
|
|
(*psp->DriverAPI.DestroyScreen)(psp);
|
|
|
|
|
|
|
|
|
|
(void)drmUnmap((drmAddress)psp->pSAREA, SAREA_MAX);
|
|
|
|
|
(void)drmUnmap((drmAddress)psp->pFB, psp->fbSize);
|
2006-11-01 14:21:57 +00:00
|
|
|
(void)drmCloseOnce(psp->fd);
|
2006-07-12 17:06:49 +00:00
|
|
|
|
2004-06-07 21:23:12 +00:00
|
|
|
_mesa_free(psp);
|
2004-04-14 12:39:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-05-14 16:58:37 -04:00
|
|
|
* This is the bootstrap function for the driver. libGL supplies all of the
|
|
|
|
|
* requisite information about the system, and the driver initializes itself.
|
|
|
|
|
* This routine also fills in the linked list pointed to by \c driver_modes
|
|
|
|
|
* with the \c __GLcontextModes that the driver can support for windows or
|
|
|
|
|
* pbuffers.
|
2004-04-14 12:39:58 +00:00
|
|
|
*
|
|
|
|
|
* \param scrn Index of the screen
|
|
|
|
|
* \param psc DRI screen data (not driver private)
|
|
|
|
|
* \param modes Linked list of known display modes. This list is, at a
|
|
|
|
|
* minimum, a list of modes based on the current display mode.
|
|
|
|
|
* These roughly match the set of available X11 visuals, but it
|
|
|
|
|
* need not be limited to X11! The calling libGL should create
|
|
|
|
|
* a list that will inform the driver of the current display
|
|
|
|
|
* mode (i.e., color buffer depth, depth buffer depth, etc.).
|
|
|
|
|
* \param ddx_version Version of the 2D DDX. This may not be meaningful for
|
|
|
|
|
* all drivers.
|
|
|
|
|
* \param dri_version Version of the "server-side" DRI.
|
|
|
|
|
* \param drm_version Version of the kernel DRM.
|
|
|
|
|
* \param frame_buffer Data describing the location and layout of the
|
|
|
|
|
* framebuffer.
|
|
|
|
|
* \param pSAREA Pointer the the SAREA.
|
|
|
|
|
* \param fd Device handle for the DRM.
|
|
|
|
|
* \param internal_api_version Version of the internal interface between the
|
|
|
|
|
* driver and libGL.
|
|
|
|
|
* \param driverAPI Driver API functions used by other routines in dri_util.c.
|
2005-07-24 06:29:14 +00:00
|
|
|
*
|
2007-05-14 16:58:37 -04:00
|
|
|
* \note There is no need to check the minimum API version in this
|
|
|
|
|
* function. Since the name of this function is versioned, it is
|
|
|
|
|
* impossible for a loader that is too old to even load this driver.
|
2004-04-14 12:39:58 +00:00
|
|
|
*/
|
2007-05-14 16:58:37 -04:00
|
|
|
PUBLIC
|
|
|
|
|
void * __DRI_CREATE_NEW_SCREEN( int scrn, __DRIscreen *psc,
|
|
|
|
|
const __DRIversion * ddx_version,
|
|
|
|
|
const __DRIversion * dri_version,
|
|
|
|
|
const __DRIversion * drm_version,
|
|
|
|
|
const __DRIframebuffer * frame_buffer,
|
|
|
|
|
drmAddress pSAREA, int fd,
|
|
|
|
|
int internal_api_version,
|
|
|
|
|
const __DRIinterfaceMethods * interface,
|
|
|
|
|
__GLcontextModes ** driver_modes )
|
|
|
|
|
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
__DRIscreenPrivate *psp;
|
2007-05-15 15:17:30 -04:00
|
|
|
static const __DRIextension emptyExtensionList[] = { NULL };
|
2007-05-14 16:58:37 -04:00
|
|
|
dri_interface = interface;
|
2004-04-14 12:39:58 +00:00
|
|
|
api_ver = internal_api_version;
|
|
|
|
|
|
2007-05-14 16:58:37 -04:00
|
|
|
psp = _mesa_malloc(sizeof(*psp));
|
|
|
|
|
if (!psp)
|
2004-04-14 12:39:58 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
psp->psc = psc;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** NOT_DONE: This is used by the X server to detect when the client
|
|
|
|
|
** has died while holding the drawable lock. The client sets the
|
|
|
|
|
** drawable lock to this value.
|
|
|
|
|
*/
|
|
|
|
|
psp->drawLockID = 1;
|
|
|
|
|
|
2007-05-14 16:37:19 -04:00
|
|
|
psp->drm_version = *drm_version;
|
|
|
|
|
psp->ddx_version = *ddx_version;
|
|
|
|
|
psp->dri_version = *dri_version;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
psp->pSAREA = pSAREA;
|
|
|
|
|
|
|
|
|
|
psp->pFB = frame_buffer->base;
|
|
|
|
|
psp->fbSize = frame_buffer->size;
|
|
|
|
|
psp->fbStride = frame_buffer->stride;
|
|
|
|
|
psp->fbWidth = frame_buffer->width;
|
|
|
|
|
psp->fbHeight = frame_buffer->height;
|
|
|
|
|
psp->devPrivSize = frame_buffer->dev_priv_size;
|
|
|
|
|
psp->pDevPriv = frame_buffer->dev_priv;
|
2005-05-05 05:50:19 +00:00
|
|
|
psp->fbBPP = psp->fbStride * 8 / frame_buffer->width;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2007-05-15 15:17:30 -04:00
|
|
|
psp->extensions = emptyExtensionList;
|
2004-04-14 12:39:58 +00:00
|
|
|
psp->fd = fd;
|
2007-05-14 16:58:37 -04:00
|
|
|
psp->myNum = scrn;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
** Do not init dummy context here; actual initialization will be
|
|
|
|
|
** done when the first DRI context is created. Init screen priv ptr
|
|
|
|
|
** to NULL to let CreateContext routine that it needs to be inited.
|
|
|
|
|
*/
|
|
|
|
|
psp->dummyContextPriv.driScreenPriv = NULL;
|
|
|
|
|
|
|
|
|
|
psc->destroyScreen = driDestroyScreen;
|
2007-05-15 12:31:31 -04:00
|
|
|
psc->getExtensions = driGetExtensions;
|
2004-04-14 12:39:58 +00:00
|
|
|
psc->createNewDrawable = driCreateNewDrawable;
|
2004-04-29 12:23:39 +00:00
|
|
|
psc->getMSC = driGetMSC;
|
|
|
|
|
psc->createNewContext = driCreateNewContext;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
2007-05-22 14:08:10 +02:00
|
|
|
if (internal_api_version >= 20070121)
|
|
|
|
|
psc->setTexOffset = psp->DriverAPI.setTexOffset;
|
|
|
|
|
|
2007-05-14 16:58:37 -04:00
|
|
|
*driver_modes = __driDriverInitScreen(psp);
|
|
|
|
|
if (*driver_modes == NULL) {
|
|
|
|
|
_mesa_free(psp);
|
2004-04-14 12:39:58 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return psp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Compare the current GLX API version with a driver supplied required version.
|
|
|
|
|
*
|
|
|
|
|
* The minimum required version is compared with the API version exported by
|
|
|
|
|
* the \c __glXGetInternalVersion function (in libGL.so).
|
|
|
|
|
*
|
|
|
|
|
* \param required_version Minimum required internal GLX API version.
|
|
|
|
|
* \return A tri-value return, as from strcmp is returned. A value less
|
|
|
|
|
* than, equal to, or greater than zero will be returned if the
|
|
|
|
|
* internal GLX API version is less than, equal to, or greater
|
|
|
|
|
* than \c required_version.
|
|
|
|
|
*
|
|
|
|
|
* \sa __glXGetInternalVersion().
|
|
|
|
|
*/
|
2005-02-14 09:27:38 +00:00
|
|
|
int driCompareGLXAPIVersion( GLint required_version )
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
if ( api_ver > required_version ) {
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
else if ( api_ver == required_version ) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2007-05-11 16:43:20 -04:00
|
|
|
driQueryFrameTracking(__DRIdrawable *drawable,
|
|
|
|
|
int64_t * sbc, int64_t * missedFrames,
|
|
|
|
|
float * lastMissedUsage, float * usage)
|
2004-04-14 12:39:58 +00:00
|
|
|
{
|
|
|
|
|
__DRIswapInfo sInfo;
|
|
|
|
|
int status;
|
|
|
|
|
int64_t ust;
|
2007-05-11 16:43:20 -04:00
|
|
|
__DRIdrawablePrivate * dpriv = drawable->private;
|
2004-04-14 12:39:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
status = dpriv->driScreenPriv->DriverAPI.GetSwapInfo( dpriv, & sInfo );
|
|
|
|
|
if ( status == 0 ) {
|
|
|
|
|
*sbc = sInfo.swap_count;
|
|
|
|
|
*missedFrames = sInfo.swap_missed_count;
|
|
|
|
|
*lastMissedUsage = sInfo.swap_missed_usage;
|
|
|
|
|
|
2005-07-26 02:44:01 +00:00
|
|
|
(*dri_interface->getUST)( & ust );
|
2004-04-14 12:39:58 +00:00
|
|
|
*usage = driCalculateSwapUsage( dpriv, sInfo.swap_ust, ust );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Calculate amount of swap interval used between GLX buffer swaps.
|
|
|
|
|
*
|
|
|
|
|
* The usage value, on the range [0,max], is the fraction of total swap
|
|
|
|
|
* interval time used between GLX buffer swaps is calculated.
|
|
|
|
|
*
|
|
|
|
|
* \f$p = t_d / (i * t_r)\f$
|
|
|
|
|
*
|
|
|
|
|
* Where \f$t_d\f$ is the time since the last GLX buffer swap, \f$i\f$ is the
|
|
|
|
|
* swap interval (as set by \c glXSwapIntervalSGI), and \f$t_r\f$ time
|
|
|
|
|
* required for a single vertical refresh period (as returned by \c
|
|
|
|
|
* glXGetMscRateOML).
|
|
|
|
|
*
|
|
|
|
|
* See the documentation for the GLX_MESA_swap_frame_usage extension for more
|
|
|
|
|
* details.
|
|
|
|
|
*
|
|
|
|
|
* \param dPriv Pointer to the private drawable structure.
|
|
|
|
|
* \return If less than a single swap interval time period was required
|
|
|
|
|
* between GLX buffer swaps, a number greater than 0 and less than
|
|
|
|
|
* 1.0 is returned. If exactly one swap interval time period is
|
|
|
|
|
* required, 1.0 is returned, and if more than one is required then
|
|
|
|
|
* a number greater than 1.0 will be returned.
|
|
|
|
|
*
|
|
|
|
|
* \sa glXSwapIntervalSGI glXGetMscRateOML
|
|
|
|
|
*
|
|
|
|
|
* \todo Instead of caching the \c glXGetMscRateOML function pointer, would it
|
|
|
|
|
* be possible to cache the sync rate?
|
|
|
|
|
*/
|
|
|
|
|
float
|
|
|
|
|
driCalculateSwapUsage( __DRIdrawablePrivate *dPriv, int64_t last_swap_ust,
|
|
|
|
|
int64_t current_ust )
|
|
|
|
|
{
|
|
|
|
|
int32_t n;
|
|
|
|
|
int32_t d;
|
|
|
|
|
int interval;
|
|
|
|
|
float usage = 1.0;
|
|
|
|
|
|
|
|
|
|
|
2007-05-10 15:52:22 -04:00
|
|
|
if ( (*dri_interface->getMSCRate)(dPriv->pdraw, &n, &d) ) {
|
2004-04-14 12:39:58 +00:00
|
|
|
interval = (dPriv->pdraw->swap_interval != 0)
|
|
|
|
|
? dPriv->pdraw->swap_interval : 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* We want to calculate
|
|
|
|
|
* (current_UST - last_swap_UST) / (interval * us_per_refresh). We get
|
|
|
|
|
* current_UST by calling __glXGetUST. last_swap_UST is stored in
|
|
|
|
|
* dPriv->swap_ust. interval has already been calculated.
|
|
|
|
|
*
|
|
|
|
|
* The only tricky part is us_per_refresh. us_per_refresh is
|
|
|
|
|
* 1000000 / MSC_rate. We know the MSC_rate is n / d. We can flip it
|
|
|
|
|
* around and say us_per_refresh = 1000000 * d / n. Since this goes in
|
|
|
|
|
* the denominator of the final calculation, we calculate
|
|
|
|
|
* (interval * 1000000 * d) and move n into the numerator.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
usage = (current_ust - last_swap_ust);
|
|
|
|
|
usage *= n;
|
|
|
|
|
usage /= (interval * d);
|
|
|
|
|
usage /= 1000000.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return usage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@}*/
|