dix: unexport AttachOffloadGPU() and DetachOffloadGPU()
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:
parent
1277bb7143
commit
6999bc49d3
|
@ -23,4 +23,7 @@ void DetachUnboundGPU(ScreenPtr unbound);
|
||||||
void AttachOutputGPU(ScreenPtr pScreen, ScreenPtr newScreen);
|
void AttachOutputGPU(ScreenPtr pScreen, ScreenPtr newScreen);
|
||||||
void DetachOutputGPU(ScreenPtr output);
|
void DetachOutputGPU(ScreenPtr output);
|
||||||
|
|
||||||
|
void AttachOffloadGPU(ScreenPtr pScreen, ScreenPtr newScreen);
|
||||||
|
void DetachOffloadGPU(ScreenPtr slave);
|
||||||
|
|
||||||
#endif /* _XSERVER_DIX_SCREENINT_PRIV_H */
|
#endif /* _XSERVER_DIX_SCREENINT_PRIV_H */
|
||||||
|
|
|
@ -53,13 +53,6 @@ typedef struct _PixmapFormat *PixmapFormatPtr;
|
||||||
typedef struct _Visual *VisualPtr;
|
typedef struct _Visual *VisualPtr;
|
||||||
typedef struct _Depth *DepthPtr;
|
typedef struct _Depth *DepthPtr;
|
||||||
typedef struct _Screen *ScreenPtr;
|
typedef struct _Screen *ScreenPtr;
|
||||||
|
|
||||||
extern _X_EXPORT void
|
|
||||||
AttachOffloadGPU(ScreenPtr pScreen, ScreenPtr newScreen);
|
|
||||||
|
|
||||||
extern _X_EXPORT void
|
|
||||||
DetachOffloadGPU(ScreenPtr slave);
|
|
||||||
|
|
||||||
typedef struct _ColormapRec *ColormapPtr;
|
typedef struct _ColormapRec *ColormapPtr;
|
||||||
|
|
||||||
#endif /* SCREENINT_H */
|
#endif /* SCREENINT_H */
|
||||||
|
|
Loading…
Reference in New Issue