From 6825f89cd23e1595ecb016834b38683d2a617d3d Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Mon, 22 Apr 2024 12:04:25 +0200 Subject: [PATCH] mi: drop now obsolete mioverlay.h This used to be part of public API, but no (known) driver ever using it, nor any exported functions left. The only internal consumer (mioverlay.c) also gone now, so it's time to drop this file. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xfree86/sdksyms.sh | 1 - mi/meson.build | 1 - mi/mioverlay.h | 12 ------------ 3 files changed, 14 deletions(-) delete mode 100644 mi/mioverlay.h diff --git a/hw/xfree86/sdksyms.sh b/hw/xfree86/sdksyms.sh index 4df88f63f..982987472 100755 --- a/hw/xfree86/sdksyms.sh +++ b/hw/xfree86/sdksyms.sh @@ -200,7 +200,6 @@ cat > sdksyms.c << EOF #include "mizerarc.h" #include "micoord.h" #include "mistruct.h" -#include "mioverlay.h" /* randr/Makefile.am */ diff --git a/mi/meson.build b/mi/meson.build index 74595494e..47615b699 100644 --- a/mi/meson.build +++ b/mi/meson.build @@ -32,7 +32,6 @@ hdrs_mi = [ 'migc.h', 'mi.h', 'miline.h', - 'mioverlay.h', 'mipointer.h', 'mipointrst.h', 'mistruct.h', diff --git a/mi/mioverlay.h b/mi/mioverlay.h deleted file mode 100644 index 857491dd3..000000000 --- a/mi/mioverlay.h +++ /dev/null @@ -1,12 +0,0 @@ - -#ifdef HAVE_DIX_CONFIG_H -#include -#endif - -#ifndef __MIOVERLAY_H -#define __MIOVERLAY_H - -typedef void (*miOverlayTransFunc) (ScreenPtr, int, BoxPtr); -typedef Bool (*miOverlayInOverlayFunc) (WindowPtr); - -#endif /* __MIOVERLAY_H */