From e0925f59830af902f214b1b71f3cdaf011dbcc7f Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Sun, 21 Nov 2010 22:52:24 +0100 Subject: fixed javadoc warnings. --- src/com/jogamp/opencl/gl/CLGLContext.java | 5 ----- src/com/jogamp/opencl/impl/BuildProgramCallback.java | 2 +- src/com/jogamp/opencl/util/CLBuildListener.java | 2 +- src/com/jogamp/opencl/util/CLPlatformFilters.java | 4 ++-- 4 files changed, 4 insertions(+), 9 deletions(-) (limited to 'src/com') 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) { diff --git a/src/com/jogamp/opencl/impl/BuildProgramCallback.java b/src/com/jogamp/opencl/impl/BuildProgramCallback.java index e4d68a4f..537f7444 100644 --- a/src/com/jogamp/opencl/impl/BuildProgramCallback.java +++ b/src/com/jogamp/opencl/impl/BuildProgramCallback.java @@ -3,7 +3,7 @@ package com.jogamp.opencl.impl; /** * A callback an application can register to be called when the program executable * has been built (successfully or unsuccessfully).
- * Note1: registering a build callback can make {@link CL#clBuildProgram} non blocking (OpenCL implementation dependent).
+ * Note1: registering a build callback can make {@link com.jogamp.opencl.CL#clBuildProgram} non blocking (OpenCL implementation dependent).
* Note2: the thread which calls this method is unspecified. The Application should ensure propper synchronization. * @author Michael Bien * @see com.jogamp.opencl.CL#clBuildProgram(long, int, com.jogamp.common.nio.PointerBuffer, java.lang.String, com.jogamp.opencl.impl.BuildProgramCallback) diff --git a/src/com/jogamp/opencl/util/CLBuildListener.java b/src/com/jogamp/opencl/util/CLBuildListener.java index 04769bb2..c13f8e09 100644 --- a/src/com/jogamp/opencl/util/CLBuildListener.java +++ b/src/com/jogamp/opencl/util/CLBuildListener.java @@ -9,7 +9,7 @@ import com.jogamp.opencl.CLProgram; /** * A callback an application can register to be called when the program executable * has been built (successfully or unsuccessfully).
- * Note1: registering a build callback can make {@link CL#clBuildProgram} non blocking (OpenCL implementation dependent).
+ * Note1: registering a build callback can make {@link com.jogamp.opencl.CL#clBuildProgram} non blocking (OpenCL implementation dependent).
* Note2: the thread which calls this method is unspecified. The Application should ensure propper synchronization. * @author Michael Bien * @see com.jogamp.opencl.CL#clBuildProgram(long, int, com.jogamp.common.nio.PointerBuffer, java.lang.String, com.jogamp.opencl.impl.BuildProgramCallback) diff --git a/src/com/jogamp/opencl/util/CLPlatformFilters.java b/src/com/jogamp/opencl/util/CLPlatformFilters.java index a1279f10..84a00d11 100644 --- a/src/com/jogamp/opencl/util/CLPlatformFilters.java +++ b/src/com/jogamp/opencl/util/CLPlatformFilters.java @@ -8,8 +8,8 @@ import java.util.Arrays; /** * Pre-defined filters. * @author Michael Bien - * @see CLPlatform#getDefault(com.jogamp.opencl.util.Filter[]) - * @see CLPlatform#listCLPlatforms(com.jogamp.opencl.util.Filter[]) + * @see CLPlatform#getDefault(com.jogamp.opencl.util.Filter[]) + * @see CLPlatform#listCLPlatforms(com.jogamp.opencl.util.Filter[]) */ public class CLPlatformFilters { -- cgit v1.2.3