diff options
author | Sven Gothel <[email protected]> | 2009-06-11 07:47:41 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-06-11 07:47:41 +0000 |
commit | 806d765eecb3bea9b557ae86636d74b40a4b3963 (patch) | |
tree | 0bb96868f94dcee50420643ebd3019cc4ba6d7e2 /src | |
parent | 0dec290ca2ff1245f16787bb3ccc62dab4bd9bfb (diff) |
javadoc fixes
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1930 232f8b59-042b-4e1e-8c03-345bb8c30851
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 |