randr: unexport and document RRDeliverCrtcEvent()

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 14:16:02 +02:00
parent ca6b72e362
commit 6d3ffc2197
2 changed files with 9 additions and 3 deletions

View File

@ -572,9 +572,6 @@ RRCrtcNotify(RRCrtcPtr crtc,
Rotation rotation, Rotation rotation,
RRTransformPtr transform, int numOutputs, RROutputPtr * outputs); RRTransformPtr transform, int numOutputs, RROutputPtr * outputs);
extern _X_EXPORT void
RRDeliverCrtcEvent(ClientPtr client, WindowPtr pWin, RRCrtcPtr crtc);
/* /*
* Request that the Crtc be reconfigured * Request that the Crtc be reconfigured
*/ */

View File

@ -184,4 +184,13 @@ Bool RRCrtcExists(ScreenPtr pScreen, RRCrtcPtr findCrtc);
*/ */
void RRCrtcSetTransformSupport(RRCrtcPtr crtc, Bool transforms); void RRCrtcSetTransformSupport(RRCrtcPtr crtc, Bool transforms);
/*
* Deliver CRTC update event to given client
*
* @param pClient the client to send event to
* @param pWin the window whose screen had been changed
* @param crtc the CRTC that had been changed
*/
void RRDeliverCrtcEvent(ClientPtr pClient, WindowPtr pWin, RRCrtcPtr crtc);
#endif /* _XSERVER_RANDRSTR_PRIV_H_ */ #endif /* _XSERVER_RANDRSTR_PRIV_H_ */