qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6477] Allow usb tablet to be used with vmware-vga hwcursor


From: Andrzej Zaborowski
Subject: [Qemu-devel] [6477] Allow usb tablet to be used with vmware-vga hwcursor.
Date: Thu, 29 Jan 2009 23:29:52 +0000

Revision: 6477
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6477
Author:   balrog
Date:     2009-01-29 23:29:52 +0000 (Thu, 29 Jan 2009)

Log Message:
-----------
Allow usb tablet to be used with vmware-vga hwcursor.

Assume that in absolute mode the guest cursor always follows host cursor
and there's no need to move host cursor.  This avoids a strange feedback
loop.

Modified Paths:
--------------
    trunk/sdl.c

Modified: trunk/sdl.c
===================================================================
--- trunk/sdl.c 2009-01-29 23:19:20 UTC (rev 6476)
+++ trunk/sdl.c 2009-01-29 23:29:52 UTC (rev 6477)
@@ -278,7 +278,8 @@
 {
     if (guest_cursor) {
         SDL_SetCursor(guest_sprite);
-        SDL_WarpMouse(guest_x, guest_y);
+        if (!kbd_mouse_is_absolute() && !absolute_enabled)
+            SDL_WarpMouse(guest_x, guest_y);
     } else
         sdl_hide_cursor();
 
@@ -549,7 +550,8 @@
             sdl_show_cursor();
         if (gui_grab || kbd_mouse_is_absolute() || absolute_enabled) {
             SDL_SetCursor(guest_sprite);
-            SDL_WarpMouse(x, y);
+            if (!kbd_mouse_is_absolute() && !absolute_enabled)
+                SDL_WarpMouse(x, y);
         }
     } else if (gui_grab)
         sdl_hide_cursor();






reply via email to

[Prev in Thread] Current Thread [Next in Thread]