randr: unexport and document RRTransformCopy()

Not used by any external drivers, so no neeed 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:35:46 +02:00
parent 67c086a9f0
commit aebc3c592e
2 changed files with 9 additions and 3 deletions

View File

@ -545,4 +545,13 @@ Bool RRTransformEqual(RRTransformPtr a, RRTransformPtr b);
Bool RRTransformSetFilter(RRTransformPtr dst, PictFilterPtr filter, Bool RRTransformSetFilter(RRTransformPtr dst, PictFilterPtr filter,
xFixed *params, int nparams, int width, int height); xFixed *params, int nparams, int width, int height);
/*
* Copy transform structure to another
*
* @param dst destination structure pointer
* @param src source structure pointer
* @return TRUE on success
*/
Bool RRTransformCopy(RRTransformPtr dst, RRTransformPtr src);
#endif /* _XSERVER_RANDRSTR_PRIV_H_ */ #endif /* _XSERVER_RANDRSTR_PRIV_H_ */

View File

@ -39,9 +39,6 @@ struct _rrTransform {
int height; int height;
}; };
extern _X_EXPORT Bool
RRTransformCopy(RRTransformPtr dst, RRTransformPtr src);
/* /*
* Compute the complete transformation matrix including * Compute the complete transformation matrix including
* client-specified transform, rotation/reflection values and the crtc * client-specified transform, rotation/reflection values and the crtc