diff options
author | Sven Gothel <[email protected]> | 2014-09-20 21:53:26 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-09-20 21:53:26 +0200 |
commit | 38f6915fedb765313c1f4646acf9e13dfbccef36 (patch) | |
tree | d4930367a792070bdbe97db6f5e0f7f82f6dad12 /src/jogl/classes/javax/media | |
parent | c4865ba2ef6c8ea02e1ca9eb4bfa836deb090d22 (diff) |
Bug 1073: FBObject/GLFBODrawable: Remove deprecated methods
- dual-use reset(..), use dedicated init(..) and reset(..)
- GLFBODrawable.FBOMODE_USE_DEPTH: Use GLCapabilities.[get|set]DepthBits(int)
Note: Applications shall use _requested_ GLCapabilities,
if passing caps down to the GLFBODrawable.
Otherwise (using _chosen_ caps) we may end up in requesting
properties not desired, e.g. stencil bits, if driver has chosen.
Diffstat (limited to 'src/jogl/classes/javax/media')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLFBODrawable.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLFBODrawable.java b/src/jogl/classes/javax/media/opengl/GLFBODrawable.java index 01db60b2e..07cb723a0 100644 --- a/src/jogl/classes/javax/media/opengl/GLFBODrawable.java +++ b/src/jogl/classes/javax/media/opengl/GLFBODrawable.java @@ -80,11 +80,6 @@ public interface GLFBODrawable extends GLDrawable { /** FBO Mode Bit: Use a {@link TextureAttachment} for the {@link #getColorbuffer(int) render colorbuffer} ({@link #FBOMODE_DEFAULT default}), see {@link #setFBOMode(int)}. */ public static final int FBOMODE_USE_TEXTURE = 1 << 0; - /** - * FBO Mode Bit: Use a depth renderbuffer ({@link #FBOMODE_DEFAULT default}), see {@link #setFBOMode(int)}. - * @deprecated Use {@link GLCapabilities#setDepthBits(int)}! - */ - public static final int FBOMODE_USE_DEPTH = 1 << 1; /** FBO Default Mode Bit: {@link #FBOMODE_USE_TEXTURE}. */ public static final int FBOMODE_DEFAULT = FBOMODE_USE_TEXTURE; @@ -160,7 +155,7 @@ public interface GLFBODrawable extends GLDrawable { * @return the new number of buffers (FBO) used, maybe different than the requested <code>bufferCount</code> (see above) * @throws IllegalStateException if already initialized, see {@link #isInitialized()}. */ - int setNumBuffers(final int bufferCount) throws /* IllegalStateException, */ GLException; + int setNumBuffers(final int bufferCount) throws IllegalStateException, GLException; /** * @return the number of buffers (FBO) being used. 1 if not using {@link GLCapabilities#getDoubleBuffered() double buffering}, |