diff options
author | Sven Gothel <[email protected]> | 2014-07-08 22:05:56 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-07-08 22:05:56 +0200 |
commit | be2b608e22d9a2a3a80eb547bee6180c2ca22678 (patch) | |
tree | 8c0b0f3b444680c8864d29aa9f3469cf6d557f96 /src/jogl/classes/jogamp/opengl/GLContextImpl.java | |
parent | f37592d54f3633c0f195a10770020cbb5a732809 (diff) |
Findbugs: Add comments that FB warnings are of no concern ..
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLContextImpl.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLContextImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLContextImpl.java b/src/jogl/classes/jogamp/opengl/GLContextImpl.java index 832a797e2..ff4e9314f 100644 --- a/src/jogl/classes/jogamp/opengl/GLContextImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLContextImpl.java @@ -177,7 +177,7 @@ public abstract class GLContextImpl extends GLContext { glRendererLowerCase = glRenderer; glVersion = glVendor; - if ( null != boundFBOTarget ) { // <init>: boundFBOTarget is not written yet + if ( !isInit && null != boundFBOTarget ) { // <init>: boundFBOTarget is not written yet boundFBOTarget[0] = 0; // draw boundFBOTarget[1] = 0; // read } |