aboutsummaryrefslogtreecommitdiffstats
path: root/src/nativewindow/classes
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-01-27 04:36:53 +0100
committerSven Gothel <[email protected]>2013-01-27 04:36:53 +0100
commit4e9054d996870467182b0e963fa80aa6740968b6 (patch)
tree532c264070d91a990b587a1e1e3e297b0df9ed2b /src/nativewindow/classes
parent02104525a63aed70c51b825be0e8c83ed17cfa31 (diff)
Fix misc API docs ..
Diffstat (limited to 'src/nativewindow/classes')
-rw-r--r--src/nativewindow/classes/javax/media/nativewindow/ProxySurface.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nativewindow/classes/javax/media/nativewindow/ProxySurface.java b/src/nativewindow/classes/javax/media/nativewindow/ProxySurface.java
index a83739a1d..15a8738c5 100644
--- a/src/nativewindow/classes/javax/media/nativewindow/ProxySurface.java
+++ b/src/nativewindow/classes/javax/media/nativewindow/ProxySurface.java
@@ -44,6 +44,7 @@ public interface ProxySurface extends MutableSurface {
/**
* Implementation specific bit-value stating this {@link ProxySurface} owns the upstream's surface handle
* @see #addUpstreamOptionBits(int)
+ * @see #clearUpstreamOptionBits(int)
* @see #getUpstreamOptionBits()
*/
public static final int OPT_PROXY_OWNS_UPSTREAM_SURFACE = 1 << 6;
@@ -51,6 +52,7 @@ public interface ProxySurface extends MutableSurface {
/**
* Implementation specific bit-value stating this {@link ProxySurface} owns the upstream's {@link AbstractGraphicsDevice}.
* @see #addUpstreamOptionBits(int)
+ * @see #clearUpstreamOptionBits(int)
* @see #getUpstreamOptionBits()
*/
public static final int OPT_PROXY_OWNS_UPSTREAM_DEVICE = 1 << 7;
@@ -58,6 +60,7 @@ public interface ProxySurface extends MutableSurface {
/**
* Implementation specific bitvalue stating the upstream's {@link NativeSurface} is an invisible window, i.e. maybe incomplete.
* @see #addUpstreamOptionBits(int)
+ * @see #clearUpstreamOptionBits(int)
* @see #getUpstreamOptionBits()
*/
public static final int OPT_UPSTREAM_WINDOW_INVISIBLE = 1 << 8;