diff options
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/util/awt')
-rw-r--r-- | src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java b/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java index 9809e44d2..611be247a 100644 --- a/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java +++ b/src/jogl/classes/com/sun/opengl/util/awt/AWTAnimatorImpl.java @@ -30,7 +30,7 @@ * SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. */ -package com.sun.opengl.util; +package com.sun.opengl.util.awt; import java.awt.Component; import java.awt.EventQueue; @@ -39,12 +39,13 @@ import java.util.*; import javax.swing.*; import javax.media.opengl.*; +import com.sun.opengl.util.*; /** Abstraction to factor out AWT dependencies from the Animator's implementation in a way that still allows the FPSAnimator to pick up this behavior if desired. */ -class AWTAnimatorImpl extends AnimatorImpl { +public class AWTAnimatorImpl extends AnimatorImpl { // For efficient rendering of Swing components, in particular when // they overlap one another private List lightweights = new ArrayList(); |