evdev: Pass a motion delta to pointer constrain callback

The constrain callback cannot rely on the pointer position of the
corresponding ClutterInputDevice to get the actual delta of the motion
event that is to be constrained since it is only updated when an event is
dispatched. So change the API to pass the previous pointer position when
constraining.

https://bugzilla.gnome.org/show_bug.cgi?id=752752
This commit is contained in:
Jonas Ådahl
2015-07-07 10:23:12 +08:00
parent 52e38d1ab7
commit 8181ef15d6
3 changed files with 13 additions and 1 deletions

View File

@ -82,6 +82,8 @@ void clutter_evdev_reclaim_devices (void);
*/
typedef void (*ClutterPointerConstrainCallback) (ClutterInputDevice *device,
guint32 time,
float prev_x,
float prev_y,
float *x,
float *y,
gpointer user_data);