From: <ma...@us...> - 2010-04-29 17:37:26
|
Revision: 3337 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3337&view=rev Author: matzon Date: 2010-04-29 17:37:18 +0000 (Thu, 29 Apr 2010) Log Message: ----------- yes, we really should... Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java Modified: trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2010-04-26 21:52:59 UTC (rev 3336) +++ trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2010-04-29 17:37:18 UTC (rev 3337) @@ -467,7 +467,7 @@ } /** - * @return Current events delta x. Only valid when the mouse is grabbed. + * @return Current events delta x. */ public static int getEventDX() { synchronized (OpenGLPackageAccess.global_lock) { @@ -476,7 +476,7 @@ } /** - * @return Current events delta y. Only valid when the mouse is grabbed. + * @return Current events delta y. */ public static int getEventDY() { synchronized (OpenGLPackageAccess.global_lock) { @@ -485,7 +485,7 @@ } /** - * @return Current events absolute x. Only valid when the mouse is not grabbed. + * @return Current events absolute x. */ public static int getEventX() { synchronized (OpenGLPackageAccess.global_lock) { @@ -494,7 +494,7 @@ } /** - * @return Current events absolute y. Only valid when the mouse is not grabbed. + * @return Current events absolute y. */ public static int getEventY() { synchronized (OpenGLPackageAccess.global_lock) { @@ -550,7 +550,7 @@ } /** - * @return Movement on the x axis since last time getDX() was called. Only valid when the mouse is grabbed. + * @return Movement on the x axis since last time getDX() was called. */ public static int getDX() { synchronized (OpenGLPackageAccess.global_lock) { @@ -561,7 +561,7 @@ } /** - * @return Movement on the y axis since last time getDY() was called. Only valid when the mouse is grabbed. + * @return Movement on the y axis since last time getDY() was called. */ public static int getDY() { synchronized (OpenGLPackageAccess.global_lock) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |