diff options
author | Enrico Weigelt, metux IT consult <info@metux.net> | 2024-04-30 17:55:46 +0200 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2024-07-26 23:51:13 +0000 |
commit | 58a2fb8b6fe8d1d9cd5f42911abbf23f8a22c060 (patch) | |
tree | 5f840698e01f041853bf557eff0b84fe62f0bb72 /hw/xfree86 | |
parent | a952b93d0d75a0c44c0f3f9110c6d3b93d3ae889 (diff) |
xv: unexport XvScreenRec and XvScreenPtr
Not used by any drivers, so no need to keep them exported.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1512>
Diffstat (limited to 'hw/xfree86')
-rw-r--r-- | hw/xfree86/common/xf86xvmc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/xfree86/common/xf86xvmc.c b/hw/xfree86/common/xf86xvmc.c index c67418bf4..747085dbe 100644 --- a/hw/xfree86/common/xf86xvmc.c +++ b/hw/xfree86/common/xf86xvmc.c @@ -25,21 +25,21 @@ * the sale, use or other dealings in this Software without prior written * authorization from the copyright holder(s) and author(s). */ - #ifdef HAVE_XORG_CONFIG_H #include <xorg-config.h> #endif +#include <X11/X.h> +#include <X11/Xproto.h> + +#include "Xext/xvdix_priv.h" + #include "misc.h" #include "xf86.h" #include "xf86_OSproc.h" - -#include <X11/X.h> -#include <X11/Xproto.h> #include "scrnintstr.h" #include "resource.h" #include "dixstruct.h" - #include "xf86xvpriv.h" #include "xf86xvmc.h" |