c72d21ad14
- Add some extra fixes which are pending upstream - This also adds PointerWarping emulation to Xwayland, which should improve compatiblity with many games
51 lines
1.7 KiB
Diff
51 lines
1.7 KiB
Diff
From f0429ee0a57f2cee8ca5e5bfc60fe43152c0f236 Mon Sep 17 00:00:00 2001
|
|
From: Rui Matos <tiagomatos@gmail.com>
|
|
Date: Tue, 25 Oct 2016 19:24:49 +0200
|
|
Subject: [PATCH xserver v2 3/7] xwayland: Transform pointer enter event
|
|
coordinates
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Pointer enter event coordinates are surface relative and we need them
|
|
to be screen relative for pScreen->SetCursorPosition().
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=758283
|
|
|
|
Signed-off-by: Rui Matos <tiagomatos@gmail.com>
|
|
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
|
|
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
|
|
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
---
|
|
hw/xwayland/xwayland-input.c | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/xwayland/xwayland-input.c b/hw/xwayland/xwayland-input.c
|
|
index 4d447a5..1991076 100644
|
|
--- a/hw/xwayland/xwayland-input.c
|
|
+++ b/hw/xwayland/xwayland-input.c
|
|
@@ -298,6 +298,7 @@ pointer_handle_enter(void *data, struct wl_pointer *pointer,
|
|
int i;
|
|
int sx = wl_fixed_to_int(sx_w);
|
|
int sy = wl_fixed_to_int(sy_w);
|
|
+ int dx, dy;
|
|
ScreenPtr pScreen = xwl_seat->xwl_screen->screen;
|
|
ValuatorMask mask;
|
|
|
|
@@ -314,9 +315,11 @@ pointer_handle_enter(void *data, struct wl_pointer *pointer,
|
|
xwl_seat->pointer_enter_serial = serial;
|
|
|
|
xwl_seat->focus_window = wl_surface_get_user_data(surface);
|
|
+ dx = xwl_seat->focus_window->window->drawable.x;
|
|
+ dy = xwl_seat->focus_window->window->drawable.y;
|
|
|
|
master = GetMaster(dev, POINTER_OR_FLOAT);
|
|
- (*pScreen->SetCursorPosition) (dev, pScreen, sx, sy, TRUE);
|
|
+ (*pScreen->SetCursorPosition) (dev, pScreen, dx + sx, dy + sy, TRUE);
|
|
|
|
miPointerInvalidateSprite(master);
|
|
|
|
--
|
|
2.9.3
|
|
|