xf86-video-intel: tools/virtual.c

Chris Wilson ickle at kemper.freedesktop.org
Tue Feb 18 09:06:52 CET 2014


 tools/virtual.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ecc20fbcf8d5adb6c3b7d005c01788e35bba9d3c
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Tue Feb 18 07:56:07 2014 +0000

    intel-virtual-output: Discard unwanted events from the mouse recorder
    
    X always sends MappingNotify events (there is no way for the client
    to ignore them). In particular, MappingNotify would be sent after a VT
    switch, and this would knock out our ability to track the cursor..
    
    Reported-by: Raul Dias <raul at dias.com.br>
    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=75115
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/tools/virtual.c b/tools/virtual.c
index cba247b..8b8d511 100644
--- a/tools/virtual.c
+++ b/tools/virtual.c
@@ -2987,7 +2987,8 @@ int main(int argc, char **argv)
 		if (reconfigure && context_update(&ctx))
 			display_reset_damage(ctx.display);
 
-		XPending(ctx.record);
+		while (XPending(ctx.record)) /* discard all implicit events */
+			XNextEvent(ctx.record, &e);
 
 		if (ctx.timer_active && read(ctx.timer, &count, sizeof(count)) > 0) {
 			struct clone *clone;


More information about the xorg-commit mailing list