From 1600391a91695a5f0bd612ecd3bbbc2e954fe018 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 15 Jan 2008 13:04:35 +0000 Subject: [PATCH] Trying async mouse input. --- Source/OpenTK/Platform/X11/X11Input.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/OpenTK/Platform/X11/X11Input.cs b/Source/OpenTK/Platform/X11/X11Input.cs index 1c3a80fb..53329ce9 100644 --- a/Source/OpenTK/Platform/X11/X11Input.cs +++ b/Source/OpenTK/Platform/X11/X11Input.cs @@ -151,7 +151,7 @@ namespace OpenTK.Platform.X11 //Debug.Print("Keyboard press"); keyboardDriver.ProcessKeyboardEvent(ref e.KeyEvent); break; - /* See MouseDriver.Poll() instead. + // See MouseDriver.Poll() instead. case XEventName.ButtonPress: case XEventName.ButtonRelease: //Debug.Print("Button"); @@ -162,7 +162,6 @@ namespace OpenTK.Platform.X11 //Debug.Print("Mouse move"); mouseDriver.ProcessMotion(ref e.MotionEvent); break; - */ } } @@ -204,7 +203,7 @@ namespace OpenTK.Platform.X11 /// public void Poll() { - mouseDriver.Poll(); + //mouseDriver.Poll(); }