dix: unexport InitTrackers()

Not used by any modules, thus no need to export it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1347>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-02-29 19:47:29 +01:00 committed by Marge Bot
parent 4db1f3f760
commit b598727f1c
3 changed files with 5 additions and 3 deletions

View File

@ -53,4 +53,6 @@ void acceleratePointerPredictable(DeviceIntPtr dev, ValuatorMask *val,
void acceleratePointerLightweight(DeviceIntPtr dev, ValuatorMask *val, void acceleratePointerLightweight(DeviceIntPtr dev, ValuatorMask *val,
CARD32 evtime); CARD32 evtime);
void InitTrackers(DeviceVelocityPtr vel, int ntracker);
#endif /* _XSERVER_POINTERVELOCITY_PRIV_H */ #endif /* _XSERVER_POINTERVELOCITY_PRIV_H */

View File

@ -55,6 +55,9 @@
#include <X11/extensions/XI.h> #include <X11/extensions/XI.h>
#include <X11/extensions/XIproto.h> #include <X11/extensions/XIproto.h>
#include <X11/Xatom.h> #include <X11/Xatom.h>
#include "dix/ptrveloc_priv.h"
#include "xf86.h" #include "xf86.h"
#include "xf86Priv.h" #include "xf86Priv.h"
#include "xf86Config.h" #include "xf86Config.h"

View File

@ -81,9 +81,6 @@ typedef struct _DeviceVelocityRec {
} statistics; } statistics;
} DeviceVelocityRec, *DeviceVelocityPtr; } DeviceVelocityRec, *DeviceVelocityPtr;
extern _X_EXPORT void
InitTrackers(DeviceVelocityPtr vel, int ntracker);
extern _X_EXPORT BOOL extern _X_EXPORT BOOL
ProcessVelocityData2D(DeviceVelocityPtr vel, double dx, double dy, int time); ProcessVelocityData2D(DeviceVelocityPtr vel, double dx, double dy, int time);