randr: unexport and document RROutputSetNonDesktop()

Not used by any external drivers, so no need to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-16 13:46:26 +02:00
parent cb80660ad1
commit 6fe2807f88
2 changed files with 7 additions and 2 deletions

View File

@ -519,8 +519,6 @@ extern _X_EXPORT Bool RRScreenInit(ScreenPtr pScreen);
extern _X_EXPORT RROutputPtr RRFirstOutput(ScreenPtr pScreen);
extern _X_EXPORT Bool RROutputSetNonDesktop(RROutputPtr output, Bool non_desktop);
extern _X_EXPORT CARD16
RRVerticalRefresh(xRRModeInfo * mode);

View File

@ -152,4 +152,11 @@ Bool RRInit(void);
*/
RRCrtcPtr RRFirstEnabledCrtc(ScreenPtr pScreen);
/*
* Set non-desktop property on given output. This flag should be TRUE on
* outputs where usual desktops shouldn't expand onto (eg. head displays,
* additional display bars in various handhelds, etc)
*/
Bool RROutputSetNonDesktop(RROutputPtr output, Bool non_desktop);
#endif /* _XSERVER_RANDRSTR_PRIV_H_ */