diff options
author | Sven Gothel <[email protected]> | 2001-11-06 08:13:11 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2001-11-06 08:13:11 +0000 |
commit | 29a4ca7a93fc2547466a732441b8374a5c99019b (patch) | |
tree | 1cf028bfae15c5aef0a7024b78e53ca313aff245 /gl4java/GLCapabilities.java | |
parent | 1f5dea284e7202cce1fe1bcde5138ba5e5a7b4bd (diff) |
java.nio, mesa-4.0 (gl1.3)
Diffstat (limited to 'gl4java/GLCapabilities.java')
-rwxr-xr-x | gl4java/GLCapabilities.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gl4java/GLCapabilities.java b/gl4java/GLCapabilities.java index b65ba01..f8bc452 100755 --- a/gl4java/GLCapabilities.java +++ b/gl4java/GLCapabilities.java @@ -18,6 +18,9 @@ public class GLCapabilities private static final int STEREO_OFF = 0;
private static final int STEREO_ON = 1;
+ private static final int FULLSCREEN_OFF = 0;
+ private static final int FULLSCREEN_ON = 1;
+
// Boolean attributes
// NOTE that we do not specify on- or off-screen visuals here --
// that will be taken care of by the factory.
@@ -37,6 +40,13 @@ public class GLCapabilities */
private int stereo = STEREO_OFF;
+ /* x11: exact value
+ w32: exact value
+
+ since JDK 1.4
+ */
+ private int fullscreen = FULLSCREEN_OFF;
+
/* x11: getting the largest regardless the value if >0, set to max
w32: getting the best from it's max
*/
|