diff options
Diffstat (limited to 'src/nativewindow/classes')
-rw-r--r-- | src/nativewindow/classes/com/sun/nativewindow/impl/NullWindow.java | 21 | ||||
-rw-r--r-- | src/nativewindow/classes/javax/media/nativewindow/SurfaceChangeable.java | 48 |
2 files changed, 53 insertions, 16 deletions
diff --git a/src/nativewindow/classes/com/sun/nativewindow/impl/NullWindow.java b/src/nativewindow/classes/com/sun/nativewindow/impl/NullWindow.java index 6f568df13..ca55aa542 100644 --- a/src/nativewindow/classes/com/sun/nativewindow/impl/NullWindow.java +++ b/src/nativewindow/classes/com/sun/nativewindow/impl/NullWindow.java @@ -38,7 +38,7 @@ package com.sun.nativewindow.impl; import javax.media.nativewindow.*; -public class NullWindow implements NativeWindow { +public class NullWindow implements NativeWindow, SurfaceChangeable { private Exception lockedStack = null; protected int width, height, scrnIndex; protected long surfaceHandle, displayHandle; @@ -96,17 +96,7 @@ public class NullWindow implements NativeWindow { return false; } - NativeWindow upstreamNW = null; - - public void setUpstreamNativeWindow(NativeWindow upstream) { - upstreamNW = upstream; - } - - public void surfaceUpdated(Object updater, NativeWindow window, long when) { - if(null!=upstreamNW) { - upstreamNW.surfaceUpdated(updater, upstreamNW, when); - } - } + public void surfaceUpdated(Object updater, NativeWindow window, long when) { } public long getDisplayHandle() { return displayHandle; @@ -120,8 +110,8 @@ public class NullWindow implements NativeWindow { public long getSurfaceHandle() { return surfaceHandle; } - public void setSurfaceHandle(long handle) { - surfaceHandle=handle; + public void setSurfaceHandle(long surfaceHandle) { + this.surfaceHandle=surfaceHandle; } public AbstractGraphicsConfiguration getGraphicsConfiguration() { return config; @@ -152,8 +142,7 @@ public class NullWindow implements NativeWindow { return "NullWindow[config "+config+ ", displayHandle 0x"+Long.toHexString(getDisplayHandle())+ ", surfaceHandle 0x"+Long.toHexString(getSurfaceHandle())+ - ", size "+getWidth()+"x"+getHeight()+ - ", upstream "+upstreamNW+"]"; + ", size "+getWidth()+"x"+getHeight()+"]"; } } diff --git a/src/nativewindow/classes/javax/media/nativewindow/SurfaceChangeable.java b/src/nativewindow/classes/javax/media/nativewindow/SurfaceChangeable.java new file mode 100644 index 000000000..fc32b57b3 --- /dev/null +++ b/src/nativewindow/classes/javax/media/nativewindow/SurfaceChangeable.java @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * - Redistribution of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistribution in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * Neither the name of Sun Microsystems, Inc. or the names of + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * This software is provided "AS IS," without a warranty of any kind. ALL + * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, + * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A + * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN + * MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE FOR + * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR + * ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR + * DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE + * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, + * ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF + * SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that this software is not designed or intended for use + * in the design, construction, operation or maintenance of any nuclear + * facility. + * + * Sun gratefully acknowledges that this software was originally authored + * and developed by Kenneth Bradley Russell and Christopher John Kline. + */ + +package javax.media.nativewindow; + +public interface SurfaceChangeable { + + public void setSurfaceHandle(long surfaceHandle); + public void setSize(int width, int height); + +} + |