Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl
In directory sc8-pr-cvs1:/tmp/cvs-serv26209/java/org/lwjgl/test/opengl
Modified Files:
FullScreenWindowedTest.java Game.java PbufferTest.java
VBOIndexTest.java VBOTest.java
Log Message:
renamed updateStatus to update
Index: FullScreenWindowedTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/FullScreenWindowedTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/FullScreenWindowedTest.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- FullScreenWindowedTest.java 17 Aug 2003 09:27:31 -0000 1.13
+++ FullScreenWindowedTest.java 17 Aug 2003 14:10:51 -0000 1.14
@@ -113,7 +113,7 @@
while (!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)
&& !Window.isCloseRequested()) {
// allow subsystem to get a chance to run too
- Window.updateState();
+ Window.update();
if (!Window.isMinimized()) {
// check keyboard input
Index: Game.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/Game.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/Game.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Game.java 17 Aug 2003 09:27:31 -0000 1.19
+++ Game.java 17 Aug 2003 14:10:51 -0000 1.20
@@ -98,7 +98,7 @@
try {
init();
while (!finished) {
- Window.updateState();
+ Window.update();
if (Window.isMinimized())
Thread.sleep(200);
Index: PbufferTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/PbufferTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/PbufferTest.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- PbufferTest.java 17 Aug 2003 09:27:32 -0000 1.11
+++ PbufferTest.java 17 Aug 2003 14:10:51 -0000 1.12
@@ -122,7 +122,7 @@
while (!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)
&& !Window.isCloseRequested()) {
// allow subsystem to get a chance to run too
- Window.updateState();
+ Window.update();
if (!Window.isMinimized()) {
// check keyboard input
Index: VBOIndexTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/VBOIndexTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/VBOIndexTest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- VBOIndexTest.java 17 Aug 2003 09:27:32 -0000 1.2
+++ VBOIndexTest.java 17 Aug 2003 14:10:51 -0000 1.3
@@ -100,7 +100,7 @@
try {
init();
while (!finished) {
- Window.updateState();
+ Window.update();
if (Window.isMinimized())
Thread.sleep(200);
Index: VBOTest.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/VBOTest.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/test/opengl/VBOTest.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- VBOTest.java 17 Aug 2003 09:27:32 -0000 1.8
+++ VBOTest.java 17 Aug 2003 14:10:51 -0000 1.9
@@ -96,7 +96,7 @@
try {
init();
while (!finished) {
- Window.updateState();
+ Window.update();
if (Window.isMinimized())
Thread.sleep(200);
|