2006-11-26 11:13:41 -07:00
|
|
|
/*
|
2011-11-05 07:32:40 -06:00
|
|
|
* Copyright © 2001 Keith Packard
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
2011-11-05 07:32:40 -06:00
|
|
|
* Partly based on code that is Copyright © The XFree86 Project Inc.
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of Keith Packard not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software without
|
|
|
|
* specific, written prior permission. Keith Packard makes no
|
|
|
|
* representations about the suitability of this software for any purpose. It
|
|
|
|
* is provided "as is" without express or implied warranty.
|
|
|
|
*
|
|
|
|
* KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
* EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
* CONSEQUENTIAL 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
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
* This file covers the initialization and teardown of EXA, and has various
|
|
|
|
* functions not responsible for performing rendering, pixmap migration, or
|
|
|
|
* memory management.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_DIX_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "exa_priv.h"
|
|
|
|
#include "exa.h"
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
DevPrivateKeyRec exaScreenPrivateKeyRec;
|
|
|
|
DevPrivateKeyRec exaPixmapPrivateKeyRec;
|
|
|
|
DevPrivateKeyRec exaGCPrivateKeyRec;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
#ifdef MITSHM
|
|
|
|
static ShmFuncs exaShmFuncs = { NULL, NULL };
|
|
|
|
#endif
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
|
|
|
* exaGetPixmapOffset() returns the offset (in bytes) within the framebuffer of
|
|
|
|
* the beginning of the given pixmap.
|
|
|
|
*
|
|
|
|
* Note that drivers are free to, and often do, munge this offset as necessary
|
|
|
|
* for handing to the hardware -- for example, translating it into a different
|
|
|
|
* aperture. This function may need to be extended in the future if we grow
|
|
|
|
* support for having multiple card-accessible offscreen, such as an AGP memory
|
|
|
|
* pool alongside the framebuffer pool.
|
|
|
|
*/
|
|
|
|
unsigned long
|
|
|
|
exaGetPixmapOffset(PixmapPtr pPix)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
ExaScreenPriv(pPix->drawable.pScreen);
|
|
|
|
ExaPixmapPriv(pPix);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return (CARD8 *) pExaPixmap->fb_ptr - pExaScr->info->memoryBase;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
void *
|
|
|
|
exaGetPixmapDriverPrivate(PixmapPtr pPix)
|
|
|
|
{
|
|
|
|
ExaPixmapPriv(pPix);
|
|
|
|
|
|
|
|
return pExaPixmap->driverPriv;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaGetPixmapPitch() returns the pitch (in bytes) of the given pixmap.
|
|
|
|
*
|
|
|
|
* This is a helper to make driver code more obvious, due to the rather obscure
|
|
|
|
* naming of the pitch field in the pixmap.
|
|
|
|
*/
|
|
|
|
unsigned long
|
|
|
|
exaGetPixmapPitch(PixmapPtr pPix)
|
|
|
|
{
|
|
|
|
return pPix->devKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaGetPixmapSize() returns the size in bytes of the given pixmap in video
|
|
|
|
* memory. Only valid when the pixmap is currently in framebuffer.
|
|
|
|
*/
|
|
|
|
unsigned long
|
|
|
|
exaGetPixmapSize(PixmapPtr pPix)
|
|
|
|
{
|
|
|
|
ExaPixmapPrivPtr pExaPixmap;
|
|
|
|
|
|
|
|
pExaPixmap = ExaGetPixmapPriv(pPix);
|
|
|
|
if (pExaPixmap != NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
return pExaPixmap->fb_size;
|
2006-11-26 11:13:41 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaGetDrawablePixmap() returns a backing pixmap for a given drawable.
|
|
|
|
*
|
|
|
|
* @param pDrawable the drawable being requested.
|
|
|
|
*
|
|
|
|
* This function returns the backing pixmap for a drawable, whether it is a
|
|
|
|
* redirected window, unredirected window, or already a pixmap. Note that
|
|
|
|
* coordinate translation is needed when drawing to the backing pixmap of a
|
|
|
|
* redirected window, and the translation coordinates are provided by calling
|
|
|
|
* exaGetOffscreenPixmap() on the drawable.
|
|
|
|
*/
|
|
|
|
PixmapPtr
|
|
|
|
exaGetDrawablePixmap(DrawablePtr pDrawable)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pDrawable->type == DRAWABLE_WINDOW)
|
|
|
|
return pDrawable->pScreen->GetWindowPixmap((WindowPtr) pDrawable);
|
|
|
|
else
|
|
|
|
return (PixmapPtr) pDrawable;
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/**
|
2007-11-24 10:55:21 -07:00
|
|
|
* Sets the offsets to add to coordinates to make them address the same bits in
|
|
|
|
* the backing drawable. These coordinates are nonzero only for redirected
|
|
|
|
* windows.
|
|
|
|
*/
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaGetDrawableDeltas(DrawablePtr pDrawable, PixmapPtr pPixmap, int *xp, int *yp)
|
2007-11-24 10:55:21 -07:00
|
|
|
{
|
|
|
|
#ifdef COMPOSITE
|
|
|
|
if (pDrawable->type == DRAWABLE_WINDOW) {
|
2012-06-10 07:21:05 -06:00
|
|
|
*xp = -pPixmap->screen_x;
|
|
|
|
*yp = -pPixmap->screen_y;
|
|
|
|
return;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*xp = 0;
|
|
|
|
*yp = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaPixmapDirty() marks a pixmap as dirty, allowing for
|
2006-11-26 11:13:41 -07:00
|
|
|
* optimizations in pixmap migration when no changes have occurred.
|
|
|
|
*/
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaPixmapDirty(PixmapPtr pPix, int x1, int y1, int x2, int y2)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2007-11-24 10:55:21 -07:00
|
|
|
BoxRec box;
|
|
|
|
RegionRec region;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
box.x1 = max(x1, 0);
|
|
|
|
box.y1 = max(y1, 0);
|
|
|
|
box.x2 = min(x2, pPix->drawable.width);
|
|
|
|
box.y2 = min(y2, pPix->drawable.height);
|
|
|
|
|
|
|
|
if (box.x1 >= box.x2 || box.y1 >= box.y2)
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2007-11-24 10:55:21 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
RegionInit(®ion, &box, 1);
|
2010-12-21 13:10:44 -07:00
|
|
|
DamageDamageRegion(&pPix->drawable, ®ion);
|
2010-12-05 08:36:02 -07:00
|
|
|
RegionUninit(®ion);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
exaLog2(int val)
|
|
|
|
{
|
|
|
|
int bits;
|
|
|
|
|
|
|
|
if (val <= 0)
|
2012-06-10 07:21:05 -06:00
|
|
|
return 0;
|
2006-11-26 11:13:41 -07:00
|
|
|
for (bits = 0; val != 0; bits++)
|
2012-06-10 07:21:05 -06:00
|
|
|
val >>= 1;
|
2006-11-26 11:13:41 -07:00
|
|
|
return bits - 1;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2008-11-02 08:26:08 -07:00
|
|
|
exaSetAccelBlock(ExaScreenPrivPtr pExaScr, ExaPixmapPrivPtr pExaPixmap,
|
|
|
|
int w, int h, int bpp)
|
|
|
|
{
|
|
|
|
pExaPixmap->accel_blocked = 0;
|
|
|
|
|
|
|
|
if (pExaScr->info->maxPitchPixels) {
|
2010-07-27 13:02:24 -06:00
|
|
|
int max_pitch = pExaScr->info->maxPitchPixels * bits_to_bytes(bpp);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
if (pExaPixmap->fb_pitch > max_pitch)
|
|
|
|
pExaPixmap->accel_blocked |= EXA_RANGE_PITCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pExaScr->info->maxPitchBytes &&
|
|
|
|
pExaPixmap->fb_pitch > pExaScr->info->maxPitchBytes)
|
|
|
|
pExaPixmap->accel_blocked |= EXA_RANGE_PITCH;
|
|
|
|
|
|
|
|
if (w > pExaScr->info->maxX)
|
|
|
|
pExaPixmap->accel_blocked |= EXA_RANGE_WIDTH;
|
|
|
|
|
|
|
|
if (h > pExaScr->info->maxY)
|
|
|
|
pExaPixmap->accel_blocked |= EXA_RANGE_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
void
|
2008-11-02 08:26:08 -07:00
|
|
|
exaSetFbPitch(ExaScreenPrivPtr pExaScr, ExaPixmapPrivPtr pExaPixmap,
|
|
|
|
int w, int h, int bpp)
|
|
|
|
{
|
|
|
|
if (pExaScr->info->flags & EXA_OFFSCREEN_ALIGN_POT && w != 1)
|
2010-07-27 13:02:24 -06:00
|
|
|
pExaPixmap->fb_pitch = bits_to_bytes((1 << (exaLog2(w - 1) + 1)) * bpp);
|
2008-11-02 08:26:08 -07:00
|
|
|
else
|
2010-07-27 13:02:24 -06:00
|
|
|
pExaPixmap->fb_pitch = bits_to_bytes(w * bpp);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
pExaPixmap->fb_pitch = EXA_ALIGN(pExaPixmap->fb_pitch,
|
|
|
|
pExaScr->info->pixmapPitchAlign);
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
2010-07-27 13:02:24 -06:00
|
|
|
* Returns TRUE if the pixmap is not movable. This is the case where it's a
|
|
|
|
* pixmap which has no private (almost always bad) or it's a scratch pixmap created by
|
|
|
|
* some X Server internal component (the score says it's pinned).
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
exaPixmapIsPinned(PixmapPtr pPix)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
ExaPixmapPriv(pPix);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pExaPixmap == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
EXA_FatalErrorDebugWithRet(("EXA bug: exaPixmapIsPinned was called on a non-exa pixmap.\n"), TRUE);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
return pExaPixmap->score == EXA_PIXMAP_SCORE_PINNED;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
2010-07-27 13:02:24 -06:00
|
|
|
* exaPixmapHasGpuCopy() is used to determine if a pixmap is in offscreen
|
2006-11-26 11:13:41 -07:00
|
|
|
* memory, meaning that acceleration could probably be done to it, and that it
|
|
|
|
* will need to be wrapped by PrepareAccess()/FinishAccess() when accessing it
|
|
|
|
* with the CPU.
|
|
|
|
*
|
|
|
|
* Note that except for UploadToScreen()/DownloadFromScreen() (which explicitly
|
|
|
|
* deal with moving pixmaps in and out of system memory), EXA will give drivers
|
2010-07-27 13:02:24 -06:00
|
|
|
* pixmaps as arguments for which exaPixmapHasGpuCopy() is TRUE.
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
* @return TRUE if the given drawable is in framebuffer memory.
|
|
|
|
*/
|
|
|
|
Bool
|
2010-07-27 13:02:24 -06:00
|
|
|
exaPixmapHasGpuCopy(PixmapPtr pPixmap)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
ScreenPtr pScreen = pPixmap->drawable.pScreen;
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
return (*pExaScr->pixmap_has_gpu_copy) (pPixmap);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-07-27 13:02:24 -06:00
|
|
|
* exaDrawableIsOffscreen() is a convenience wrapper for exaPixmapHasGpuCopy().
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDrawableIsOffscreen(DrawablePtr pDrawable)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
return exaPixmapHasGpuCopy(exaGetDrawablePixmap(pDrawable));
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the pixmap which backs a drawable, and the offsets to add to
|
|
|
|
* coordinates to make them address the same bits in the backing drawable.
|
|
|
|
*/
|
|
|
|
PixmapPtr
|
2012-06-10 07:21:05 -06:00
|
|
|
exaGetOffscreenPixmap(DrawablePtr pDrawable, int *xp, int *yp)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
PixmapPtr pPixmap = exaGetDrawablePixmap(pDrawable);
|
2007-11-24 10:55:21 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
exaGetDrawableDeltas(pDrawable, pPixmap, xp, yp);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (exaPixmapHasGpuCopy(pPixmap))
|
|
|
|
return pPixmap;
|
2006-11-26 11:13:41 -07:00
|
|
|
else
|
2012-06-10 07:21:05 -06:00
|
|
|
return NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/**
|
|
|
|
* Returns TRUE if the pixmap GPU copy is being accessed.
|
|
|
|
*/
|
|
|
|
Bool
|
|
|
|
ExaDoPrepareAccess(PixmapPtr pPixmap, int index)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
ScreenPtr pScreen = pPixmap->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
|
|
|
ExaScreenPriv(pScreen);
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaPixmapPriv(pPixmap);
|
|
|
|
Bool has_gpu_copy, ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pExaPixmap == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
EXA_FatalErrorDebugWithRet(("EXA bug: ExaDoPrepareAccess was called on a non-exa pixmap.\n"), FALSE);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* Handle repeated / nested calls. */
|
|
|
|
for (i = 0; i < EXA_NUM_PREPARE_INDICES; i++) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pExaScr->access[i].pixmap == pPixmap) {
|
|
|
|
pExaScr->access[i].count++;
|
|
|
|
return pExaScr->access[i].retval;
|
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* If slot for this index is taken, find an empty slot */
|
|
|
|
if (pExaScr->access[index].pixmap) {
|
2012-06-10 07:21:05 -06:00
|
|
|
for (index = EXA_NUM_PREPARE_INDICES - 1; index >= 0; index--)
|
|
|
|
if (!pExaScr->access[index].pixmap)
|
|
|
|
break;
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Access to this pixmap hasn't been prepared yet, so data pointer should be NULL. */
|
|
|
|
if (pPixmap->devPrivate.ptr != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
EXA_FatalErrorDebug(("EXA bug: pPixmap->devPrivate.ptr was %p, but should have been NULL.\n", pPixmap->devPrivate.ptr));
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
has_gpu_copy = exaPixmapHasGpuCopy(pPixmap);
|
|
|
|
|
|
|
|
if (has_gpu_copy && pExaPixmap->fb_ptr) {
|
2012-06-10 07:21:05 -06:00
|
|
|
pPixmap->devPrivate.ptr = pExaPixmap->fb_ptr;
|
|
|
|
ret = TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pPixmap->devPrivate.ptr = pExaPixmap->sys_ptr;
|
|
|
|
ret = FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store so we can handle repeated / nested calls. */
|
|
|
|
pExaScr->access[index].pixmap = pPixmap;
|
|
|
|
pExaScr->access[index].count = 1;
|
|
|
|
|
|
|
|
if (!has_gpu_copy)
|
2012-06-10 07:21:05 -06:00
|
|
|
goto out;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
exaWaitSync(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
if (pExaScr->info->PrepareAccess == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
goto out;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (index >= EXA_PREPARE_AUX_DEST &&
|
2012-06-10 07:21:05 -06:00
|
|
|
!(pExaScr->info->flags & EXA_SUPPORTS_PREPARE_AUX)) {
|
|
|
|
if (pExaPixmap->score == EXA_PIXMAP_SCORE_PINNED)
|
|
|
|
FatalError("Unsupported AUX indices used on a pinned pixmap.\n");
|
|
|
|
exaMoveOutPixmap(pPixmap);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!(*pExaScr->info->PrepareAccess) (pPixmap, index)) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pExaPixmap->score == EXA_PIXMAP_SCORE_PINNED &&
|
|
|
|
!(pExaScr->info->flags & EXA_MIXED_PIXMAPS))
|
|
|
|
FatalError("Driver failed PrepareAccess on a pinned pixmap.\n");
|
|
|
|
exaMoveOutPixmap(pPixmap);
|
|
|
|
ret = FALSE;
|
|
|
|
goto out;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ret = TRUE;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
out:
|
2010-07-27 13:02:24 -06:00
|
|
|
pExaScr->access[index].retval = ret;
|
|
|
|
return ret;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaPrepareAccess() is EXA's wrapper for the driver's PrepareAccess() handler.
|
|
|
|
*
|
|
|
|
* It deals with waiting for synchronization with the card, determining if
|
|
|
|
* PrepareAccess() is necessary, and working around PrepareAccess() failure.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
exaPrepareAccess(DrawablePtr pDrawable, int index)
|
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
PixmapPtr pPixmap = exaGetDrawablePixmap(pDrawable);
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pDrawable->pScreen);
|
|
|
|
|
|
|
|
if (pExaScr->prepare_access_reg)
|
2012-06-10 07:21:05 -06:00
|
|
|
pExaScr->prepare_access_reg(pPixmap, index, NULL);
|
2010-07-27 13:02:24 -06:00
|
|
|
else
|
2012-06-10 07:21:05 -06:00
|
|
|
(void) ExaDoPrepareAccess(pPixmap, index);
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
|
|
|
* exaFinishAccess() is EXA's wrapper for the driver's FinishAccess() handler.
|
|
|
|
*
|
2007-11-24 10:55:21 -07:00
|
|
|
* It deals with calling the driver's FinishAccess() only if necessary.
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
exaFinishAccess(DrawablePtr pDrawable, int index)
|
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
ScreenPtr pScreen = pDrawable->pScreen;
|
|
|
|
|
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
PixmapPtr pPixmap = exaGetDrawablePixmap(pDrawable);
|
|
|
|
|
|
|
|
ExaPixmapPriv(pPixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
int i;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pExaPixmap == NULL)
|
2012-06-10 07:21:05 -06:00
|
|
|
EXA_FatalErrorDebugWithRet(("EXA bug: exaFinishAccesss was called on a non-exa pixmap.\n"),);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
/* Handle repeated / nested calls. */
|
|
|
|
for (i = 0; i < EXA_NUM_PREPARE_INDICES; i++) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pExaScr->access[i].pixmap == pPixmap) {
|
|
|
|
if (--pExaScr->access[i].count > 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* Catch unbalanced Prepare/FinishAccess calls. */
|
|
|
|
if (i == EXA_NUM_PREPARE_INDICES)
|
2012-06-10 07:21:05 -06:00
|
|
|
EXA_FatalErrorDebugWithRet(("EXA bug: FinishAccess called without PrepareAccess for pixmap 0x%p.\n", pPixmap),);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
pExaScr->access[i].pixmap = NULL;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* We always hide the devPrivate.ptr. */
|
|
|
|
pPixmap->devPrivate.ptr = NULL;
|
|
|
|
|
2011-04-02 10:08:38 -06:00
|
|
|
/* Only call FinishAccess if PrepareAccess was called and succeeded. */
|
|
|
|
if (!pExaScr->info->FinishAccess || !pExaScr->access[i].retval)
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (i >= EXA_PREPARE_AUX_DEST &&
|
2012-06-10 07:21:05 -06:00
|
|
|
!(pExaScr->info->flags & EXA_SUPPORTS_PREPARE_AUX)) {
|
|
|
|
ErrorF("EXA bug: Trying to call driver FinishAccess hook with "
|
|
|
|
"unsupported index EXA_PREPARE_AUX*\n");
|
|
|
|
return;
|
2009-09-06 13:44:18 -06:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
(*pExaScr->info->FinishAccess) (pPixmap, i);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
/**
|
|
|
|
* Helper for things common to all schemes when a pixmap is destroyed
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
exaDestroyPixmap(PixmapPtr pPixmap)
|
|
|
|
{
|
|
|
|
ExaScreenPriv(pPixmap->drawable.pScreen);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Finish access if it was prepared (e.g. pixmap created during
|
|
|
|
* software fallback)
|
|
|
|
*/
|
|
|
|
for (i = 0; i < EXA_NUM_PREPARE_INDICES; i++) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pExaScr->access[i].pixmap == pPixmap) {
|
|
|
|
exaFinishAccess(&pPixmap->drawable, i);
|
|
|
|
pExaScr->access[i].pixmap = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2010-12-05 08:36:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
2010-07-27 13:02:24 -06:00
|
|
|
* Here begins EXA's GC code.
|
|
|
|
* Do not ever access the fb/mi layer directly.
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaValidateGC(GCPtr pGC, unsigned long changes, DrawablePtr pDrawable);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDestroyGC(GCPtr pGC);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaChangeGC(GCPtr pGC, unsigned long mask);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaCopyGC(GCPtr pGCSrc, unsigned long mask, GCPtr pGCDst);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaChangeClip(GCPtr pGC, int type, pointer pvalue, int nrects);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaCopyClip(GCPtr pGCDst, GCPtr pGCSrc);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaCopyClip(GCPtr pGCDst, GCPtr pGCSrc);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDestroyClip(GCPtr pGC);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
const GCFuncs exaGCFuncs = {
|
|
|
|
exaValidateGC,
|
|
|
|
exaChangeGC,
|
|
|
|
exaCopyGC,
|
|
|
|
exaDestroyGC,
|
|
|
|
exaChangeClip,
|
|
|
|
exaDestroyClip,
|
|
|
|
exaCopyClip
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaValidateGC(GCPtr pGC, unsigned long changes, DrawablePtr pDrawable)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
/* fbValidateGC will do direct access to pixmaps if the tiling has changed.
|
2010-07-27 13:02:24 -06:00
|
|
|
* Do a few smart things so fbValidateGC can do it's work.
|
2006-11-26 11:13:41 -07:00
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
ScreenPtr pScreen = pDrawable->pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
PixmapPtr pTile = NULL;
|
|
|
|
Bool finish_current_tile = FALSE;
|
|
|
|
|
|
|
|
/* Either of these conditions is enough to trigger access to a tile pixmap. */
|
|
|
|
/* With pGC->tileIsPixel == 1, you run the risk of dereferencing an invalid tile pixmap pointer. */
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pGC->fillStyle == FillTiled ||
|
|
|
|
((changes & GCTile) && !pGC->tileIsPixel)) {
|
|
|
|
pTile = pGC->tile.pixmap;
|
|
|
|
|
|
|
|
/* Sometimes tile pixmaps are swapped, you need access to:
|
|
|
|
* - The current tile if it depth matches.
|
|
|
|
* - Or the rotated tile if that one matches depth and !(changes & GCTile).
|
|
|
|
* - Or the current tile pixmap and a newly created one.
|
|
|
|
*/
|
|
|
|
if (pTile && pTile->drawable.depth != pDrawable->depth &&
|
|
|
|
!(changes & GCTile)) {
|
|
|
|
PixmapPtr pRotatedTile = fbGetRotatedPixmap(pGC);
|
|
|
|
|
|
|
|
if (pRotatedTile &&
|
|
|
|
pRotatedTile->drawable.depth == pDrawable->depth)
|
|
|
|
pTile = pRotatedTile;
|
|
|
|
else
|
|
|
|
finish_current_tile = TRUE; /* CreatePixmap will be called. */
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pGC->stipple)
|
|
|
|
exaPrepareAccess(&pGC->stipple->drawable, EXA_PREPARE_MASK);
|
|
|
|
if (pTile)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaPrepareAccess(&pTile->drawable, EXA_PREPARE_SRC);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
/* Calls to Create/DestroyPixmap have to be identified as special. */
|
|
|
|
pExaScr->fallback_counter++;
|
|
|
|
swap(pExaGC, pGC, funcs);
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pGC->funcs->ValidateGC) (pGC, changes, pDrawable);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
pExaScr->fallback_counter--;
|
|
|
|
|
|
|
|
if (pTile)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaFinishAccess(&pTile->drawable, EXA_PREPARE_SRC);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (finish_current_tile && pGC->tile.pixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaFinishAccess(&pGC->tile.pixmap->drawable, EXA_PREPARE_AUX_DEST);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pGC->stipple)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaFinishAccess(&pGC->stipple->drawable, EXA_PREPARE_MASK);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
/* Is exaPrepareAccessGC() needed? */
|
|
|
|
static void
|
|
|
|
exaDestroyGC(GCPtr pGC)
|
|
|
|
{
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pGC->funcs->DestroyGC) (pGC);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaGC, pGC, funcs);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaChangeGC(GCPtr pGC, unsigned long mask)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
(*pGC->funcs->ChangeGC) (pGC, mask);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaCopyGC(GCPtr pGCSrc, unsigned long mask, GCPtr pGCDst)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ExaGCPriv(pGCDst);
|
|
|
|
swap(pExaGC, pGCDst, funcs);
|
|
|
|
(*pGCDst->funcs->CopyGC) (pGCSrc, mask, pGCDst);
|
|
|
|
swap(pExaGC, pGCDst, funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaChangeClip(GCPtr pGC, int type, pointer pvalue, int nrects)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
(*pGC->funcs->ChangeClip) (pGC, type, pvalue, nrects);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
exaCopyClip(GCPtr pGCDst, GCPtr pGCSrc)
|
|
|
|
{
|
|
|
|
ExaGCPriv(pGCDst);
|
|
|
|
swap(pExaGC, pGCDst, funcs);
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pGCDst->funcs->CopyClip) (pGCDst, pGCSrc);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaGC, pGCDst, funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
exaDestroyClip(GCPtr pGC)
|
|
|
|
{
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
swap(pExaGC, pGC, funcs);
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pGC->funcs->DestroyClip) (pGC);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaGC, pGC, funcs);
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* exaCreateGC makes a new GC and hooks up its funcs handler, so that
|
|
|
|
* exaValidateGC() will get called.
|
|
|
|
*/
|
|
|
|
static int
|
2012-06-10 07:21:05 -06:00
|
|
|
exaCreateGC(GCPtr pGC)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
ScreenPtr pScreen = pGC->pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
ExaGCPriv(pGC);
|
|
|
|
Bool ret;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaScr, pScreen, CreateGC);
|
|
|
|
if ((ret = (*pScreen->CreateGC) (pGC))) {
|
2012-06-10 07:21:05 -06:00
|
|
|
wrap(pExaGC, pGC, funcs, (GCFuncs *) & exaGCFuncs);
|
|
|
|
wrap(pExaGC, pGC, ops, (GCOps *) & exaOps);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
swap(pExaScr, pScreen, CreateGC);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
return ret;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
static Bool
|
|
|
|
exaChangeWindowAttributes(WindowPtr pWin, unsigned long mask)
|
2008-11-02 08:26:08 -07:00
|
|
|
{
|
2009-09-06 13:44:18 -06:00
|
|
|
Bool ret;
|
2010-07-27 13:02:24 -06:00
|
|
|
ScreenPtr pScreen = pWin->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((mask & CWBackPixmap) && pWin->backgroundState == BackgroundPixmap)
|
|
|
|
exaPrepareAccess(&pWin->background.pixmap->drawable, EXA_PREPARE_SRC);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if ((mask & CWBorderPixmap) && pWin->borderIsPixel == FALSE)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaPrepareAccess(&pWin->border.pixmap->drawable, EXA_PREPARE_MASK);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
pExaScr->fallback_counter++;
|
|
|
|
swap(pExaScr, pScreen, ChangeWindowAttributes);
|
|
|
|
ret = pScreen->ChangeWindowAttributes(pWin, mask);
|
|
|
|
swap(pExaScr, pScreen, ChangeWindowAttributes);
|
|
|
|
pExaScr->fallback_counter--;
|
2008-11-02 08:26:08 -07:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((mask & CWBackPixmap) && pWin->backgroundState == BackgroundPixmap)
|
|
|
|
exaFinishAccess(&pWin->background.pixmap->drawable, EXA_PREPARE_SRC);
|
2010-07-27 13:02:24 -06:00
|
|
|
if ((mask & CWBorderPixmap) && pWin->borderIsPixel == FALSE)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaFinishAccess(&pWin->border.pixmap->drawable, EXA_PREPARE_MASK);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static RegionPtr
|
|
|
|
exaBitmapToRegion(PixmapPtr pPix)
|
|
|
|
{
|
2010-07-27 13:02:24 -06:00
|
|
|
RegionPtr ret;
|
|
|
|
ScreenPtr pScreen = pPix->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
exaPrepareAccess(&pPix->drawable, EXA_PREPARE_SRC);
|
|
|
|
swap(pExaScr, pScreen, BitmapToRegion);
|
2012-06-10 07:21:05 -06:00
|
|
|
ret = (*pScreen->BitmapToRegion) (pPix);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaScr, pScreen, BitmapToRegion);
|
|
|
|
exaFinishAccess(&pPix->drawable, EXA_PREPARE_SRC);
|
|
|
|
|
|
|
|
return ret;
|
2008-11-02 08:26:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static Bool
|
|
|
|
exaCreateScreenResources(ScreenPtr pScreen)
|
|
|
|
{
|
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
PixmapPtr pScreenPixmap;
|
|
|
|
Bool b;
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaScr, pScreen, CreateScreenResources);
|
2008-11-02 08:26:08 -07:00
|
|
|
b = pScreen->CreateScreenResources(pScreen);
|
2010-07-27 13:02:24 -06:00
|
|
|
swap(pExaScr, pScreen, CreateScreenResources);
|
2008-11-02 08:26:08 -07:00
|
|
|
|
|
|
|
if (!b)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
pScreenPixmap = pScreen->GetScreenPixmap(pScreen);
|
|
|
|
|
|
|
|
if (pScreenPixmap) {
|
|
|
|
ExaPixmapPriv(pScreenPixmap);
|
|
|
|
|
|
|
|
exaSetAccelBlock(pExaScr, pExaPixmap,
|
|
|
|
pScreenPixmap->drawable.width,
|
|
|
|
pScreenPixmap->drawable.height,
|
|
|
|
pScreenPixmap->drawable.bitsPerPixel);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
static void
|
|
|
|
ExaBlockHandler(int screenNum, pointer blockData, pointer pTimeout,
|
2012-06-10 07:21:05 -06:00
|
|
|
pointer pReadmask)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ScreenPtr pScreen = screenInfo.screens[screenNum];
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
/* Move any deferred results from a software fallback to the driver pixmap */
|
|
|
|
if (pExaScr->deferred_mixed_pixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaMoveInPixmap_mixed(pExaScr->deferred_mixed_pixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
unwrap(pExaScr, pScreen, BlockHandler);
|
|
|
|
(*pScreen->BlockHandler) (screenNum, blockData, pTimeout, pReadmask);
|
|
|
|
wrap(pExaScr, pScreen, BlockHandler, ExaBlockHandler);
|
|
|
|
|
|
|
|
/* The rest only applies to classic EXA */
|
|
|
|
if (pExaScr->info->flags & EXA_HANDLES_PIXMAPS)
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
/* Try and keep the offscreen memory area tidy every now and then (at most
|
|
|
|
* once per second) when the server has been idle for at least 100ms.
|
|
|
|
*/
|
|
|
|
if (pExaScr->numOffscreenAvailable > 1) {
|
2012-06-10 07:21:05 -06:00
|
|
|
CARD32 now = GetTimeInMillis();
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pExaScr->nextDefragment = now +
|
|
|
|
max(100, (INT32) (pExaScr->lastDefragment + 1000 - now));
|
|
|
|
AdjustWaitForDelay(pTimeout, pExaScr->nextDefragment - now);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ExaWakeupHandler(int screenNum, pointer wakeupData, unsigned long result,
|
2012-06-10 07:21:05 -06:00
|
|
|
pointer pReadmask)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ScreenPtr pScreen = screenInfo.screens[screenNum];
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
unwrap(pExaScr, pScreen, WakeupHandler);
|
|
|
|
(*pScreen->WakeupHandler) (screenNum, wakeupData, result, pReadmask);
|
|
|
|
wrap(pExaScr, pScreen, WakeupHandler, ExaWakeupHandler);
|
|
|
|
|
|
|
|
if (result == 0 && pExaScr->numOffscreenAvailable > 1) {
|
2012-06-10 07:21:05 -06:00
|
|
|
CARD32 now = GetTimeInMillis();
|
2010-07-27 13:02:24 -06:00
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if ((int) (now - pExaScr->nextDefragment) > 0) {
|
|
|
|
ExaOffscreenDefragment(pScreen);
|
|
|
|
pExaScr->lastDefragment = now;
|
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/**
|
|
|
|
* exaCloseScreen() unwraps its wrapped screen functions and tears down EXA's
|
|
|
|
* screen private, before calling down to the next CloseSccreen.
|
|
|
|
*/
|
|
|
|
static Bool
|
|
|
|
exaCloseScreen(int i, ScreenPtr pScreen)
|
|
|
|
{
|
|
|
|
ExaScreenPriv(pScreen);
|
2012-06-10 07:21:05 -06:00
|
|
|
PictureScreenPtr ps = GetPictureScreenIfSet(pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if (ps->Glyphs == exaGlyphs)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaGlyphsFini(pScreen);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pScreen->BlockHandler == ExaBlockHandler)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, pScreen, BlockHandler);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pScreen->WakeupHandler == ExaWakeupHandler)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, pScreen, WakeupHandler);
|
2010-07-27 13:02:24 -06:00
|
|
|
unwrap(pExaScr, pScreen, CreateGC);
|
|
|
|
unwrap(pExaScr, pScreen, CloseScreen);
|
|
|
|
unwrap(pExaScr, pScreen, GetImage);
|
|
|
|
unwrap(pExaScr, pScreen, GetSpans);
|
|
|
|
if (pExaScr->SavedCreatePixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, pScreen, CreatePixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pExaScr->SavedDestroyPixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, pScreen, DestroyPixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
if (pExaScr->SavedModifyPixmapHeader)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, pScreen, ModifyPixmapHeader);
|
2010-07-27 13:02:24 -06:00
|
|
|
unwrap(pExaScr, pScreen, CopyWindow);
|
|
|
|
unwrap(pExaScr, pScreen, ChangeWindowAttributes);
|
|
|
|
unwrap(pExaScr, pScreen, BitmapToRegion);
|
|
|
|
unwrap(pExaScr, pScreen, CreateScreenResources);
|
2010-12-05 08:36:02 -07:00
|
|
|
unwrap(pExaScr, ps, Composite);
|
|
|
|
if (pExaScr->SavedGlyphs)
|
2012-06-10 07:21:05 -06:00
|
|
|
unwrap(pExaScr, ps, Glyphs);
|
2010-12-05 08:36:02 -07:00
|
|
|
unwrap(pExaScr, ps, Trapezoids);
|
|
|
|
unwrap(pExaScr, ps, Triangles);
|
|
|
|
unwrap(pExaScr, ps, AddTraps);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
free(pExaScr);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
return (*pScreen->CloseScreen) (i, pScreen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function allocates a driver structure for EXA drivers to fill in. By
|
|
|
|
* having EXA allocate the structure, the driver structure can be extended
|
|
|
|
* without breaking ABI between EXA and the drivers. The driver's
|
|
|
|
* responsibility is to check beforehand that the EXA module has a matching
|
|
|
|
* major number and sufficient minor. Drivers are responsible for freeing the
|
2010-12-05 08:36:02 -07:00
|
|
|
* driver structure using free().
|
2006-11-26 11:13:41 -07:00
|
|
|
*
|
|
|
|
* @return a newly allocated, zero-filled driver structure
|
|
|
|
*/
|
|
|
|
ExaDriverPtr
|
|
|
|
exaDriverAlloc(void)
|
|
|
|
{
|
2010-12-05 08:36:02 -07:00
|
|
|
return calloc(1, sizeof(ExaDriverRec));
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param pScreen screen being initialized
|
|
|
|
* @param pScreenInfo EXA driver record
|
|
|
|
*
|
|
|
|
* exaDriverInit sets up EXA given a driver record filled in by the driver.
|
|
|
|
* pScreenInfo should have been allocated by exaDriverAlloc(). See the
|
|
|
|
* comments in _ExaDriver for what must be filled in and what is optional.
|
|
|
|
*
|
|
|
|
* @return TRUE if EXA was successfully initialized.
|
|
|
|
*/
|
|
|
|
Bool
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDriverInit(ScreenPtr pScreen, ExaDriverPtr pScreenInfo)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
ExaScreenPrivPtr pExaScr;
|
|
|
|
PictureScreenPtr ps;
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
if (!pScreenInfo)
|
2012-06-10 07:21:05 -06:00
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
if (pScreenInfo->exa_major != EXA_VERSION_MAJOR ||
|
2012-06-10 07:21:05 -06:00
|
|
|
pScreenInfo->exa_minor > EXA_VERSION_MINOR) {
|
|
|
|
LogMessage(X_ERROR, "EXA(%d): driver's EXA version requirements "
|
|
|
|
"(%d.%d) are incompatible with EXA version (%d.%d)\n",
|
|
|
|
pScreen->myNum,
|
|
|
|
pScreenInfo->exa_major, pScreenInfo->exa_minor,
|
|
|
|
EXA_VERSION_MAJOR, EXA_VERSION_MINOR);
|
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (!pScreenInfo->CreatePixmap && !pScreenInfo->CreatePixmap2) {
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!pScreenInfo->memoryBase) {
|
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::memoryBase "
|
|
|
|
"must be non-zero\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pScreenInfo->memorySize) {
|
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::memorySize must be "
|
|
|
|
"non-zero\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pScreenInfo->offScreenBase > pScreenInfo->memorySize) {
|
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::offScreenBase must "
|
|
|
|
"be <= ExaDriverRec::memorySize\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pScreenInfo->PrepareSolid) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::PrepareSolid must be "
|
|
|
|
"non-NULL\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pScreenInfo->PrepareCopy) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::PrepareCopy must be "
|
|
|
|
"non-NULL\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pScreenInfo->WaitMarker) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_ERROR, "EXA(%d): ExaDriverRec::WaitMarker must be "
|
|
|
|
"non-NULL\n", pScreen->myNum);
|
|
|
|
return FALSE;
|
2007-11-24 10:55:21 -07:00
|
|
|
}
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
/* If the driver doesn't set any max pitch values, we'll just assume
|
|
|
|
* that there's a limitation by pixels, and that it's the same as
|
|
|
|
* maxX.
|
|
|
|
*
|
|
|
|
* We want maxPitchPixels or maxPitchBytes to be set so we can check
|
|
|
|
* pixmaps against the max pitch in exaCreatePixmap() -- it matters
|
|
|
|
* whether a pixmap is rejected because of its pitch or
|
|
|
|
* because of its width.
|
|
|
|
*/
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!pScreenInfo->maxPitchPixels && !pScreenInfo->maxPitchBytes) {
|
2008-11-02 08:26:08 -07:00
|
|
|
pScreenInfo->maxPitchPixels = pScreenInfo->maxX;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ps = GetPictureScreenIfSet(pScreen);
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
if (!dixRegisterPrivateKey(&exaScreenPrivateKeyRec, PRIVATE_SCREEN, 0)) {
|
|
|
|
LogMessage(X_WARNING, "EXA(%d): Failed to register screen private\n",
|
2012-06-10 07:21:05 -06:00
|
|
|
pScreen->myNum);
|
|
|
|
return FALSE;
|
2010-12-05 08:36:02 -07:00
|
|
|
}
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
pExaScr = calloc(sizeof(ExaScreenPrivRec), 1);
|
2006-11-26 11:13:41 -07:00
|
|
|
if (!pExaScr) {
|
|
|
|
LogMessage(X_WARNING, "EXA(%d): Failed to allocate screen private\n",
|
2012-06-10 07:21:05 -06:00
|
|
|
pScreen->myNum);
|
|
|
|
return FALSE;
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pExaScr->info = pScreenInfo;
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
dixSetPrivate(&pScreen->devPrivates, exaScreenPrivateKey, pExaScr);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
pExaScr->migration = ExaMigrationAlways;
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
exaDDXDriverInit(pScreen);
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
if (!dixRegisterPrivateKey
|
|
|
|
(&exaGCPrivateKeyRec, PRIVATE_GC, sizeof(ExaGCPrivRec))) {
|
|
|
|
LogMessage(X_WARNING, "EXA(%d): Failed to allocate GC private\n",
|
|
|
|
pScreen->myNum);
|
|
|
|
return FALSE;
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
* Replace various fb screen functions
|
|
|
|
*/
|
2010-07-27 13:02:24 -06:00
|
|
|
if ((pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS) &&
|
2012-06-10 07:21:05 -06:00
|
|
|
(!(pExaScr->info->flags & EXA_HANDLES_PIXMAPS) ||
|
|
|
|
(pExaScr->info->flags & EXA_MIXED_PIXMAPS)))
|
|
|
|
wrap(pExaScr, pScreen, BlockHandler, ExaBlockHandler);
|
2010-07-27 13:02:24 -06:00
|
|
|
if ((pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS) &&
|
2012-06-10 07:21:05 -06:00
|
|
|
!(pExaScr->info->flags & EXA_HANDLES_PIXMAPS))
|
|
|
|
wrap(pExaScr, pScreen, WakeupHandler, ExaWakeupHandler);
|
2010-07-27 13:02:24 -06:00
|
|
|
wrap(pExaScr, pScreen, CreateGC, exaCreateGC);
|
|
|
|
wrap(pExaScr, pScreen, CloseScreen, exaCloseScreen);
|
|
|
|
wrap(pExaScr, pScreen, GetImage, exaGetImage);
|
|
|
|
wrap(pExaScr, pScreen, GetSpans, ExaCheckGetSpans);
|
|
|
|
wrap(pExaScr, pScreen, CopyWindow, exaCopyWindow);
|
|
|
|
wrap(pExaScr, pScreen, ChangeWindowAttributes, exaChangeWindowAttributes);
|
|
|
|
wrap(pExaScr, pScreen, BitmapToRegion, exaBitmapToRegion);
|
|
|
|
wrap(pExaScr, pScreen, CreateScreenResources, exaCreateScreenResources);
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
if (ps) {
|
2012-06-10 07:21:05 -06:00
|
|
|
wrap(pExaScr, ps, Composite, exaComposite);
|
|
|
|
if (pScreenInfo->PrepareComposite) {
|
|
|
|
wrap(pExaScr, ps, Glyphs, exaGlyphs);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wrap(pExaScr, ps, Glyphs, ExaCheckGlyphs);
|
|
|
|
}
|
|
|
|
wrap(pExaScr, ps, Trapezoids, exaTrapezoids);
|
|
|
|
wrap(pExaScr, ps, Triangles, exaTriangles);
|
|
|
|
wrap(pExaScr, ps, AddTraps, ExaCheckAddTraps);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2007-11-24 10:55:21 -07:00
|
|
|
#ifdef MITSHM
|
2008-11-02 08:26:08 -07:00
|
|
|
/*
|
|
|
|
* Don't allow shared pixmaps.
|
2007-11-24 10:55:21 -07:00
|
|
|
*/
|
2008-11-02 08:26:08 -07:00
|
|
|
ShmRegisterFuncs(pScreen, &exaShmFuncs);
|
2006-11-26 11:13:41 -07:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Hookup offscreen pixmaps
|
|
|
|
*/
|
2012-06-10 07:21:05 -06:00
|
|
|
if (pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS) {
|
|
|
|
if (!dixRegisterPrivateKey
|
|
|
|
(&exaPixmapPrivateKeyRec, PRIVATE_PIXMAP,
|
|
|
|
sizeof(ExaPixmapPrivRec))) {
|
2006-11-26 11:13:41 -07:00
|
|
|
LogMessage(X_WARNING,
|
2012-06-10 07:21:05 -06:00
|
|
|
"EXA(%d): Failed to allocate pixmap private\n",
|
|
|
|
pScreen->myNum);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (pExaScr->info->flags & EXA_HANDLES_PIXMAPS) {
|
|
|
|
if (pExaScr->info->flags & EXA_MIXED_PIXMAPS) {
|
|
|
|
wrap(pExaScr, pScreen, CreatePixmap, exaCreatePixmap_mixed);
|
|
|
|
wrap(pExaScr, pScreen, DestroyPixmap, exaDestroyPixmap_mixed);
|
|
|
|
wrap(pExaScr, pScreen, ModifyPixmapHeader,
|
|
|
|
exaModifyPixmapHeader_mixed);
|
|
|
|
pExaScr->do_migration = exaDoMigration_mixed;
|
|
|
|
pExaScr->pixmap_has_gpu_copy = exaPixmapHasGpuCopy_mixed;
|
|
|
|
pExaScr->do_move_in_pixmap = exaMoveInPixmap_mixed;
|
|
|
|
pExaScr->do_move_out_pixmap = NULL;
|
|
|
|
pExaScr->prepare_access_reg = exaPrepareAccessReg_mixed;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wrap(pExaScr, pScreen, CreatePixmap, exaCreatePixmap_driver);
|
|
|
|
wrap(pExaScr, pScreen, DestroyPixmap, exaDestroyPixmap_driver);
|
|
|
|
wrap(pExaScr, pScreen, ModifyPixmapHeader,
|
|
|
|
exaModifyPixmapHeader_driver);
|
|
|
|
pExaScr->do_migration = NULL;
|
|
|
|
pExaScr->pixmap_has_gpu_copy = exaPixmapHasGpuCopy_driver;
|
|
|
|
pExaScr->do_move_in_pixmap = NULL;
|
|
|
|
pExaScr->do_move_out_pixmap = NULL;
|
|
|
|
pExaScr->prepare_access_reg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
wrap(pExaScr, pScreen, CreatePixmap, exaCreatePixmap_classic);
|
|
|
|
wrap(pExaScr, pScreen, DestroyPixmap, exaDestroyPixmap_classic);
|
|
|
|
wrap(pExaScr, pScreen, ModifyPixmapHeader,
|
|
|
|
exaModifyPixmapHeader_classic);
|
|
|
|
pExaScr->do_migration = exaDoMigration_classic;
|
|
|
|
pExaScr->pixmap_has_gpu_copy = exaPixmapHasGpuCopy_classic;
|
|
|
|
pExaScr->do_move_in_pixmap = exaMoveInPixmap_classic;
|
|
|
|
pExaScr->do_move_out_pixmap = exaMoveOutPixmap_classic;
|
|
|
|
pExaScr->prepare_access_reg = exaPrepareAccessReg_classic;
|
|
|
|
}
|
|
|
|
if (!(pExaScr->info->flags & EXA_HANDLES_PIXMAPS)) {
|
|
|
|
LogMessage(X_INFO, "EXA(%d): Offscreen pixmap area of %lu bytes\n",
|
|
|
|
pScreen->myNum,
|
|
|
|
pExaScr->info->memorySize -
|
|
|
|
pExaScr->info->offScreenBase);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LogMessage(X_INFO, "EXA(%d): Driver allocated offscreen pixmaps\n",
|
|
|
|
pScreen->myNum);
|
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LogMessage(X_INFO, "EXA(%d): No offscreen pixmaps\n", pScreen->myNum);
|
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
if (!(pExaScr->info->flags & EXA_HANDLES_PIXMAPS)) {
|
2012-06-10 07:21:05 -06:00
|
|
|
DBG_PIXMAP(("============== %ld < %ld\n", pExaScr->info->offScreenBase,
|
|
|
|
pExaScr->info->memorySize));
|
|
|
|
if (pExaScr->info->offScreenBase < pExaScr->info->memorySize) {
|
|
|
|
if (!exaOffscreenInit(pScreen)) {
|
|
|
|
LogMessage(X_WARNING,
|
|
|
|
"EXA(%d): Offscreen pixmap setup failed\n",
|
|
|
|
pScreen->myNum);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
2009-09-06 13:44:18 -06:00
|
|
|
if (ps->Glyphs == exaGlyphs)
|
2012-06-10 07:21:05 -06:00
|
|
|
exaGlyphsInit(pScreen);
|
2009-09-06 13:44:18 -06:00
|
|
|
|
2006-11-26 11:13:41 -07:00
|
|
|
LogMessage(X_INFO, "EXA(%d): Driver registered support for the following"
|
2012-06-10 07:21:05 -06:00
|
|
|
" operations:\n", pScreen->myNum);
|
2006-11-26 11:13:41 -07:00
|
|
|
assert(pScreenInfo->PrepareSolid != NULL);
|
|
|
|
LogMessage(X_INFO, " Solid\n");
|
|
|
|
assert(pScreenInfo->PrepareCopy != NULL);
|
|
|
|
LogMessage(X_INFO, " Copy\n");
|
|
|
|
if (pScreenInfo->PrepareComposite != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_INFO, " Composite (RENDER acceleration)\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
if (pScreenInfo->UploadToScreen != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_INFO, " UploadToScreen\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
if (pScreenInfo->DownloadFromScreen != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
LogMessage(X_INFO, " DownloadFromScreen\n");
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaDriverFini tears down EXA on a given screen.
|
|
|
|
*
|
|
|
|
* @param pScreen screen being torn down.
|
|
|
|
*/
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDriverFini(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
2012-06-10 07:21:05 -06:00
|
|
|
/*right now does nothing */
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaMarkSync() should be called after any asynchronous drawing by the hardware.
|
|
|
|
*
|
|
|
|
* @param pScreen screen which drawing occurred on
|
|
|
|
*
|
|
|
|
* exaMarkSync() sets a flag to indicate that some asynchronous drawing has
|
|
|
|
* happened and a WaitSync() will be necessary before relying on the contents of
|
|
|
|
* offscreen memory from the CPU's perspective. It also calls an optional
|
|
|
|
* driver MarkSync() callback, the return value of which may be used to do partial
|
|
|
|
* synchronization with the hardware in the future.
|
|
|
|
*/
|
2012-06-10 07:21:05 -06:00
|
|
|
void
|
|
|
|
exaMarkSync(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
pExaScr->info->needsSync = TRUE;
|
|
|
|
if (pExaScr->info->MarkSync != NULL) {
|
2012-06-10 07:21:05 -06:00
|
|
|
pExaScr->info->lastMarker = (*pExaScr->info->MarkSync) (pScreen);
|
2006-11-26 11:13:41 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* exaWaitSync() ensures that all drawing has been completed.
|
|
|
|
*
|
|
|
|
* @param pScreen screen being synchronized.
|
|
|
|
*
|
|
|
|
* Calls down into the driver to ensure that all previous drawing has completed.
|
|
|
|
* It should always be called before relying on the framebuffer contents
|
|
|
|
* reflecting previous drawing, from a CPU perspective.
|
|
|
|
*/
|
2012-06-10 07:21:05 -06:00
|
|
|
void
|
|
|
|
exaWaitSync(ScreenPtr pScreen)
|
2006-11-26 11:13:41 -07:00
|
|
|
{
|
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
if (pExaScr->info->needsSync && !pExaScr->swappedOut) {
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pExaScr->info->WaitMarker) (pScreen, pExaScr->info->lastMarker);
|
2006-11-26 11:13:41 -07:00
|
|
|
pExaScr->info->needsSync = FALSE;
|
|
|
|
}
|
|
|
|
}
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs migration of the pixmaps according to the operation information
|
|
|
|
* provided in pixmaps and can_accel and the migration scheme chosen in the
|
|
|
|
* config file.
|
|
|
|
*/
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaDoMigration(ExaMigrationPtr pixmaps, int npixmaps, Bool can_accel)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pixmaps[0].pPix->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pExaScr->do_migration)
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pExaScr->do_migration) (pixmaps, npixmaps, can_accel);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaMoveInPixmap(PixmapPtr pPixmap)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pPixmap->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pExaScr->do_move_in_pixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pExaScr->do_move_in_pixmap) (pPixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-10 07:21:05 -06:00
|
|
|
exaMoveOutPixmap(PixmapPtr pPixmap)
|
2010-07-27 13:02:24 -06:00
|
|
|
{
|
|
|
|
ScreenPtr pScreen = pPixmap->drawable.pScreen;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-07-27 13:02:24 -06:00
|
|
|
ExaScreenPriv(pScreen);
|
|
|
|
|
|
|
|
if (!(pExaScr->info->flags & EXA_OFFSCREEN_PIXMAPS))
|
2012-06-10 07:21:05 -06:00
|
|
|
return;
|
2010-07-27 13:02:24 -06:00
|
|
|
|
|
|
|
if (pExaScr->do_move_out_pixmap)
|
2012-06-10 07:21:05 -06:00
|
|
|
(*pExaScr->do_move_out_pixmap) (pPixmap);
|
2010-07-27 13:02:24 -06:00
|
|
|
}
|