From 5a993f2d85063f79c7ea38ba625e46a7fa07db41 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Wed, 31 Dec 2025 13:08:29 +0100 Subject: [PATCH] drop compat for old video driver ABI Signed-off-by: Enrico Weigelt, metux IT consult --- src/compat-api.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/compat-api.h b/src/compat-api.h index def6d3e4..45b78d4d 100644 --- a/src/compat-api.h +++ b/src/compat-api.h @@ -26,18 +26,7 @@ #ifndef COMPAT_API_H #define COMPAT_API_H -#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(23, 0) #define BLOCKHANDLER_ARGS_DECL ScreenPtr pScreen, pointer pTimeout #define BLOCKHANDLER_ARGS pScreen, pTimeout -#else -#define BLOCKHANDLER_ARGS_DECL ScreenPtr pScreen, pointer pTimeout, pointer pReadmask -#define BLOCKHANDLER_ARGS pScreen, pTimeout, pReadmask -#endif - -#if ABI_VIDEODRV_VERSION < SET_ABI_VERSION(25, 2) -#define current_primary current_master -#define primary_pixmap master_pixmap -#define secondary_dst slave_dst -#endif #endif