diff options
author | marha <marha@users.sourceforge.net> | 2011-01-28 16:20:53 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-01-28 16:20:53 +0000 |
commit | 1c4b85ef1eee929ccef4fb91f9f87f996b7b9e2d (patch) | |
tree | ab7f9ae81f64cfd01b4cf32d6d777569b99d1472 /xorg-server/fb/fbcopy.c | |
parent | b3be16ace28c0a51052c3b76162efbab811abf84 (diff) | |
download | vcxsrv-1c4b85ef1eee929ccef4fb91f9f87f996b7b9e2d.tar.gz vcxsrv-1c4b85ef1eee929ccef4fb91f9f87f996b7b9e2d.tar.bz2 vcxsrv-1c4b85ef1eee929ccef4fb91f9f87f996b7b9e2d.zip |
Removed unused functions
Diffstat (limited to 'xorg-server/fb/fbcopy.c')
-rw-r--r-- | xorg-server/fb/fbcopy.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/xorg-server/fb/fbcopy.c b/xorg-server/fb/fbcopy.c index 30cbf7b25..84f157ea5 100644 --- a/xorg-server/fb/fbcopy.c +++ b/xorg-server/fb/fbcopy.c @@ -28,39 +28,6 @@ #include "fb.h"
-/* Compatibility wrapper, to be removed at next ABI change. */
-void
-fbCopyRegion (DrawablePtr pSrcDrawable,
- DrawablePtr pDstDrawable,
- GCPtr pGC,
- RegionPtr pDstRegion,
- int dx,
- int dy,
- fbCopyProc copyProc,
- Pixel bitPlane,
- void *closure)
-{
- miCopyRegion(pSrcDrawable, pDstDrawable, pGC, pDstRegion, dx, dy, copyProc, bitPlane, closure);
-}
-
-/* Compatibility wrapper, to be removed at next ABI change. */
-RegionPtr
-fbDoCopy (DrawablePtr pSrcDrawable,
- DrawablePtr pDstDrawable,
- GCPtr pGC,
- int xIn,
- int yIn,
- int widthSrc,
- int heightSrc,
- int xOut,
- int yOut,
- fbCopyProc copyProc,
- Pixel bitPlane,
- void *closure)
-{
- return miDoCopy(pSrcDrawable, pDstDrawable, pGC, xIn, yIn, widthSrc, heightSrc, xOut, yOut, copyProc, bitPlane, closure);
-}
-
void
fbCopyNtoN (DrawablePtr pSrcDrawable,
DrawablePtr pDstDrawable,
|