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:
parent
4db1f3f760
commit
b598727f1c
|
@ -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 */
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue