Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20933/src/java/org/lwjgl/test/input Modified Files: ControllerCreationTest.java ControllerTest.java HWCursorTest.java KeyboardTest.java MouseCreationTest.java MouseTest.java Log Message: Fixed tests Index: ControllerCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/ControllerCreationTest.java,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- ControllerCreationTest.java 8 Feb 2004 20:32:10 -0000 1.21 +++ ControllerCreationTest.java 15 Feb 2004 15:34:56 -0000 1.22 @@ -74,9 +74,9 @@ try { if(fullscreen) { Display.setDisplayMode(displayMode); - Window.create("ControllerCreationTest", 16, 0, 0, 0); + Window.create("ControllerCreationTest", 16, 0, 0, 0, 0); } else { - Window.create("ControllerCreationTest", 50, 50, 640, 480, 16, 0, 0, 0); + Window.create("ControllerCreationTest", 50, 50, 640, 480, 16, 0, 0, 0, 0); } } catch (Exception e) { Index: ControllerTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/ControllerTest.java,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ControllerTest.java 4 Feb 2004 21:44:13 -0000 1.18 +++ ControllerTest.java 15 Feb 2004 15:34:56 -0000 1.19 @@ -117,9 +117,9 @@ private void setupDisplay() { try { if (FULLSCREEN) { - Window.create("ControllerTest", 16, 0, 0, 0); + Window.create("ControllerTest", 16, 0, 0, 0, 0); } else { - Window.create("ControllerTest", 50, 50, WINDOW_WIDTH, WINDOW_HEIGHT, 16, 0, 0, 0); + Window.create("ControllerTest", 50, 50, WINDOW_WIDTH, WINDOW_HEIGHT, 16, 0, 0, 0, 0); } Window.setVSyncEnabled(true); } catch (Exception e) { Index: HWCursorTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/HWCursorTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- HWCursorTest.java 8 Feb 2004 20:32:10 -0000 1.25 +++ HWCursorTest.java 15 Feb 2004 15:34:56 -0000 1.26 @@ -84,7 +84,7 @@ mode = findDisplayMode(800, 600, 16); // start of in windowed mode - Window.create("Test", 50, 50, mode.width, mode.height, mode.bpp, 0, 0, 0); + Window.create("Test", 50, 50, mode.width, mode.height, mode.bpp, 0, 0, 0, 0); glInit(); @@ -234,7 +234,7 @@ Window.destroy(); Display.setDisplayMode(mode); - Window.create("Test", mode.bpp, 0, 0, 0); + Window.create("Test", mode.bpp, 0, 0, 0, 0); glInit(); @@ -260,7 +260,7 @@ Window.destroy(); Display.resetDisplayMode(); - Window.create("Test", 50, 50, mode.width, mode.height, mode.bpp, 0, 0, 0); + Window.create("Test", 50, 50, mode.width, mode.height, mode.bpp, 0, 0, 0, 0); glInit(); Index: KeyboardTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/KeyboardTest.java,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- KeyboardTest.java 5 Feb 2004 16:23:04 -0000 1.20 +++ KeyboardTest.java 15 Feb 2004 15:34:56 -0000 1.21 @@ -76,7 +76,7 @@ private void setupDisplay(boolean fullscreen) { try { - Window.create("KeyboardTest", 50, 50, 640, 480, 16, 0, 0, 0); + Window.create("KeyboardTest", 50, 50, 640, 480, 16, 0, 0, 0, 0); } catch (Exception e) { e.printStackTrace(); System.exit(-1); Index: MouseCreationTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/MouseCreationTest.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- MouseCreationTest.java 8 Feb 2004 20:32:10 -0000 1.25 +++ MouseCreationTest.java 15 Feb 2004 15:34:56 -0000 1.26 @@ -74,9 +74,9 @@ try { if(fullscreen) { Display.setDisplayMode(displayMode); - Window.create("MouseCreationTest", 16, 0, 0, 0); + Window.create("MouseCreationTest", 16, 0, 0, 0, 0); } else { - Window.create("MouseCreationTest", 50, 50, 640, 480, 16, 0, 0, 0); + Window.create("MouseCreationTest", 50, 50, 640, 480, 16, 0, 0, 0, 0); } } catch (Exception e) { Index: MouseTest.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/input/MouseTest.java,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- MouseTest.java 8 Feb 2004 20:32:10 -0000 1.27 +++ MouseTest.java 15 Feb 2004 15:34:56 -0000 1.28 @@ -118,9 +118,9 @@ private void setupDisplay() { try { if (FULLSCREEN) { - Window.create("MouseTest", 16, 0, 0, 0); + Window.create("MouseTest", 16, 0, 0, 0, 0); } else { - Window.create("MouseTest", 50, 50, WINDOW_WIDTH, WINDOW_HEIGHT, 16, 0, 0, 0); + Window.create("MouseTest", 50, 50, WINDOW_WIDTH, WINDOW_HEIGHT, 16, 0, 0, 0, 0); } Window.setVSyncEnabled(true); } catch (Exception e) { |