mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-24 20:55:49 +00:00
Bug #3069: Drop the BuildLowMem hack, it doesn't compile and isn't useful.
This commit is contained in:
parent
d450a70e00
commit
07bd7df6a6
11 changed files with 0 additions and 481 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue