diff options
author | Sven Gothel <[email protected]> | 2013-07-17 03:32:55 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-17 03:32:55 +0200 |
commit | 0c81c5489b0b65392b28877faf0d0e68022e6181 (patch) | |
tree | 7fb6cf03bd8927c4fe2de41a5f376a63e3faabbe /src/demos/texture/TextureConvert.java | |
parent | d2d20162fe199b1b7c79d46530d0bb29780beeeb (diff) |
Adapt to to JOGL commit 78abc89be7f3935f26802cc0db33f61fc2c65de0 - LDrawableFactory.canCreateGLPbuffer(..) add GLProfile argument, similar to canCreateFBO(..)v2.0.2
Diffstat (limited to 'src/demos/texture/TextureConvert.java')
-rwxr-xr-x | src/demos/texture/TextureConvert.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demos/texture/TextureConvert.java b/src/demos/texture/TextureConvert.java index cd198e0..6287acb 100755 --- a/src/demos/texture/TextureConvert.java +++ b/src/demos/texture/TextureConvert.java @@ -75,7 +75,7 @@ public class TextureConvert { caps.setDoubleBuffered(false); // Make a pbuffer to get an offscreen context - if (!GLDrawableFactory.getFactory(glp).canCreateGLPbuffer(null)) { + if (!GLDrawableFactory.getFactory(glp).canCreateGLPbuffer(null, glp)) { System.out.println("Pbuffer support not available (required to run this demo)"); System.exit(1); } |