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 /hw/xfree86/xf8_32bpp | |
parent | d450a70e00b50427ecb2065d3cc44f43d102cade (diff) |
Bug #3069: Drop the BuildLowMem hack, it doesn't compile and isn't useful.
Diffstat (limited to 'hw/xfree86/xf8_32bpp')
-rw-r--r-- | hw/xfree86/xf8_32bpp/cfbgc.c | 8 | ||||
-rw-r--r-- | hw/xfree86/xf8_32bpp/cfbgcunder.c | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/hw/xfree86/xf8_32bpp/cfbgc.c b/hw/xfree86/xf8_32bpp/cfbgc.c index 03a5870bd..ba4e3db06 100644 --- a/hw/xfree86/xf8_32bpp/cfbgc.c +++ b/hw/xfree86/xf8_32bpp/cfbgc.c @@ -104,11 +104,7 @@ LOWMEMFTPT False False False False #ifdef FOUR_BIT_CODE # define usePushPixels cfbPushPixels8 #else -#ifndef LOWMEMFTPT # define usePushPixels mfbPushPixels -#else -# define usePushPixels miPushPixels -#endif /* ifndef LOWMEMFTPT */ #endif #ifdef PIXEL_ADDR @@ -638,11 +634,7 @@ cfb8_32ValidateGC32( } #endif #ifdef FOUR_BIT_CODE -#ifndef LOWMEMFTPT pGC->ops->PushPixels = mfbPushPixels; -#else - pGC->ops->PushPixels = miPushPixels; -#endif /* ifndef LOWMEMFTPT */ if (pGC->fillStyle == FillSolid && devPriv->rop == GXcopy) pGC->ops->PushPixels = cfbPushPixels8; #endif diff --git a/hw/xfree86/xf8_32bpp/cfbgcunder.c b/hw/xfree86/xf8_32bpp/cfbgcunder.c index fd60c1631..cd30fcea3 100644 --- a/hw/xfree86/xf8_32bpp/cfbgcunder.c +++ b/hw/xfree86/xf8_32bpp/cfbgcunder.c @@ -85,11 +85,7 @@ SOFTWARE. #ifdef FOUR_BIT_CODE # define usePushPixels cfbPushPixels8 #else -#ifndef LOWMEMFTPT # define usePushPixels mfbPushPixels -#else -# define usePushPixels miPushPixels -#endif /* ifndef LOWMEMFTPT */ #endif #ifdef PIXEL_ADDR @@ -612,11 +608,7 @@ cfb32ValidateGC_Underlay( } #endif #ifdef FOUR_BIT_CODE -#ifndef LOWMEMFTPT pGC->ops->PushPixels = mfbPushPixels; -#else - pGC->ops->PushPixels = miPushPixels; -#endif /* ifndef LOWMEMFTPT */ if (pGC->fillStyle == FillSolid && devPriv->rop == GXcopy) pGC->ops->PushPixels = cfbPushPixels8; #endif |