diff options
Diffstat (limited to 'src/demos/testContextSharing')
-rw-r--r-- | src/demos/testContextSharing/TestContextSharing.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/demos/testContextSharing/TestContextSharing.java b/src/demos/testContextSharing/TestContextSharing.java index e50c4d0..88f453a 100644 --- a/src/demos/testContextSharing/TestContextSharing.java +++ b/src/demos/testContextSharing/TestContextSharing.java @@ -97,12 +97,7 @@ public class TestContextSharing { class Listener implements GLEventListener { public void init(GLDrawable drawable) { - // init() might get called more than once if the GLCanvas is - // added and removed, but we only want to install the DebugGL - // pipeline once - if (!(drawable.getGL() instanceof DebugGL)) { - drawable.setGL(new DebugGL(drawable.getGL())); - } + drawable.setGL(new DebugGL(drawable.getGL())); GL gl = drawable.getGL(); |