diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2009-08-24 15:31:55 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2009-08-24 15:32:59 +1000 |
commit | 207a7f3d5bd559ffb67de2910795d7cd6508ce09 (patch) | |
tree | 96dffdb1b7dc62cf2832c48e3aa1cf98fad9bdb7 /include | |
parent | a8a8b40fa447c85eb5d1d61ef416d3cf198c72c1 (diff) |
Update XIWarpPointer to take doubles (inputproto >= 1.9.99.902)
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/extensions/XInput2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/X11/extensions/XInput2.h b/include/X11/extensions/XInput2.h index 60e4bb1..e6c7b30 100644 --- a/include/X11/extensions/XInput2.h +++ b/include/X11/extensions/XInput2.h @@ -314,12 +314,12 @@ extern Bool XIWarpPointer( int deviceid, Window src_win, Window dst_win, - int src_x, - int src_y, + double src_x, + double src_y, unsigned int src_width, unsigned int src_height, - int dst_x, - int dst_y + double dst_x, + double dst_y ); extern Status XIDefineCursor( |