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/j2d/TextFlow.java | |
parent | 7bf502292901259eef302ef23b5c558b80f6b3f8 (diff) |
Adding GLProfile.initSingleton() call, ensuring [multithreading] intitialization can be done in time
Diffstat (limited to 'src/demos/j2d/TextFlow.java')
-rwxr-xr-x | src/demos/j2d/TextFlow.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/demos/j2d/TextFlow.java b/src/demos/j2d/TextFlow.java index 972618a..32c7600 100755 --- a/src/demos/j2d/TextFlow.java +++ b/src/demos/j2d/TextFlow.java @@ -74,6 +74,9 @@ import com.jogamp.opengl.util.Animator; screen. */ public class TextFlow extends Demo { + static { + GLProfile.initSingleton(); + } public static void main(String[] args) { |