Hello!
I have this:
import javax.media.opengl.*;
import javax.swing.JFrame;
public class Window extends JFrame {
public Window() {
setTitle("JOGL Test");
setSize(500,500);
setResizable(false);
GLCapabilities glCaps = new GLCapabilities();
GLCanvas canvas = GLDrawableFactory.getFactory().createGLCanvas( new GLCapabilities() );
}
}
And i can’t not choose
createGLCanvas
I tried to import “net.java.games.jogl.*;” but it can’t be resolved, i downloaded the newest jogl.jar (-> \ext) and the jogl.dll (-> \bin).
What’s wrong here?