aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-10-31 18:00:33 +0100
committeremersion <contact@emersion.fr>2017-11-01 11:00:27 +0100
commit0beae99188d7885bed15eef548acf6b2a9fb9f79 (patch)
treebf655b59d0c6073e0f20accfcc929974d958948a /backend
parentc7c0d34e920dea27cab3b88c50b1202343a54435 (diff)
Apply output transformation to pointer events in Wayland backend
Diffstat (limited to 'backend')
-rw-r--r--backend/drm/drm.c44
-rw-r--r--backend/wayland/wl_seat.c23
2 files changed, 27 insertions, 40 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c
index 6cbb0535..cfaaae21 100644
--- a/backend/drm/drm.c
+++ b/backend/drm/drm.c
@@ -558,39 +558,17 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output,
}
}
- switch (output->transform) {
- case WL_OUTPUT_TRANSFORM_90:
- plane->cursor_hotspot_x = hotspot_x;
- plane->cursor_hotspot_y = -plane->surf.height + hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_180:
- plane->cursor_hotspot_x = plane->surf.width - hotspot_x;
- plane->cursor_hotspot_y = plane->surf.height - hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_270:
- plane->cursor_hotspot_x = -plane->surf.height + hotspot_x;
- plane->cursor_hotspot_y = hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_FLIPPED:
- plane->cursor_hotspot_x = plane->surf.width - hotspot_x;
- plane->cursor_hotspot_y = hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_FLIPPED_90:
- plane->cursor_hotspot_x = hotspot_x;
- plane->cursor_hotspot_y = -hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_FLIPPED_180:
- plane->cursor_hotspot_x = hotspot_x;
- plane->cursor_hotspot_y = plane->surf.height - hotspot_y;
- break;
- case WL_OUTPUT_TRANSFORM_FLIPPED_270:
- plane->cursor_hotspot_x = -plane->surf.height + hotspot_x;
- plane->cursor_hotspot_y = plane->surf.width - hotspot_y;
- break;
- default: // WL_OUTPUT_TRANSFORM_NORMAL
- plane->cursor_hotspot_x = hotspot_x;
- plane->cursor_hotspot_y = hotspot_y;
- }
+ struct wlr_box hotspot_box = {
+ .width = plane->surf.width,
+ .height = plane->surf.height,
+ .x = hotspot_x,
+ .y = hotspot_y,
+ };
+ struct wlr_box transformed_hotspot_box;
+ wlr_output_transform_apply_to_box(output->transform,
+ &hotspot_box, &transformed_hotspot_box);
+ plane->cursor_hotspot_x = transformed_hotspot_box.x;
+ plane->cursor_hotspot_y = transformed_hotspot_box.y;
if (!update_pixels) {
// Only update the cursor hotspot
diff --git a/backend/wayland/wl_seat.c b/backend/wayland/wl_seat.c
index 0d8e5b1f..deed215e 100644
--- a/backend/wayland/wl_seat.c
+++ b/backend/wayland/wl_seat.c
@@ -42,21 +42,30 @@ static void pointer_handle_motion(void *data, struct wl_pointer *wl_pointer,
uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) {
struct wlr_input_device *dev = data;
assert(dev && dev->pointer);
- struct wlr_wl_pointer *wlr_wl_pointer = (struct wlr_wl_pointer *)dev->pointer;
+ struct wlr_wl_pointer *wlr_wl_pointer =
+ (struct wlr_wl_pointer *)dev->pointer;
if (!wlr_wl_pointer->current_output) {
wlr_log(L_ERROR, "pointer motion event without current output");
return;
}
- int width, height;
+
+ struct wlr_box box;
wl_egl_window_get_attached_size(wlr_wl_pointer->current_output->egl_window,
- &width, &height);
+ &box.width, &box.height);
+ box.x = wl_fixed_to_int(surface_x);
+ box.y = wl_fixed_to_int(surface_y);
+ struct wlr_box transformed;
+ wlr_output_transform_apply_to_box(
+ wlr_wl_pointer->current_output->wlr_output.transform, &box,
+ &transformed);
+
struct wlr_event_pointer_motion_absolute wlr_event;
wlr_event.device = dev;
wlr_event.time_msec = time;
- wlr_event.width_mm = width;
- wlr_event.height_mm = height;
- wlr_event.x_mm = wl_fixed_to_double(surface_x);
- wlr_event.y_mm = wl_fixed_to_double(surface_y);
+ wlr_event.width_mm = transformed.width;
+ wlr_event.height_mm = transformed.height;
+ wlr_event.x_mm = transformed.x;
+ wlr_event.y_mm = transformed.y;
wl_signal_emit(&dev->pointer->events.motion_absolute, &wlr_event);
}