diff options
author | Sven Gothel <[email protected]> | 2013-01-26 05:21:17 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-26 05:21:17 +0100 |
commit | 9505d48f1702e2ba8c9e72edcbb8fab5ad01bc56 (patch) | |
tree | 8feb8638c9bdabc90f25c49c43be055624e7d217 /src/jogl/classes/jogamp | |
parent | b738983638703bb721ee4c9820c8ef43e2252e73 (diff) |
FBObject/GLFBODrawableImpl: Silence stderr if not in DEBUG mode relying on application handling verbosity and debug output
The following cases were dumping states on stderr:
- FBOObject.isStatusValid() if false
-> Only dumps if DEBUG
- GLFBODrawableImpl.reset() if fboResetQuirk becomes true and 1st time in ClassLoader
-> Only dumps if DEBUG
Diffstat (limited to 'src/jogl/classes/jogamp')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLFBODrawableImpl.java | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLFBODrawableImpl.java b/src/jogl/classes/jogamp/opengl/GLFBODrawableImpl.java index b72f79868..86cfa4f4c 100644 --- a/src/jogl/classes/jogamp/opengl/GLFBODrawableImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLFBODrawableImpl.java @@ -53,8 +53,11 @@ public class GLFBODrawableImpl extends GLDrawableImpl implements GLFBODrawable { private int pendingFBOReset = -1; private boolean fboBound; - private static volatile boolean resetQuirkInfoDumped = false; - private static final int bufferCount = 2; // number of FBOs for double buffering. TODO: Possible to configure! + /** dump fboResetQuirk info only once pre ClassLoader and only in DEBUG mode */ + private static volatile boolean resetQuirkInfoDumped = false; + + /** number of FBOs for double buffering. TODO: Possible to configure! */ + private static final int bufferCount = 2; // private DoubleBufferMode doubleBufferMode; // TODO: Add or remove TEXTURE (only) DoubleBufferMode support @@ -166,23 +169,23 @@ public class GLFBODrawableImpl extends GLDrawableImpl implements GLFBODrawable { } return; } catch (GLException e) { + fboResetQuirk = true; if(DEBUG) { - e.printStackTrace(); - } - if(!resetQuirkInfoDumped) { // dump info only once - resetQuirkInfoDumped = true; - System.err.println("GLFBODrawable: FBO Reset failed: "+e.getMessage()); - System.err.println("GLFBODrawable: Enabling FBOResetQuirk, due to GL driver bug."); - final JoglVersion joglVersion = JoglVersion.getInstance(); - if(DEBUG) { - System.err.println(VersionUtil.getPlatformInfo()); - System.err.println(joglVersion.toString()); - System.err.println(JoglVersion.getGLInfo(gl, null)); - } else { - System.err.println(joglVersion.getBriefOSGLBuildInfo(gl, null)); + if(!resetQuirkInfoDumped) { + resetQuirkInfoDumped = true; + System.err.println("GLFBODrawable: FBO Reset failed: "+e.getMessage()); + System.err.println("GLFBODrawable: Enabling FBOResetQuirk, due to GL driver bug."); + final JoglVersion joglVersion = JoglVersion.getInstance(); + if(DEBUG) { + System.err.println(VersionUtil.getPlatformInfo()); + System.err.println(joglVersion.toString()); + System.err.println(JoglVersion.getGLInfo(gl, null)); + } else { + System.err.println(joglVersion.getBriefOSGLBuildInfo(gl, null)); + } + e.printStackTrace(); } } - fboResetQuirk = true; // 'fallthrough' intended } } |