aboutsummaryrefslogtreecommitdiffstats
path: root/tools/jackpotc/test/oldgears/src
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-06-08 19:22:00 +0200
committerMichael Bien <[email protected]>2010-06-08 19:22:00 +0200
commit57d3d3f9f9475ae167cd9d33c9450eea66439fd2 (patch)
tree8e54d298484bdd6e1bb8bb0bdae30cc6c8542c87 /tools/jackpotc/test/oldgears/src
parent9dedeb00e80c4b8e5323abc8ebd226893a791e72 (diff)
continued with jackpot code transformations.
- added buildscript to test transformed results - added more renaming transformations
Diffstat (limited to 'tools/jackpotc/test/oldgears/src')
-rw-r--r--tools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java b/tools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java
index 8f2cb7441..37ca60c0c 100644
--- a/tools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java
+++ b/tools/jackpotc/test/oldgears/src/jogl111/gears/Gears.java
@@ -1,4 +1,4 @@
-package jogl111.gears;
+package gears;
import java.awt.*;
import java.awt.event.*;
@@ -7,6 +7,8 @@ import javax.media.opengl.*;
import com.sun.opengl.util.*;
/**
+ * slightly modified Gears demo used as jackpot testing purposes.
+ * - - -
* Gears.java <BR>
* author: Brian Paul (converted to Java by Ron Cemer and Sven Goethel) <P>
*
@@ -49,7 +51,7 @@ public class Gears implements GLEventListener, MouseListener, MouseMotionListene
public void init(GLAutoDrawable drawable) {
// Use debug pipeline
- // drawable.setGL(new DebugGL(drawable.getGL()));
+ drawable.setGL(new DebugGL(drawable.getGL()));
GL gl = drawable.getGL();