summaryrefslogtreecommitdiff
path: root/cfb
diff options
context:
space:
mode:
Diffstat (limited to 'cfb')
-rw-r--r--cfb/cfbgc.c8
-rw-r--r--cfb/cfbimage.c4
-rw-r--r--cfb/cfbpush8.c4
3 files changed, 0 insertions, 16 deletions
diff --git a/cfb/cfbgc.c b/cfb/cfbgc.c
index bd9efd20c..3937bd649 100644
--- a/cfb/cfbgc.c
+++ b/cfb/cfbgc.c
@@ -90,11 +90,7 @@ static void cfbUnPushPixels (GCPtr, PixmapPtr, DrawablePtr, int, int, int, int);
#ifdef FOUR_BIT_CODE
# define usePushPixels cfbPushPixels8
#else
-#ifndef LOWMEMFTPT
# define usePushPixels cfbUnPushPixels
-#else
-# define usePushPixels miPushPixels
-#endif /* ifndef LOWMEMFTPT */
#endif
#ifdef PIXEL_ADDR
@@ -776,11 +772,7 @@ cfbValidateGC(pGC, changes, pDrawable)
}
#endif
#ifdef FOUR_BIT_CODE
-#ifndef LOWMEMFTPT
pGC->ops->PushPixels = mfbPushPixelsWeak();
-#else
- pGC->ops->PushPixels = miPushPixels;
-#endif /* ifndef LOWMEMFTPT */
if (pGC->fillStyle == FillSolid && devPriv->rop == GXcopy)
pGC->ops->PushPixels = cfbPushPixels8;
#endif
diff --git a/cfb/cfbimage.c b/cfb/cfbimage.c
index 17166a396..44c27151b 100644
--- a/cfb/cfbimage.c
+++ b/cfb/cfbimage.c
@@ -143,11 +143,7 @@ cfbGetImage(pDrawable, sx, sy, w, h, format, planeMask, pdstLine)
return;
if (pDrawable->bitsPerPixel == 1)
{
-#ifndef LOWMEMFTPT
mfbGetImage(pDrawable, sx, sy, w, h, format, planeMask, pdstLine);
-#else
- miGetImage(pDrawable, sx, sy, w, h, format, planeMask, pdstLine);
-#endif /* ifndef LOWMEMFTPT */
return;
}
pScreen = pDrawable->pScreen;
diff --git a/cfb/cfbpush8.c b/cfb/cfbpush8.c
index 31643fe2e..26e509c37 100644
--- a/cfb/cfbpush8.c
+++ b/cfb/cfbpush8.c
@@ -76,11 +76,7 @@ cfbPushPixels8 (pGC, pBitmap, pDrawable, dx, dy, xOrg, yOrg)
switch (RECT_IN_REGION(pGC->pScreen, pGC->pCompositeClip, &bbox))
{
case rgnPART:
-#ifndef LOWMEMFTPT
mfbPushPixels(pGC, pBitmap, pDrawable, dx, dy, xOrg, yOrg);
-#else
- miPushPixels(pGC, pBitmap, pDrawable, dx, dy, xOrg, yOrg);
-#endif /* ifndef LOWMEMFTPT */
case rgnOUT:
return;
}