Convert wl_pointer::axis to wl_fixed_t
authorDaniel Stone <daniel@fooishbar.org>
Wed, 30 May 2012 15:32:00 +0000 (16:32 +0100)
committerKristian Høgsberg <krh@bitplanet.net>
Thu, 31 May 2012 19:45:25 +0000 (15:45 -0400)
To go with the matching protocol change.

Signed-off-by: Daniel Stone <daniel@fooishbar.org>
clients/simple-egl.c
clients/window.c
src/compositor-wayland.c
src/compositor.c
tests/test-client.c

index 831f6af..5dd44f9 100644 (file)
@@ -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)
 {
 }
 
index f1f9176..9147da2 100644 (file)
@@ -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)
 {
 }
 
index 0615f95..4f763ff 100644 (file)
@@ -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 = {
index 037c2c0..e7ae968 100644 (file)
@@ -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
index 7c8f3fe..60ba051 100644 (file)
@@ -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)
 {
 }