xfree86: drop unused xf86PostMotionEventP()

Not used anywhere, so no need to keep it around any longer.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-05-19 17:46:20 +02:00
parent bf27c3441f
commit fd80169cfe
2 changed files with 0 additions and 18 deletions

View File

@ -1195,20 +1195,6 @@ xf86PostMotionEvent(DeviceIntPtr device,
xf86PostMotionEventM(device, is_absolute, &mask);
}
void
xf86PostMotionEventP(DeviceIntPtr device,
int is_absolute,
int first_valuator,
int num_valuators, const int *valuators)
{
ValuatorMask mask;
XI_VERIFY_VALUATORS(num_valuators);
valuator_mask_set_range(&mask, first_valuator, num_valuators, valuators);
xf86PostMotionEventM(device, is_absolute, &mask);
}
static int
xf86CheckMotionEvent4DGA(DeviceIntPtr device, int is_absolute,
const ValuatorMask *mask)

View File

@ -118,10 +118,6 @@ struct _InputInfoRec {
extern _X_EXPORT void xf86PostMotionEvent(DeviceIntPtr device, int is_absolute,
int first_valuator, int num_valuators,
...);
extern _X_EXPORT void xf86PostMotionEventP(DeviceIntPtr device, int is_absolute,
int first_valuator,
int num_valuators,
const int *valuators);
extern _X_EXPORT void xf86PostMotionEventM(DeviceIntPtr device, int is_absolute,
const ValuatorMask *mask);
extern _X_EXPORT void xf86PostProximityEvent(DeviceIntPtr device, int is_in,