dix: unexport InitVelocityData()
Not used by any modules, not even outside the source file, 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
a3ebe4fa41
commit
4db1f3f760
|
@ -95,8 +95,7 @@ DeletePredictableAccelerationProperties(DeviceIntPtr,
|
||||||
/**
|
/**
|
||||||
* Init DeviceVelocity struct so it should match the average case
|
* Init DeviceVelocity struct so it should match the average case
|
||||||
*/
|
*/
|
||||||
void
|
static void InitVelocityData(DeviceVelocityPtr vel)
|
||||||
InitVelocityData(DeviceVelocityPtr vel)
|
|
||||||
{
|
{
|
||||||
memset(vel, 0, sizeof(DeviceVelocityRec));
|
memset(vel, 0, sizeof(DeviceVelocityRec));
|
||||||
|
|
||||||
|
|
|
@ -81,9 +81,6 @@ typedef struct _DeviceVelocityRec {
|
||||||
} statistics;
|
} statistics;
|
||||||
} DeviceVelocityRec, *DeviceVelocityPtr;
|
} DeviceVelocityRec, *DeviceVelocityPtr;
|
||||||
|
|
||||||
extern _X_EXPORT void
|
|
||||||
InitVelocityData(DeviceVelocityPtr vel);
|
|
||||||
|
|
||||||
extern _X_EXPORT void
|
extern _X_EXPORT void
|
||||||
InitTrackers(DeviceVelocityPtr vel, int ntracker);
|
InitTrackers(DeviceVelocityPtr vel, int ntracker);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue