xserver-multidpi/hw/xgl/xglcompose.c

282 lines
6.3 KiB
C
Raw Normal View History

2004-11-05 00:19:13 +01:00
/*
2004-11-05 14:26:07 +01:00
* Copyright © 2004 David Reveman
*
2004-11-05 00:19:13 +01: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
2005-01-26 11:58:52 +01:00
* appear in supporting documentation, and that the name of
2004-11-05 00:19:13 +01:00
* David Reveman not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior permission.
* David Reveman makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*
* DAVID REVEMAN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
2004-11-05 00:19:13 +01:00
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
* NO EVENT SHALL DAVID REVEMAN 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,
2004-11-05 00:19:13 +01:00
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
2005-01-26 11:58:52 +01:00
* Author: David Reveman <davidr@novell.com>
2004-11-05 00:19:13 +01:00
*/
#include "xgl.h"
#ifdef RENDER
static glitz_operator_t xglOperators[] = {
GLITZ_OPERATOR_CLEAR,
GLITZ_OPERATOR_SRC,
GLITZ_OPERATOR_DST,
GLITZ_OPERATOR_OVER,
GLITZ_OPERATOR_OVER_REVERSE,
GLITZ_OPERATOR_IN,
GLITZ_OPERATOR_IN_REVERSE,
GLITZ_OPERATOR_OUT,
GLITZ_OPERATOR_OUT_REVERSE,
GLITZ_OPERATOR_ATOP,
GLITZ_OPERATOR_ATOP_REVERSE,
GLITZ_OPERATOR_XOR,
GLITZ_OPERATOR_ADD
};
#define NUM_XGL_OPERATORS \
(sizeof (xglOperators) / sizeof (xglOperators[0]))
#define XGL_OPERATOR(op) (xglOperators[op])
#define XGL_GET_SOURCE_PICTURE(pPicture, outSurface) \
(outSurface) = ((pPicture)->pDrawable) ? \
XGL_GET_PIXMAP_PRIV ((PixmapPtr) (pPicture)->pDrawable)->surface : \
(glitz_surface_t *) (pPicture)->pSourcePict->source.devPrivate.ptr
2004-11-05 00:19:13 +01:00
Bool
xglCompositeGeneral (CARD8 op,
PicturePtr pSrc,
PicturePtr pMask,
PicturePtr pDst,
xglGeometryPtr pGeometry,
INT16 xSrc,
INT16 ySrc,
INT16 xMask,
INT16 yMask,
INT16 xDst,
INT16 yDst,
CARD16 width,
CARD16 height)
2004-11-05 00:19:13 +01:00
{
ScreenPtr pScreen = pDst->pDrawable->pScreen;
INT16 xOff, yOff;
glitz_surface_t *src, *mask = NULL, *dst;
2004-11-05 00:19:13 +01:00
int dstXoff, dstYoff;
RegionRec region;
BoxPtr pBox, pExt;
2004-11-05 00:19:13 +01:00
int nBox;
2004-11-05 00:19:13 +01:00
if (pDst->alphaMap)
return FALSE;
if (op >= NUM_XGL_OPERATORS)
return FALSE;
2005-01-26 11:58:52 +01:00
if (pSrc->pDrawable)
{
if (pSrc->pDrawable->type != DRAWABLE_PIXMAP)
return FALSE;
2004-11-05 00:19:13 +01:00
if (pSrc->pDrawable->bitsPerPixel == 1)
return FALSE;
}
2005-01-26 11:58:52 +01:00
2004-11-05 00:19:13 +01:00
if (pMask)
{
if (pMask->pDrawable)
{
if (pMask->pDrawable->type != DRAWABLE_PIXMAP)
return FALSE;
2004-11-05 00:19:13 +01:00
if (pSrc->pDrawable == pMask->pDrawable && pSrc != pMask)
return FALSE;
}
2004-11-05 00:19:13 +01:00
}
if (!xglPrepareTarget (pDst->pDrawable))
return FALSE;
2004-11-05 00:19:13 +01:00
if (!miComputeCompositeRegion (&region, pSrc, pMask, pDst,
xSrc, ySrc, xMask, yMask,
xDst, yDst, width, height))
return TRUE;
pBox = REGION_RECTS (&region);
nBox = REGION_NUM_RECTS (&region);
pExt = REGION_EXTENTS (pScreen, &region);
2004-11-05 00:19:13 +01:00
XGL_GET_DRAWABLE (pDst->pDrawable, dst, dstXoff, dstYoff);
if (!xglSyncPicture (pScreen, pSrc,
pExt->x1 + xSrc - xDst,
pExt->y1 + ySrc - yDst,
pExt->x2 - pExt->x1,
pExt->y2 - pExt->y1,
&xOff, &yOff))
2004-11-05 00:19:13 +01:00
{
REGION_UNINIT (pScreen, &region);
return FALSE;
}
xSrc -= xOff;
ySrc -= yOff;
XGL_GET_SOURCE_PICTURE (pSrc, src);
2005-01-26 11:58:52 +01:00
2004-11-05 00:19:13 +01:00
if (pMask)
{
2005-01-26 11:58:52 +01:00
/* bitmap as mask */
if (pMask->pDrawable && pMask->pDrawable->bitsPerPixel == 1)
2004-11-05 00:19:13 +01:00
{
2005-01-26 11:58:52 +01:00
if (pGeometry)
{
REGION_UNINIT (pScreen, &region);
return FALSE;
}
pGeometry = xglPixmapToGeometry ((PixmapPtr) pMask->pDrawable,
xDst - xMask,
yDst - yMask);
2005-01-26 11:58:52 +01:00
if (!pGeometry)
{
REGION_UNINIT (pScreen, &region);
return FALSE;
}
2004-11-05 00:19:13 +01:00
}
2005-01-26 11:58:52 +01:00
else
{
if (!xglSyncPicture (pScreen, pMask,
pExt->x1 + xMask - xDst,
pExt->y1 + yMask - yDst,
pExt->x2 - pExt->x1,
pExt->y2 - pExt->y1,
&xOff, &yOff))
2005-01-26 11:58:52 +01:00
{
REGION_UNINIT (pScreen, &region);
return FALSE;
}
xMask -= xOff;
yMask -= yOff;
XGL_GET_SOURCE_PICTURE (pMask, mask);
2005-01-26 11:58:52 +01:00
}
}
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
if (!pGeometry)
2004-11-05 00:19:13 +01:00
{
2005-01-26 11:58:52 +01:00
if (!pSrc->transform && pSrc->filter != PictFilterConvolution)
2004-11-05 00:19:13 +01:00
{
if (pSrc->pDrawable && pSrc->repeatType == RepeatNormal)
2005-01-26 11:58:52 +01:00
{
XGL_PIXMAP_PRIV ((PixmapPtr) pSrc->pDrawable);
2005-01-26 11:58:52 +01:00
/* tile */
if (!pPixmapPriv->acceleratedTile)
2005-01-26 11:58:52 +01:00
{
pGeometry =
xglTiledBoxGeometry ((PixmapPtr) pSrc->pDrawable,
xSrc - xDst, ySrc - yDst,
pBox, nBox);
if (!pGeometry)
{
REGION_UNINIT (pScreen, &region);
return FALSE;
}
pBox = pExt;
2005-01-26 11:58:52 +01:00
nBox = 1;
}
}
else
{
/* copy */
if (op == PictOpSrc && !mask)
{
if (xglCopy (pSrc->pDrawable,
pDst->pDrawable,
xSrc - xDst,
ySrc - yDst,
pBox,
nBox))
{
REGION_UNINIT (pScreen, &region);
return TRUE;
}
}
}
2004-11-05 00:19:13 +01:00
}
2005-01-26 11:58:52 +01:00
if (nBox > 1)
{
pGeometry = xglGetScratchVertexGeometry (pScreen, 4 * nBox);
2005-01-26 11:58:52 +01:00
GEOMETRY_ADD_BOX (pScreen, pGeometry, pBox, nBox);
pBox = pExt;
2005-01-26 11:58:52 +01:00
}
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
xSrc += pBox->x1 - xDst;
ySrc += pBox->y1 - yDst;
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
if (pMask)
{
xMask += pBox->x1 - xDst;
yMask += pBox->y1 - yDst;
}
2005-01-26 11:58:52 +01:00
xDst = pBox->x1;
yDst = pBox->y1;
2005-01-26 11:58:52 +01:00
width = pBox->x2 - pBox->x1;
height = pBox->y2 - pBox->y1;
}
else
{
glitz_surface_set_clip_region (dst,
dstXoff, dstYoff,
(glitz_box_t *) pBox, nBox);
}
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
if (pGeometry)
2004-11-05 00:19:13 +01:00
{
2005-01-26 11:58:52 +01:00
GEOMETRY_TRANSLATE (pGeometry, dstXoff, dstYoff);
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
if (!GEOMETRY_ENABLE (pGeometry, dst))
{
REGION_UNINIT (pScreen, &region);
2004-11-05 00:19:13 +01:00
return FALSE;
2005-01-26 11:58:52 +01:00
}
}
else
2005-01-26 11:58:52 +01:00
GEOMETRY_DISABLE (dst);
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
glitz_composite (XGL_OPERATOR (op),
src, mask, dst,
xSrc, ySrc,
xMask, yMask,
xDst + dstXoff, yDst + dstYoff,
width, height);
glitz_surface_set_clip_region (dst, 0, 0, NULL, 0);
REGION_UNINIT (pScreen, &region);
2004-11-05 00:19:13 +01:00
if (glitz_surface_get_status (dst))
return FALSE;
2004-11-05 00:19:13 +01:00
return TRUE;
}
#endif