summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-07-20 17:14:42 +0200
committerMichael Bien <[email protected]>2011-07-20 17:14:42 +0200
commit9d563daf3540a74d651bf739aa7a9397a4ad04de (patch)
treeec9060f3908edecb2e03b639332491243292e8fc /src
parentca10f28da06f31deb6b2e17d83e2dd111708aeb7 (diff)
trivial javadoc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/com/jogamp/opencl/CLProgram.java2
-rw-r--r--src/com/jogamp/opencl/util/concurrent/CLTask.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/com/jogamp/opencl/CLProgram.java b/src/com/jogamp/opencl/CLProgram.java
index f8c83def..1856dd2e 100644
--- a/src/com/jogamp/opencl/CLProgram.java
+++ b/src/com/jogamp/opencl/CLProgram.java
@@ -56,7 +56,7 @@ import static com.jogamp.common.nio.Buffers.*;
/**
* Represents a OpenCL program executed on one or more {@link CLDevice}s.
* A CLProgram must be build using one of the build methods before creating {@link CLKernel}s.
- * @see CLContext#createProgram(java.io.InputStream)
+ * @see CLContext#createProgram(java.io.InputStream[])
* @see CLContext#createProgram(java.lang.String)
* @see CLContext#createProgram(java.util.Map)
* @author Michael Bien
diff --git a/src/com/jogamp/opencl/util/concurrent/CLTask.java b/src/com/jogamp/opencl/util/concurrent/CLTask.java
index 04d433c8..17fca313 100644
--- a/src/com/jogamp/opencl/util/concurrent/CLTask.java
+++ b/src/com/jogamp/opencl/util/concurrent/CLTask.java
@@ -17,8 +17,8 @@ public abstract class CLTask<C extends CLQueueContext, R> {
* Creates a CLQueueContext for this task. A context may contain static resources
* like OpenCL program binaries or pre allocated buffers. A context can be used by an group
* of tasks identified by a common context key ({@link #getContextKey()}). This method
- * won't be called if a context was already created by an previously executed task with the
- * same context key as this task.
+ * won't be called if a context was already created by an previously executed task having the
+ * same context key.
*/
public abstract C createQueueContext(CLCommandQueue queue);