randr: unexport and document RRGetOutputProperty()

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 17:15:03 +02:00
parent d3e1cc205c
commit 81df43802b
2 changed files with 10 additions and 3 deletions

View File

@ -648,9 +648,6 @@ extern _X_EXPORT Bool
extern _X_EXPORT void extern _X_EXPORT void
RROutputDestroy(RROutputPtr output); RROutputDestroy(RROutputPtr output);
extern _X_EXPORT RRPropertyValuePtr
RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
extern _X_EXPORT RRPropertyPtr extern _X_EXPORT RRPropertyPtr
RRQueryOutputProperty(RROutputPtr output, Atom property); RRQueryOutputProperty(RROutputPtr output, Atom property);

View File

@ -377,6 +377,16 @@ void RROutputInitErrorValue(void);
*/ */
void RRPointerScreenConfigured(ScreenPtr pScreen); void RRPointerScreenConfigured(ScreenPtr pScreen);
/*
* Retrieve output property value
*
* @param output the output to query
* @param property Atom ID of the property to retrieve
* @param pending retrieve pending instead of current value
* @return pointer to property value or NULL (if not found)
*/
RRPropertyValuePtr RRGetOutputProperty(RROutputPtr output, Atom property, Bool pending);
/* /*
* Delete all properties on given output * Delete all properties on given output
* *