diff options
author | First Last <[email protected]> | 2005-06-16 23:02:03 +0000 |
---|---|---|
committer | First Last <[email protected]> | 2005-06-16 23:02:03 +0000 |
commit | 9d278dff86c07218ff2616745381ccc2689f8ea5 (patch) | |
tree | 46e3493919362a74f1d2e03e2622127eed0b9856 /src/demos/jgears | |
parent | 9d209d3b6ae12604e666d7b655bd1f19e70ee48b (diff) |
This commit was manufactured by cvs2svn to create branch 'JSR-231'.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JSR-231@93 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/jgears')
-rw-r--r-- | src/demos/jgears/JGears.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/demos/jgears/JGears.java b/src/demos/jgears/JGears.java index ee0690c..6adc528 100644 --- a/src/demos/jgears/JGears.java +++ b/src/demos/jgears/JGears.java @@ -17,6 +17,11 @@ public class JGears { Frame frame = new Frame("Gear Demo"); GLJPanel drawable = GLDrawableFactory.getFactory().createGLJPanel(new GLCapabilities()); + // Use debug pipeline + // drawable.setGL(new DebugGL(drawable.getGL())); + System.err.println("DRAWABLE GL IS: " + drawable.getGL().getClass().getName()); + System.err.println("DRAWABLE GLU IS: " + drawable.getGLU().getClass().getName()); + drawable.addGLEventListener(new GearRenderer()); frame.add(drawable); frame.setSize(300, 300); @@ -48,9 +53,6 @@ public class JGears { public void init(GLDrawable drawable) { - // Use debug pipeline - // drawable.setGL(new DebugGL(drawable.getGL())); - GL gl = drawable.getGL(); System.err.println("INIT GL IS: " + gl.getClass().getName()); |