summaryrefslogtreecommitdiff
path: root/src/smi_xaa.c
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@gmail.com>2008-10-28 00:13:55 +0100
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2008-10-28 15:09:47 -0200
commit91b5613fb07fec0f319623ca7ec1efd67f04379b (patch)
tree20624de12510cfa1d9617166f2e07cfb97dd620c /src/smi_xaa.c
parent0faeddb208d8fade4737be4bcadb8814696bd7b4 (diff)
Remove shadowfb based rotation support.
Also done some clean up, like removing unused/redundant members of the screen private structure, and removing now unused configuration file options.
Diffstat (limited to 'src/smi_xaa.c')
-rw-r--r--src/smi_xaa.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/smi_xaa.c b/src/smi_xaa.c
index 4ffda45..c4b8316 100644
--- a/src/smi_xaa.c
+++ b/src/smi_xaa.c
@@ -60,10 +60,11 @@ static void SMI_SetupForImageWrite(ScrnInfoPtr, int, unsigned int, int, int,
int);
static void SMI_SubsequentImageWriteRect(ScrnInfoPtr, int, int, int, int, int);
#endif
+#if 0
/* #671 */
static void SMI_ValidatePolylines(GCPtr, unsigned long, DrawablePtr);
static void SMI_Polylines(DrawablePtr, GCPtr, int, int, DDXPointPtr);
-
+#endif
Bool
SMI_XAAInit(ScreenPtr pScreen)
@@ -215,10 +216,12 @@ SMI_XAAInit(ScreenPtr pScreen)
#endif
ret = XAAInit(pScreen, infoPtr);
+#if 0
if (ret && pSmi->shadowFB) /* #671 */ {
pSmi->ValidatePolylines = infoPtr->ValidatePolylines;
infoPtr->ValidatePolylines = SMI_ValidatePolylines;
}
+#endif
RETURN(ret);
}
@@ -763,6 +766,7 @@ SMI_SubsequentImageWriteRect(ScrnInfoPtr pScrn, int x, int y, int w, int h,
}
#endif
+#if 0
/******************************************************************************/
/* Polylines #671 */
/******************************************************************************/
@@ -915,3 +919,4 @@ SMI_Polylines(DrawablePtr pDraw, GCPtr pGC, int mode, int npt,
LEAVE();
}
+#endif