diff options
author | Sven Gothel <[email protected]> | 2012-07-09 17:08:45 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-07-09 17:08:45 +0200 |
commit | 3988e3d7df9b80e9b7058f64758b34a5389f38b0 (patch) | |
tree | f5ac80b9f1c67a3c4363da01fb5c475df709de5b /src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java | |
parent | 72a84b422327c6abb688339419d3552ec0e5c70c (diff) |
GLCapabilities*: Add 'isFBO()' and 'setFBO(boolean)', allowing upcoming impl. to select offscreen FBO (GLDrawable, ..)
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java b/src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java index 5f8795edc..883f3912e 100644 --- a/src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java +++ b/src/jogl/classes/javax/media/opengl/GLCapabilitiesImmutable.java @@ -148,6 +148,11 @@ public interface GLCapabilitiesImmutable extends CapabilitiesImmutable { */ boolean isPBuffer(); + /** + * Indicates whether FBO is used/requested. + */ + boolean isFBO(); + @Override boolean equals(Object obj); |