Greetings,
I updated to build06, launched Nov. 1, 2004. Previously, I used b04.
Even running the Test.java program in How to: Getting started with JOGL, I got this error:
[b]java.lang.UnsatisfiedLinkError: CreateDummyWindow
at net.java.games.jogl.impl.windows.WGL.CreateDummyWindow(Native Method)
at net.java.games.jogl.impl.windows.WindowsGLContextFactory$NativeWindow
Thread.run(WindowsGLContextFactory.java:266)[/b]
and it seems generated from the code:
SwingUtilities.invokeLater (
new Runnable() {
public void run() {
app.setVisible(true);
}
}
);
or in another program, at:
testFrame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
animator.stop();
System.exit(0);
}
}
);
Appreciate any help.