summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2012-05-30 16:32:00 +0100
committerKristian Høgsberg <krh@bitplanet.net>2012-05-31 15:45:25 -0400
commit2fce4028d6dd5c29649bd2ce25df4c3d4e400a92 (patch)
tree03983c2b2584cdb470520462f5a0900831dcf345
parent0c1e46eb18ab48c48ce29464deb4ce5e23130c2b (diff)
Convert wl_pointer::axis to wl_fixed_t
To go with the matching protocol change. Signed-off-by: Daniel Stone <daniel@fooishbar.org>
-rw-r--r--clients/simple-egl.c2
-rw-r--r--clients/window.c2
-rw-r--r--src/compositor-wayland.c4
-rw-r--r--src/compositor.c2
-rw-r--r--tests/test-client.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/clients/simple-egl.c b/clients/simple-egl.c
index 831f6af..5dd44f9 100644
--- a/clients/simple-egl.c
+++ b/clients/simple-egl.c
@@ -385,7 +385,7 @@ pointer_handle_button(void *data, struct wl_pointer *wl_pointer,
static void
pointer_handle_axis(void *data, struct wl_pointer *wl_pointer,
- uint32_t time, uint32_t axis, int32_t value)
+ uint32_t time, uint32_t axis, wl_fixed_t value)
{
}
diff --git a/clients/window.c b/clients/window.c
index f1f9176..9147da2 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -1813,7 +1813,7 @@ pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial,
static void
pointer_handle_axis(void *data, struct wl_pointer *pointer,
- uint32_t time, uint32_t axis, int32_t value)
+ uint32_t time, uint32_t axis, wl_fixed_t value)
{
}
diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c
index 0615f95..4f763ff 100644
--- a/src/compositor-wayland.c
+++ b/src/compositor-wayland.c
@@ -559,12 +559,12 @@ input_handle_button(void *data, struct wl_pointer *pointer,
static void
input_handle_axis(void *data, struct wl_pointer *pointer,
- uint32_t time, uint32_t axis, int32_t value)
+ uint32_t time, uint32_t axis, wl_fixed_t value)
{
struct wayland_input *input = data;
struct wayland_compositor *c = input->compositor;
- notify_axis(&c->base.seat->seat, time, axis, wl_fixed_from_int(value));
+ notify_axis(&c->base.seat->seat, time, axis, value);
}
static const struct wl_pointer_listener pointer_listener = {
diff --git a/src/compositor.c b/src/compositor.c
index 037c2c0..e7ae968 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1728,7 +1728,7 @@ notify_axis(struct wl_seat *seat, uint32_t time, uint32_t axis,
if (seat->pointer->focus_resource)
wl_pointer_send_axis(seat->pointer->focus_resource, time, axis,
- wl_fixed_to_int(value));
+ value);
}
static int
diff --git a/tests/test-client.c b/tests/test-client.c
index 7c8f3fe..60ba051 100644
--- a/tests/test-client.c
+++ b/tests/test-client.c
@@ -107,7 +107,7 @@ pointer_handle_button(void *data, struct wl_pointer *pointer,
static void
pointer_handle_axis(void *data, struct wl_pointer *pointer,
- uint32_t time, uint32_t axis, int32_t value)
+ uint32_t time, uint32_t axis, wl_fixed_t value)
{
}