dix: unexport AttachUnboundGPU() and DetachUnboundGPU()

These aren't externally used, thus no need to export them.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1349>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-03-01 14:28:33 +01:00 committed by Marge Bot
parent 55dc4a8bdc
commit 71b81a7473
3 changed files with 5 additions and 5 deletions

View File

@ -17,4 +17,7 @@ int AddGPUScreen(ScreenInitProcPtr pfnInit, int argc, char **argv);
void RemoveGPUScreen(ScreenPtr pScreen);
void AttachUnboundGPU(ScreenPtr pScreen, ScreenPtr newScreen);
void DetachUnboundGPU(ScreenPtr unbound);
#endif /* _XSERVER_DIX_SCREENINT_PRIV_H */

View File

@ -24,6 +24,8 @@
#include <xorg-config.h>
#endif
#include "dix/screenint_priv.h"
#include "xf86.h"
#include "os.h"
#include "globals.h"

View File

@ -54,11 +54,6 @@ typedef struct _Visual *VisualPtr;
typedef struct _Depth *DepthPtr;
typedef struct _Screen *ScreenPtr;
extern _X_EXPORT void
AttachUnboundGPU(ScreenPtr pScreen, ScreenPtr newScreen);
extern _X_EXPORT void
DetachUnboundGPU(ScreenPtr unbound);
extern _X_EXPORT void
AttachOutputGPU(ScreenPtr pScreen, ScreenPtr newScreen);