fix: static method usage

This commit is contained in:
Brian Matzon 2003-08-02 20:52:49 +00:00
parent 4283f40244
commit 80cf5b1dcc
13 changed files with 53 additions and 47 deletions

View file

@ -97,17 +97,17 @@ public final class VBOTest {
try {
init();
while (!finished) {
gl.tick();
Window.tick();
if (gl.isMinimized())
if (Window.isMinimized())
Thread.sleep(200);
else if (gl.isCloseRequested())
else if (Window.isCloseRequested())
System.exit(0);
Keyboard.poll();
mainLoop();
render();
gl.paint();
Window.paint();
}
} catch (Throwable t) {
t.printStackTrace();