diff options
author | Adam Jackson <ajax@nwnk.net> | 2005-04-22 20:49:50 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2005-04-22 20:49:50 +0000 |
commit | 07bd7df6a6a07834277b4bf505db6727841e1153 (patch) | |
tree | 3df2c5236977ce10097c74708661014c299878c0 /cfb | |
parent | d450a70e00b50427ecb2065d3cc44f43d102cade (diff) |
Bug #3069: Drop the BuildLowMem hack, it doesn't compile and isn't useful.
Diffstat (limited to 'cfb')
-rw-r--r-- | cfb/cfbgc.c | 8 | ||||
-rw-r--r-- | cfb/cfbimage.c | 4 | ||||
-rw-r--r-- | cfb/cfbpush8.c | 4 |
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; } |