*** empty log message ***

This commit is contained in:
Elias Naur 2003-08-17 17:03:01 +00:00
parent f872c3b2da
commit ec2ee3e2df
14 changed files with 15 additions and 15 deletions

View File

@ -31,7 +31,7 @@ public class WindowCreationTest {
System.out.println("Display created");
while(!Window.isCloseRequested()) {
Window.update();
Window.updateState();
try {
Thread.sleep(100);
} catch (Exception e) {

View File

@ -160,7 +160,7 @@ public class ControllerCreationTest {
while (Sys.getTime() < endtime) {
Window.update();
Window.updateState();
Controller.poll();

View File

@ -113,7 +113,7 @@ public class ControllerTest {
private void wiggleController() {
while (!Window.isCloseRequested()) {
Window.update();
Window.updateState();
if(Window.isMinimized()) {
try {

View File

@ -149,7 +149,7 @@ public class HWCursorTest {
while (!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)
&& !Window.isCloseRequested()) {
// allow subsystem to get a chance to run too
Window.update();
Window.updateState();
if (!Window.isMinimized()) {
// check keyboard input

View File

@ -118,7 +118,7 @@ public class KeyboardTest {
Keyboard.enableTranslation();
while (!Window.isCloseRequested()) {
Window.update();
Window.updateState();
if(Window.isMinimized()) {
try {

View File

@ -162,7 +162,7 @@ public class MouseCreationTest {
long endtime = Sys.getTime() + Sys.getTimerResolution() * 5;
while (Sys.getTime() < endtime) {
Window.update();
Window.updateState();
Mouse.poll();

View File

@ -113,7 +113,7 @@ public class MouseTest {
private void wiggleMouse() {
while (!Window.isCloseRequested()) {
Window.update();
Window.updateState();
if(Window.isMinimized()) {
try {

View File

@ -156,7 +156,7 @@ public class MovingSoundTest extends BasicTest {
System.out.println("Move source with arrow keys\nMove listener with right shift and arrowkeys\nEnable EAX effect by pressing e (if available)\nExit with ESC");
while(!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)) {
Window.update();
Window.updateState();
Keyboard.poll();
if(Keyboard.isKeyDown(Keyboard.KEY_LEFT)) {

View File

@ -113,7 +113,7 @@ public class FullScreenWindowedTest {
while (!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)
&& !Window.isCloseRequested()) {
// allow subsystem to get a chance to run too
Window.update();
Window.updateState();
if (!Window.isMinimized()) {
// check keyboard input

View File

@ -98,7 +98,7 @@ public final class Game {
try {
init();
while (!finished) {
Window.update();
Window.updateState();
if (Window.isMinimized())
Thread.sleep(200);

View File

@ -122,7 +122,7 @@ public class PbufferTest {
while (!Keyboard.isKeyDown(Keyboard.KEY_ESCAPE)
&& !Window.isCloseRequested()) {
// allow subsystem to get a chance to run too
Window.update();
Window.updateState();
if (!Window.isMinimized()) {
// check keyboard input

View File

@ -100,7 +100,7 @@ public final class VBOIndexTest {
try {
init();
while (!finished) {
Window.update();
Window.updateState();
if (Window.isMinimized())
Thread.sleep(200);

View File

@ -96,7 +96,7 @@ public final class VBOTest {
try {
init();
while (!finished) {
Window.update();
Window.updateState();
if (Window.isMinimized())
Thread.sleep(200);

View File

@ -51,8 +51,8 @@ if test "x$JAVA_HOME" = x; then
else
AC_MSG_RESULT($JAVA_HOME)
JAVA_HOME="$JAVA_HOME"
CPPFLAGS="$CPPFLAGS -fno-rtti -fno-exceptions -pthread -D_X11 -Wall -I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
CFLAGS="$CFLAGS -pthread -D_X11 -Wall -I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
CPPFLAGS="$CPPFLAGS -D_DEBUG -fno-rtti -fno-exceptions -pthread -D_X11 -Wall -I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
CFLAGS="$CFLAGS -D_DEBUG -pthread -D_X11 -Wall -I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
fi
dnl Checks for libraries.