diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nativewindow/classes/javax/media/nativewindow/CapabilitiesChooser.java | 2 | ||||
-rw-r--r-- | src/nativewindow/classes/javax/media/nativewindow/GraphicsConfigurationFactory.java | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesChooser.java b/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesChooser.java index 246aeb03e..d61ebd4ef 100644 --- a/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesChooser.java +++ b/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesChooser.java @@ -43,7 +43,7 @@ package javax.media.nativewindow; window type selection for a given {@link Capabilities}. Developers can implement this interface and pass an instance into the method {@link GraphicsConfigurationFactory#chooseGraphicsConfiguration}; the chooser - will be called at window creation time, on some platforms. */ + will be called at window creation time. */ public interface CapabilitiesChooser { /** Chooses the index (0..available.length - 1) of the {@link diff --git a/src/nativewindow/classes/javax/media/nativewindow/GraphicsConfigurationFactory.java b/src/nativewindow/classes/javax/media/nativewindow/GraphicsConfigurationFactory.java index 686360726..023a9d488 100644 --- a/src/nativewindow/classes/javax/media/nativewindow/GraphicsConfigurationFactory.java +++ b/src/nativewindow/classes/javax/media/nativewindow/GraphicsConfigurationFactory.java @@ -39,12 +39,12 @@ import com.sun.nativewindow.impl.*; /** * Provides the mechanism by which the graphics configuration for a - * given window can be chosen before the window is created. On some - * window systems (EGL/OpenKODE and X11 in particular) the graphics configuration - * decides parameters related to hardware accelerated rendering such - * as the OpenGL pixel format. On these platforms it is necessary to - * choose the graphics configuration early. Note that the selection of - * the graphics configuration is an algorithm which does not have + * window can be chosen before the window is created. The graphics + * configuration decides parameters related to hardware accelerated rendering such + * as the OpenGL pixel format. <br> + * On some window systems (EGL/OpenKODE and X11 in particular) it is necessary to + * choose the graphics configuration early at window creation time. <br> + * Note that the selection of the graphics configuration is an algorithm which does not have * strong dependencies on the particular Java window toolkit in use * (e.g., AWT) and therefore it is strongly desirable to factor this * functionality out of the core {@link NativeWindowFactory} so that |