summaryrefslogtreecommitdiffstats
path: root/src/demos/jgears/JGears.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/jgears/JGears.java')
-rw-r--r--src/demos/jgears/JGears.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/demos/jgears/JGears.java b/src/demos/jgears/JGears.java
index 66c036d..5ba25bc 100644
--- a/src/demos/jgears/JGears.java
+++ b/src/demos/jgears/JGears.java
@@ -19,6 +19,7 @@ import java.io.InputStream;
import java.text.DecimalFormat;
import javax.imageio.ImageIO;
import javax.media.opengl.GLCapabilities;
+import javax.media.opengl.GLProfile;
import javax.media.opengl.awt.GLJPanel;
import com.sun.opengl.util.Animator;
import javax.swing.JCheckBox;
@@ -43,7 +44,7 @@ public class JGears extends GLJPanel {
private BufferedImage openglImage;
static {
- caps = new GLCapabilities();
+ caps = new GLCapabilities(GLProfile.GetProfile(GLProfile.GL2));
caps.setAlphaBits(8);
}