添加maven依赖时要添加两个依赖:
org.jogamp.jogl
jogl-all
2.3.2
org.jogamp.gluegen
gluegen-rt
2.3.2
若只添加jogl,则在编译时不报错,在运行时会出现下面的错误:
Error:(28, 29) java: 无法访问com.jogamp.common.type.WriteCloneable
找不到com.jogamp.common.type.WriteCloneable的类文件
具体的使用方式可以根据用户将OpenGL与哪种Java GUI库结合来自己决定:
You can use JOGL with three different Java window toolkits: AWT, SWT, and Swing. This page shows examples of all three toolkits, plus variations on two of them. The example program just draws one triangle that fills a resizable window.
Usually the window toolkit you use for JOGL is dictated by your application. If you're writing an Eclipse-based application, it makes sense to use SWT, since it's the native windowing system of Eclipse. Otherwise, Swing is probably the way to go. If you want to wrap native controls instead of drawing in software like Swing, and you're not writing an Eclipse app, AWT is your best choice.
First, a base class that we'll use in all five examples. This class abstracts out all the pure OpenGL calls that don't depend on the choice of window toolkit.
import com.jogamp.opengl.GL; import com.jogamp.opengl.GL2; import com.jogamp.opengl.glu.GLU; public class OneTriangle { protected static void setup( GL2 gl2, int width, int height ) { gl2.glMatrixMode( GL2.GL_PROJECTION ); gl2.glLoadIdentity(); // coordinate system origin at lower left with width and height same as the window GLU glu = new GLU(); glu.gluOrtho2D( 0.0f, width, 0.0f, height ); gl2.glMatrixMode( GL2.GL_MODELVIEW ); gl2.glLoadIdentity(); gl2.glViewport( 0, 0, width, height ); } protected static void render( GL2 gl2, int width, int height ) { gl2.glClear( GL.GL_COLOR_BUFFER_BIT ); // draw a triangle filling the window gl2.glLoadIdentity(); gl2.glBegin( GL.GL_TRIANGLES ); gl2.glColor3f( 1, 0, 0 ); gl2.glVertex2f( 0, 0 ); gl2.glColor3f( 0, 1, 0 ); gl2.glVertex2f( width, 0 ); gl2.glColor3f( 0, 0, 1 ); gl2.glVertex2f( width / 2, height ); gl2.glEnd(); } }
The Abstract Window Toolkit (AWT) was Java's first window toolkit. It's a thin layer over each platform's native window toolkit. Here's how to use JOGL in AWT.
import com.jogamp.opengl.GLAutoDrawable; import com.jogamp.opengl.GLEventListener; import com.jogamp.opengl.GLProfile; import com.jogamp.opengl.GLCapabilities; import com.jogamp.opengl.awt.GLCanvas; import java.awt.Frame; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; /** * A minimal program that draws with JOGL in an AWT Frame. * * @author Wade Walker */ public class OneTriangleAWT { public static void main( String [] args ) { GLProfile glprofile = GLProfile.getDefault(); GLCapabilities glcapabilities = new GLCapabilities( glprofile ); final GLCanvas glcanvas = new GLCanvas( glcapabilities ); glcanvas.addGLEventListener( new GLEventListener() { @Override public void reshape( GLAutoDrawable glautodrawable, int x, int y, int width, int height ) { OneTriangle.setup( glautodrawable.getGL().getGL2(), width, height ); } @Override public void init( GLAutoDrawable glautodrawable ) { } @Override public void dispose( GLAutoDrawable glautodrawable ) { } @Override public void display( GLAutoDrawable glautodrawable ) { OneTriangle.render( glautodrawable.getGL().getGL2(), glautodrawable.getSurfaceWidth(), glautodrawable.getSurfaceHeight() ); } }); final Frame frame = new Frame( "One Triangle AWT" ); frame.add( glcanvas ); frame.addWindowListener( new WindowAdapter() { public void windowClosing( WindowEvent windowevent ) { frame.remove( glcanvas ); frame.dispose(); System.exit( 0 ); } }); frame.setSize( 640, 480 ); frame.setVisible( true ); } }
The Standard Widget Toolkit (SWT) is a thin layer over each platform's native window toolkit. SWT is the toolkit used in Eclipse, so it makes sense to use SWT in Eclipse-based applications. To compile this, you'll need the swt.jar file for your platform which you can get here.
When running this code on Mac OS X, you'll need to give the -XstartOnFirstThread argument to the JVM. This insures that the SWT windowing code sends and recieves messages on thread 0, which is required by Cocoa.
import org.eclipse.swt.SWT; import org.eclipse.swt.events.PaintEvent; import org.eclipse.swt.events.PaintListener; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.opengl.GLCanvas; import org.eclipse.swt.opengl.GLData; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import com.jogamp.opengl.GLProfile; import com.jogamp.opengl.GLContext; import com.jogamp.opengl.GLDrawableFactory; /** * A minimal program that draws with JOGL in an SWT Composite. * * @author Wade Walker */ public class OneTriangleSWT { public static void main( String [] args ) { Display display = new Display(); final Shell shell = new Shell( display ); shell.setText( "OneTriangle SWT" ); shell.setLayout( new FillLayout() ); shell.setSize( 640, 480 ); final Composite composite = new Composite( shell, SWT.NONE ); composite.setLayout( new FillLayout() ); GLData gldata = new GLData(); gldata.doubleBuffer = true; // need SWT.NO_BACKGROUND to prevent SWT from clearing the window // at the wrong times (we use glClear for this instead) final GLCanvas glcanvas = new GLCanvas( composite, SWT.NO_BACKGROUND, gldata ); glcanvas.setCurrent(); GLProfile glprofile = GLProfile.getDefault(); final GLContext glcontext = GLDrawableFactory.getFactory( glprofile ).createExternalGLContext(); // fix the viewport when the user resizes the window glcanvas.addListener( SWT.Resize, new Listener() { public void handleEvent(Event event) { Rectangle rectangle = glcanvas.getClientArea(); glcanvas.setCurrent(); glcontext.makeCurrent(); OneTriangle.setup( glcontext.getGL().getGL2(), rectangle.width, rectangle.height ); glcontext.release(); } }); // draw the triangle when the OS tells us that any part of the window needs drawing glcanvas.addPaintListener( new PaintListener() { public void paintControl( PaintEvent paintevent ) { Rectangle rectangle = glcanvas.getClientArea(); glcanvas.setCurrent(); glcontext.makeCurrent(); OneTriangle.render(glcontext.getGL().getGL2(), rectangle.width, rectangle.height); glcanvas.swapBuffers(); glcontext.release(); } }); shell.open(); while( !shell.isDisposed() ) { if( !display.readAndDispatch() ) display.sleep(); } glcanvas.dispose(); display.dispose(); } }
The SWT-AWT bridge was created to allow SWT applications to use the AWT GLCanvas. You should use this if you have problems with the SWT GLCanvas. For example, the SWT GLCanvas doesn't currently support multisampling on Windows (see here and herefor details).
As with normal SWT, to compile this you'll need the swt.jar file for your platform which you can get here. And just as with normal SWT, when running this code on Mac OS X, you'll need to give the -XstartOnFirstThread argument to the JVM.
import java.awt.Frame; import org.eclipse.swt.SWT; import org.eclipse.swt.awt.SWT_AWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import com.jogamp.opengl.GLAutoDrawable; import com.jogamp.opengl.GLCapabilities; import com.jogamp.opengl.GLEventListener; import com.jogamp.opengl.GLProfile; import com.jogamp.opengl.awt.GLCanvas; /** * A minimal program that draws with JOGL in an SWT Composite using an * embedded AWT Frame and the AWT GLCanvas via the SWT-AWT bridge. * * @author Wade Walker */ public class OneTriangleSWTAWTBridge { public static void main( String [] args ) { GLProfile glprofile = GLProfile.getDefault(); GLCapabilities glcapabilities = new GLCapabilities( glprofile ); final GLCanvas glcanvas = new GLCanvas( glcapabilities ); Display display = new Display(); final Shell shell = new Shell( display ); shell.setText( "OneTriangle SWT AWT Bridge" ); shell.setLayout( new FillLayout() ); shell.setSize( 640, 480 ); final Composite composite = new Composite( shell, SWT.EMBEDDED ); composite.setLayout( new FillLayout() ); Frame frame = SWT_AWT.new_Frame( composite ); frame.add( glcanvas ); glcanvas.addGLEventListener( new GLEventListener() { @Override public void reshape( GLAutoDrawable glautodrawable, int x, int y, int width, int height ) { OneTriangle.setup( glautodrawable.getGL().getGL2(), width, height ); } @Override public void init( GLAutoDrawable glautodrawable ) { } @Override public void dispose( GLAutoDrawable glautodrawable ) { } @Override public void display( GLAutoDrawable glautodrawable ) { OneTriangle.render( glautodrawable.getGL().getGL2(), glautodrawable.getSurfaceWidth(), glautodrawable.getSurfaceHeight() ); } }); shell.open(); while( !shell.isDisposed() ) { if( !display.readAndDispatch() ) display.sleep(); } display.dispose(); } }
Swing is the primary Java window toolkit since Java 1.2 in 1997. It's based on AWT at a low level, but draws all its own controls instead of wrapping native controls. Here's how to use JOGL in Swing.
import com.jogamp.opengl.GLAutoDrawable; import com.jogamp.opengl.GLEventListener; import com.jogamp.opengl.GLProfile; import com.jogamp.opengl.GLCapabilities; import com.jogamp.opengl.awt.GLCanvas; import javax.swing.JFrame; import java.awt.BorderLayout; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; /** * A minimal program that draws with JOGL in a Swing JFrame using the AWT GLCanvas. * * @author Wade Walker */ public class OneTriangleSwingGLCanvas { public static void main( String [] args ) { GLProfile glprofile = GLProfile.getDefault(); GLCapabilities glcapabilities = new GLCapabilities( glprofile ); final GLCanvas glcanvas = new GLCanvas( glcapabilities ); glcanvas.addGLEventListener( new GLEventListener() { @Override public void reshape( GLAutoDrawable glautodrawable, int x, int y, int width, int height ) { OneTriangle.setup( glautodrawable.getGL().getGL2(), width, height ); } @Override public void init( GLAutoDrawable glautodrawable ) { } @Override public void dispose( GLAutoDrawable glautodrawable ) { } @Override public void display( GLAutoDrawable glautodrawable ) { OneTriangle.render( glautodrawable.getGL().getGL2(), glautodrawable.getSurfaceWidth(), glautodrawable.getSurfaceHeight() ); } }); final JFrame jframe = new JFrame( "One Triangle Swing GLCanvas" ); jframe.addWindowListener( new WindowAdapter() { public void windowClosing( WindowEvent windowevent ) { jframe.dispose(); System.exit( 0 ); } }); jframe.getContentPane().add( glcanvas, BorderLayout.CENTER ); jframe.setSize( 640, 480 ); jframe.setVisible( true ); } }
In cases where the AWT GLCanvas has problems integrating with Swing components correctly, you can use the GLJPanel instead. For example, JInternalFrames behave incorrectly when used with a GLCanvas -- you have to add JInternalFrames to the Frame that holds the GLCanvas, and when you drag the JInternalFrames around, the GLCanvas doesn't redraw properly underneath it.
In contrast, GLJPanel is supposed integrate 100% correctly into Swing, but with lower performance due to extra copying of the frame buffer. Here's how to do it.
import com.jogamp.opengl.GLAutoDrawable; import com.jogamp.opengl.GLEventListener; import com.jogamp.opengl.GLProfile; import com.jogamp.opengl.GLCapabilities; import com.jogamp.opengl.awt.GLJPanel; import javax.swing.JFrame; import java.awt.BorderLayout; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; /** * A minimal program that draws with JOGL in a Swing JFrame using the AWT GLJPanel. * * @author Wade Walker */ public class OneTriangleSwingGLJPanel { public static void main( String [] args ) { GLProfile glprofile = GLProfile.getDefault(); GLCapabilities glcapabilities = new GLCapabilities( glprofile ); GLJPanel gljpanel = new GLJPanel( glcapabilities ); gljpanel.addGLEventListener( new GLEventListener() { @Override public void reshape( GLAutoDrawable glautodrawable, int x, int y, int width, int height ) { OneTriangle.setup( glautodrawable.getGL().getGL2(), width, height ); } @Override public void init( GLAutoDrawable glautodrawable ) { } @Override public void dispose( GLAutoDrawable glautodrawable ) { } @Override public void display( GLAutoDrawable glautodrawable ) { OneTriangle.render( glautodrawable.getGL().getGL2(), glautodrawable.getSurfaceWidth(), glautodrawable.getSurfaceHeight() ); } }); final JFrame jframe = new JFrame( "One Triangle Swing GLJPanel" ); jframe.addWindowListener( new WindowAdapter() { public void windowClosing( WindowEvent windowevent ) { jframe.dispose(); System.exit( 0 ); } }); jframe.getContentPane().add( gljpanel, BorderLayout.CENTER ); jframe.setSize( 640, 480 ); jframe.setVisible( true ); } }