xserver-multidpi/hw/xgl/xglcopy.c

131 lines
3.1 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"
2005-01-26 11:58:52 +01:00
#include "fb.h"
2004-11-05 00:19:13 +01:00
Bool
xglCopy (DrawablePtr pSrc,
DrawablePtr pDst,
int dx,
int dy,
BoxPtr pBox,
int nBox)
{
2005-01-26 11:58:52 +01:00
glitz_surface_t *src, *dst;
2004-11-05 00:19:13 +01:00
int srcXoff, srcYoff;
int dstXoff, dstYoff;
XGL_DRAWABLE_PIXMAP (pDst);
2005-01-26 11:58:52 +01:00
if (!nBox)
return TRUE;
2005-12-23 02:50:04 +01:00
if (xglPrepareTarget (pDst))
{
if (!xglSyncSurface (pSrc))
return FALSE;
}
else
{
if (!xglPrepareTarget (pSrc))
return FALSE;
2005-12-23 02:50:04 +01:00
if (!xglSyncSurface (pDst))
return FALSE;
}
2005-01-26 11:58:52 +01:00
XGL_GET_DRAWABLE (pSrc, src, srcXoff, srcYoff);
2005-03-16 21:05:19 +01:00
XGL_GET_DRAWABLE (pDst, dst, dstXoff, dstYoff);
2005-01-26 11:58:52 +01:00
glitz_surface_set_clip_region (dst,
dstXoff, dstYoff,
(glitz_box_t *) pBox, nBox);
glitz_copy_area (src,
dst,
srcXoff + dx,
srcYoff + dy,
pPixmap->drawable.width - dstXoff,
pPixmap->drawable.height - dstYoff,
dstXoff,
dstYoff);
2004-11-05 00:19:13 +01:00
2005-01-26 11:58:52 +01:00
glitz_surface_set_clip_region (dst, 0, 0, NULL, 0);
2005-01-26 11:58:52 +01:00
if (glitz_surface_get_status (dst))
2004-11-05 00:19:13 +01:00
return FALSE;
2004-11-05 00:19:13 +01:00
return TRUE;
}
void
xglCopyProc (DrawablePtr pSrc,
DrawablePtr pDst,
GCPtr pGC,
BoxPtr pBox,
int nBox,
int dx,
int dy,
Bool reverse,
Bool upsidedown,
Pixel bitplane,
void *closure)
{
2005-01-26 11:58:52 +01:00
BoxPtr pSrcBox = (BoxPtr) closure;
if (!xglCopy (pSrc, pDst, dx, dy, pBox, nBox))
{
RegionRec region;
2005-01-26 11:58:52 +01:00
XGL_DRAWABLE_PIXMAP (pDst);
XGL_PIXMAP_PRIV (pPixmap);
if (!xglSyncBits (pSrc, pSrcBox))
FatalError (XGL_SW_FAILURE_STRING);
2005-01-26 11:58:52 +01:00
if (!xglMapPixmapBits (pPixmap))
FatalError (XGL_SW_FAILURE_STRING);
fbCopyNtoN (pSrc, pDst, pGC,
pBox, nBox,
dx, dy,
reverse, upsidedown, bitplane,
(void *) 0);
pPixmapPriv->damageBox = miEmptyBox;
while (nBox--)
{
REGION_INIT (pDst->pScreen, &region, pBox, 1);
xglAddSurfaceDamage (pDst, &region);
2005-01-26 11:58:52 +01:00
REGION_UNINIT (pDst->pScreen, &region);
pBox++;
}
} else
xglAddCurrentBitDamage (pDst);
2004-11-05 00:19:13 +01:00
}