diff options
author | Michael Bien <[email protected]> | 2010-11-21 22:52:24 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-21 22:52:24 +0100 |
commit | e0925f59830af902f214b1b71f3cdaf011dbcc7f (patch) | |
tree | f040d8824aef318497c37275aea68b99fe7ff30a /src/com/jogamp/opencl/gl | |
parent | 98258032aaeff5b1d6700ed1e49db161f9a2206a (diff) |
fixed javadoc warnings.
Diffstat (limited to 'src/com/jogamp/opencl/gl')
-rw-r--r-- | src/com/jogamp/opencl/gl/CLGLContext.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/com/jogamp/opencl/gl/CLGLContext.java b/src/com/jogamp/opencl/gl/CLGLContext.java index 1c6069b9..e3b5780d 100644 --- a/src/com/jogamp/opencl/gl/CLGLContext.java +++ b/src/com/jogamp/opencl/gl/CLGLContext.java @@ -32,7 +32,6 @@ public final class CLGLContext extends CLContext { /** * Creates a shared context on all available devices (CL_DEVICE_TYPE_ALL). - * Note: This will make the GLContext current. * @see GLContext#makeCurrent() */ public static CLGLContext create(GLContext glContext) { @@ -41,7 +40,6 @@ public final class CLGLContext extends CLContext { /** * Creates a shared context on the specified platform on all available devices (CL_DEVICE_TYPE_ALL). - * Note: This will make the GLContext current. * @see GLContext#makeCurrent() */ public static CLGLContext create(GLContext glContext, CLPlatform platform) { @@ -51,7 +49,6 @@ public final class CLGLContext extends CLContext { /** * Creates a shared context on the specified platform and with the specified * device types. - * Note: This will make the GLContext current. * @see GLContext#makeCurrent() */ public static CLGLContext create(GLContext glContext, CLDevice.Type... deviceTypes) { @@ -61,7 +58,6 @@ public final class CLGLContext extends CLContext { /** * Creates a shared context on the specified platform and with the specified * device types. - * Note: This will make the GLContext current. * @see GLContext#makeCurrent() */ public static CLGLContext create(GLContext glContext, CLPlatform platform, CLDevice.Type... deviceTypes) { @@ -82,7 +78,6 @@ public final class CLGLContext extends CLContext { /** * Creates a shared context on the specified platform and with the specified * devices. - * Note: This will make the GLContext current. * @see GLContext#makeCurrent() */ public static CLGLContext create(GLContext glContext, CLDevice... devices) { |