From 1277bb7143b8c62842384d5947c35129c31a1e9f Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 1 Mar 2024 14:30:30 +0100 Subject: [PATCH] dix: unexport AttachOutputGPU() and DetachOutputGPU() These aren't externally used, thus no need to export them. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- dix/screenint_priv.h | 3 +++ include/screenint.h | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/dix/screenint_priv.h b/dix/screenint_priv.h index a9d31195e..96a4b2936 100644 --- a/dix/screenint_priv.h +++ b/dix/screenint_priv.h @@ -20,4 +20,7 @@ void RemoveGPUScreen(ScreenPtr pScreen); void AttachUnboundGPU(ScreenPtr pScreen, ScreenPtr newScreen); void DetachUnboundGPU(ScreenPtr unbound); +void AttachOutputGPU(ScreenPtr pScreen, ScreenPtr newScreen); +void DetachOutputGPU(ScreenPtr output); + #endif /* _XSERVER_DIX_SCREENINT_PRIV_H */ diff --git a/include/screenint.h b/include/screenint.h index a9311c76f..8807f1475 100644 --- a/include/screenint.h +++ b/include/screenint.h @@ -54,12 +54,6 @@ typedef struct _Visual *VisualPtr; typedef struct _Depth *DepthPtr; typedef struct _Screen *ScreenPtr; -extern _X_EXPORT void -AttachOutputGPU(ScreenPtr pScreen, ScreenPtr newScreen); - -extern _X_EXPORT void -DetachOutputGPU(ScreenPtr output); - extern _X_EXPORT void AttachOffloadGPU(ScreenPtr pScreen, ScreenPtr newScreen);