summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-02-08 12:59:33 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-04-07 10:42:39 -0400
commit6bf81aad67c2e535b674db535840432c38ab33a5 (patch)
treeeeef5bed5010d514bc3746f7aa1a7e65df416744 /src
parent7347b7d2196a6a2aed31259824321758e0265b85 (diff)
config: remove MFB usage as it is no longer in xserver
As of commit f31bd087e8a7f65cd588bd1d022bb18e72b2a60c dated August 2007, xfree86 xf1bpp and xf4bpp have been removed in the xserver. Acked-by: Matt Turner <mattst88@gmail.com> Reviewed-by: RĂ©mi Cardona <remi@gentoo.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'src')
-rw-r--r--src/apm.h8
-rw-r--r--src/apm_driver.c28
2 files changed, 0 insertions, 36 deletions
diff --git a/src/apm.h b/src/apm.h
index c57e9ba..db0c7ec 100644
--- a/src/apm.h
+++ b/src/apm.h
@@ -26,14 +26,6 @@
/* All drivers using the mi colormap manipulation need this */
#include "micmap.h"
-/* Needed for the 1 and 4 bpp framebuffers */
-#ifdef HAVE_XF1BPP
-#include "xf1bpp.h"
-#endif
-#ifdef HAVE_XF4BPP
-#include "xf4bpp.h"
-#endif
-
#include "fb.h"
/* Drivers using the XAA interface ... */
diff --git a/src/apm_driver.c b/src/apm_driver.c
index 7cb1e0a..f172bab 100644
--- a/src/apm_driver.c
+++ b/src/apm_driver.c
@@ -992,18 +992,6 @@ ApmPreInit(ScrnInfoPtr pScrn, int flags)
/* Load bpp-specific modules */
switch (pScrn->bitsPerPixel) {
-#ifdef HAVE_XF1BPP
- case 1:
- mod = "xf1bpp";
- req = "xf1bppScreenInit";
- break;
-#endif
-#ifdef HAVE_XF4BPP
- case 4:
- mod = "xf4bpp";
- req = "xf4bppScreenInit";
- break;
-#endif
case 8:
case 16:
case 24:
@@ -1819,22 +1807,6 @@ ApmScreenInit(int scrnIndex, ScreenPtr pScreen, int argc, char **argv)
miSetPixmapDepths();
switch (pScrn->bitsPerPixel) {
-#ifdef HAVE_XF1BPP
- case 1:
- ret = xf1bppScreenInit(pScreen, FbBase,
- pScrn->virtualX, pScrn->virtualY,
- pScrn->xDpi, pScrn->yDpi,
- pScrn->displayWidth);
- break;
-#endif
-#ifdef HAVE_XF4BPP
- case 4:
- ret = xf4bppScreenInit(pScreen, FbBase,
- pScrn->virtualX, pScrn->virtualY,
- pScrn->xDpi, pScrn->yDpi,
- pScrn->displayWidth);
- break;
-#endif
case 8:
case 16:
case 24: