randr: unexport and document RRDeliverOutputEvent()

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 15:59:20 +02:00
parent 55474ddf66
commit e39070b448
2 changed files with 9 additions and 3 deletions

View File

@ -647,9 +647,6 @@ extern _X_EXPORT Bool
extern _X_EXPORT Bool
RROutputSetPhysicalSize(RROutputPtr output, int mmWidth, int mmHeight);
extern _X_EXPORT void
RRDeliverOutputEvent(ClientPtr client, WindowPtr pWin, RROutputPtr output);
extern _X_EXPORT void
RROutputDestroy(RROutputPtr output);

View File

@ -342,4 +342,13 @@ int RROutputDeleteUserMode(RROutputPtr output, RRModePtr mode);
*/
void RROutputSetSubpixelOrder(RROutputPtr output, int order);
/*
* Deliver RROutputChangeNotify event to client
*
* @param pClient the client to send notify even to
* @param pWin the window who's screen is acted on
* @param output the output who's changes are delivered
*/
void RRDeliverOutputEvent(ClientPtr pClient, WindowPtr pWin, RROutputPtr output);
#endif /* _XSERVER_RANDRSTR_PRIV_H_ */