From: badlogicgames Date: Fri, 24 Jun 2011 22:43:37 +0000 (+0000) Subject: [updated] to latest lwjgl nightlies, delta and mouse coord clipping in lwjgl backend... X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=cb8bf91cdc38e09d0734a165fea41a0a57aa0f53;p=mikumikustudio%2Flibgdx-mikumikustudio.git [updated] to latest lwjgl nightlies, delta and mouse coord clipping in lwjgl backend now work as expected :D Thanks MatthiasM! --- diff --git a/backends/gdx-backend-jogl/libs/gdx-backend-jogl-natives.jar b/backends/gdx-backend-jogl/libs/gdx-backend-jogl-natives.jar index bfdc8e7df..caef9527e 100644 Binary files a/backends/gdx-backend-jogl/libs/gdx-backend-jogl-natives.jar and b/backends/gdx-backend-jogl/libs/gdx-backend-jogl-natives.jar differ diff --git a/backends/gdx-backend-lwjgl/libs/gdx-backend-lwjgl-natives.jar b/backends/gdx-backend-lwjgl/libs/gdx-backend-lwjgl-natives.jar index 1d517f348..19f26f628 100644 Binary files a/backends/gdx-backend-lwjgl/libs/gdx-backend-lwjgl-natives.jar and b/backends/gdx-backend-lwjgl/libs/gdx-backend-lwjgl-natives.jar differ diff --git a/backends/gdx-backend-lwjgl/libs/lwjgl_util.jar b/backends/gdx-backend-lwjgl/libs/lwjgl_util.jar index 93700c46c..5ad514ac7 100644 Binary files a/backends/gdx-backend-lwjgl/libs/lwjgl_util.jar and b/backends/gdx-backend-lwjgl/libs/lwjgl_util.jar differ diff --git a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglInput.java b/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglInput.java index 44f5579ef..26a104600 100644 --- a/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglInput.java +++ b/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/LwjglInput.java @@ -91,6 +91,7 @@ final class LwjglInput implements Input { public LwjglInput () { Keyboard.enableRepeatEvents(false); + Mouse.setClipMouseCoordinatesToWindow(false); } public float getAccelerometerX () { diff --git a/backends/gdx-openal/libs/lwjgl-debug.jar b/backends/gdx-openal/libs/lwjgl-debug.jar index b1b424fa2..da6faecb4 100644 Binary files a/backends/gdx-openal/libs/lwjgl-debug.jar and b/backends/gdx-openal/libs/lwjgl-debug.jar differ diff --git a/backends/gdx-openal/libs/lwjgl.jar b/backends/gdx-openal/libs/lwjgl.jar index 0f5681549..71edca910 100644 Binary files a/backends/gdx-openal/libs/lwjgl.jar and b/backends/gdx-openal/libs/lwjgl.jar differ