summaryrefslogtreecommitdiff
path: root/test/litest.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/litest.h')
-rw-r--r--test/litest.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/litest.h b/test/litest.h
index 3e75dd58..2363c7f9 100644
--- a/test/litest.h
+++ b/test/litest.h
@@ -108,16 +108,16 @@ void litest_event(struct litest_device *t,
void litest_touch_up(struct litest_device *d, unsigned int slot);
void litest_touch_move(struct litest_device *d,
unsigned int slot,
- int x,
- int y);
+ double x,
+ double y);
void litest_touch_down(struct litest_device *d,
unsigned int slot,
- int x,
- int y);
+ double x,
+ double y);
void litest_touch_move_to(struct litest_device *d,
unsigned int slot,
- int x_from, int y_from,
- int x_to, int y_to,
+ double x_from, double y_from,
+ double x_to, double y_to,
int steps);
void litest_button_click(struct litest_device *d,
unsigned int button,