diff options
author | Sven Gothel <[email protected]> | 2012-10-05 18:46:16 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-10-05 18:46:16 +0200 |
commit | bab6160df764871f6fa4db040362976f028d015b (patch) | |
tree | 5b0cd475d496b883e77fb4ae1f4b7137e49ef74d /src/jogl/classes/javax/media/opengl/GLFBODrawable.java | |
parent | ed7d5f2e3fc696d47b10c8d62a071643bf385588 (diff) |
Refine ed7d5f2e3fc696d47b10c8d62a071643bf385588, set and restore FBO caps @ setRealized(true/false) already, refine at initialize(true)
Allowing to validate the on-/offscreen state after setRealized(true).
Adding comment in GLFBODrawable.
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLFBODrawable.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLFBODrawable.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLFBODrawable.java b/src/jogl/classes/javax/media/opengl/GLFBODrawable.java index 45fd3b686..079d9af5c 100644 --- a/src/jogl/classes/javax/media/opengl/GLFBODrawable.java +++ b/src/jogl/classes/javax/media/opengl/GLFBODrawable.java @@ -39,7 +39,9 @@ import com.jogamp.opengl.FBObject.TextureAttachment; * * <p> * A {@link GLFBODrawable} is uninitialized until a {@link GLContext} is bound - * and made current the first time. + * and made current the first time, hence only then it's capabilities <i>fully</i> reflect expectations, + * i.e. color, depth, stencil and MSAA bits will be <i>valid</i> only after the first {@link GLContext#makeCurrent() makeCurrent()} call. + * On-/offscreen bits are <i>valid</i> after {@link #setRealized(boolean) setRealized(true)}. * </p> * * <p> |