summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);