diff options
author | Sven Gothel <[email protected]> | 2010-06-10 06:14:44 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-06-10 06:14:44 +0200 |
commit | 348c43a12199e71017767930b0b42d939db47312 (patch) | |
tree | 502a113716308414e1345413dd35072a4b66459f /src/demos/nurbs | |
parent | 7bf502292901259eef302ef23b5c558b80f6b3f8 (diff) |
Adding GLProfile.initSingleton() call, ensuring [multithreading] intitialization can be done in time
Diffstat (limited to 'src/demos/nurbs')
-rwxr-xr-x | src/demos/nurbs/curveapp/CurveApp.java | 4 | ||||
-rwxr-xr-x | src/demos/nurbs/surfaceapp/SurfaceApp.java | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/demos/nurbs/curveapp/CurveApp.java b/src/demos/nurbs/curveapp/CurveApp.java index ff70f68..e125f62 100755 --- a/src/demos/nurbs/curveapp/CurveApp.java +++ b/src/demos/nurbs/curveapp/CurveApp.java @@ -9,6 +9,7 @@ import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; +import javax.media.opengl.GLProfile; import javax.media.opengl.GLCanvas; import javax.swing.ButtonGroup; import javax.swing.ImageIcon; @@ -40,6 +41,9 @@ import demos.nurbs.knotslidercomponent.JKnotSlider; @SuppressWarnings("serial") public class CurveApp extends JFrame implements ActionListener { + static { + GLProfile.initSingleton(); + } /** * Name of X-coord editing component of actually selected control point diff --git a/src/demos/nurbs/surfaceapp/SurfaceApp.java b/src/demos/nurbs/surfaceapp/SurfaceApp.java index 4018967..c19e8c6 100755 --- a/src/demos/nurbs/surfaceapp/SurfaceApp.java +++ b/src/demos/nurbs/surfaceapp/SurfaceApp.java @@ -31,6 +31,7 @@ import javax.swing.ToolTipManager; import demos.nurbs.icons.*; import demos.nurbs.knotslidercomponent.JKnotSlider; +import javax.media.opengl.GLProfile; import javax.media.opengl.awt.GLCanvas; /** @@ -44,6 +45,9 @@ import javax.media.opengl.awt.GLCanvas; @SuppressWarnings("serial") public class SurfaceApp extends JFrame implements ActionListener { + static { + GLProfile.initSingleton(); + } /** * X-coord editing component name |