summaryrefslogtreecommitdiffstats
path: root/src/demos/hdr
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/hdr')
-rwxr-xr-xsrc/demos/hdr/HDR.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/demos/hdr/HDR.java b/src/demos/hdr/HDR.java
index d4748b4..4a16fab 100755
--- a/src/demos/hdr/HDR.java
+++ b/src/demos/hdr/HDR.java
@@ -49,9 +49,6 @@ import javax.swing.JOptionPane;
*/
public class HDR extends Demo {
- static {
- GLProfile.initSingleton();
- }
private static String[] defaultArgs = {
"demos/data/images/stpeters_cross.hdr",
"512",
@@ -134,6 +131,7 @@ public class HDR extends Demo {
0.0f, 0.0f, 0.0f, 1.0f };
public static void main(String[] args) {
+ GLProfile.initSingleton(false);
GLCanvas canvas = new GLCanvas();
final HDR demo = new HDR();
@@ -260,8 +258,10 @@ public class HDR extends Demo {
//
public void shutdownDemo() {
- ManipManager.getManipManager().unregisterWindow((AWTGLAutoDrawable) drawable);
- drawable.removeGLEventListener(this);
+ if(null!=drawable) {
+ ManipManager.getManipManager().unregisterWindow((AWTGLAutoDrawable) drawable);
+ drawable.removeGLEventListener(this);
+ }
super.shutdownDemo();
}