diff options
author | Sven Gothel <[email protected]> | 2009-06-03 19:59:19 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-06-03 19:59:19 +0000 |
commit | a1c838f382cef1c0fac5ec291f74e71cf791f8be (patch) | |
tree | fbe6dd9a9e6fa9264b2c304984eebe77377c1117 /src/demos/particles/engine | |
parent | 77a86250f12bd026c0fac6ba6cd6ff3f196f1d95 (diff) |
Fixes against JOGL2 revision 1922 - Multi GL Profiles, plus setenv scripts
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/branches/JOGL_2_SANDBOX@338 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/particles/engine')
-rwxr-xr-x | src/demos/particles/engine/GLComponent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/particles/engine/GLComponent.java b/src/demos/particles/engine/GLComponent.java index f64953d..43c3501 100755 --- a/src/demos/particles/engine/GLComponent.java +++ b/src/demos/particles/engine/GLComponent.java @@ -63,7 +63,7 @@ public class GLComponent extends GLCanvas implements GLEventListener { } private static GLCapabilities getCapabilities() { - GLCapabilities caps = new GLCapabilities(); + GLCapabilities caps = new GLCapabilities(null); caps.setDoubleBuffered(true); caps.setHardwareAccelerated(true); return caps; |