diff options
Diffstat (limited to 'fb/fbcopy.c')
-rw-r--r-- | fb/fbcopy.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/fb/fbcopy.c b/fb/fbcopy.c index a9c676de7..4dbba78f5 100644 --- a/fb/fbcopy.c +++ b/fb/fbcopy.c @@ -289,28 +289,6 @@ fbCopyNto1 (PixmapPtr pSrcPixmap, } } -/* todo for ephyr EXA */ -RegionPtr -fbCopyArea (PixmapPtr pSrcPixmap, - PixmapPtr pDstPixmap, - DrvGCPtr pGC, - int xIn, - int yIn, - int widthSrc, - int heightSrc, - int xOut, - int yOut) -{ - drvCopyProc copy; - - if (pSrcPixmap->bitsPerPixel != pDstPixmap->bitsPerPixel) - copy = fb24_32CopyMtoN; - else - copy = fbCopyNtoN; - return miDoCopy (pSrcPixmap, pDstPixmap, pGC, xIn, yIn, - widthSrc, heightSrc, xOut, yOut, copy, 0, 0); -} - drvCopyProc fbGetCopyAreaFunction(PixmapPtr pSrc, PixmapPtr pDst) |