summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2012-09-26 15:02:17 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2012-09-26 15:02:17 +0100
commit557ad78d02dfff3db9e7fc21f05230a8fe482f7c (patch)
treea471731ba12c1e981c362c561345668e2cea4612 /src
parent367f57faf2c422da026a25c099426dc750cf3759 (diff)
Kill mibstore pretend backwards compatibility
Adam Jackson was kind enough to point out that mibstore had been a no-op since xorg-1.4 and the earliest we claim to support is xorg-1.6. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src')
-rw-r--r--src/compat-api.h6
-rw-r--r--src/intel_driver.c1
-rw-r--r--src/sna/sna_driver.c1
3 files changed, 0 insertions, 8 deletions
diff --git a/src/compat-api.h b/src/compat-api.h
index 9ca2ab35..6b765724 100644
--- a/src/compat-api.h
+++ b/src/compat-api.h
@@ -103,10 +103,4 @@
#endif
-#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(13, 0)
-#define miInitializeBackingStore(x) do {} while (0)
-#else
-#include "mibstore.h"
-#endif
-
#endif
diff --git a/src/intel_driver.c b/src/intel_driver.c
index ec887aad..f338a369 100644
--- a/src/intel_driver.c
+++ b/src/intel_driver.c
@@ -960,7 +960,6 @@ I830ScreenInit(SCREEN_INIT_ARGS_DECL)
return FALSE;
}
- miInitializeBackingStore(screen);
xf86SetBackingStore(screen);
xf86SetSilkenMouse(screen);
miDCInitialize(screen, xf86GetPointerScreenFuncs());
diff --git a/src/sna/sna_driver.c b/src/sna/sna_driver.c
index 223387d6..462d9aca 100644
--- a/src/sna/sna_driver.c
+++ b/src/sna/sna_driver.c
@@ -884,7 +884,6 @@ sna_screen_init(SCREEN_INIT_ARGS_DECL)
xf86SetBlackWhitePixels(screen);
- miInitializeBackingStore(screen);
xf86SetBackingStore(screen);
xf86SetSilkenMouse(screen);
if (!miDCInitialize(screen, xf86GetPointerScreenFuncs()))