summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2011-08-03 16:51:49 +0200
committerMichael Bien <[email protected]>2011-08-03 16:51:49 +0200
commitf8008024c3541f224705e2c293d68ffa2eafb347 (patch)
treef2411e2e786f55ccaf55bb2cf3a3c590e26eff44 /src/com
parentb709c6156393cdb48106e8db8626cbfc332c0541 (diff)
made dimension and kernel public final in CLWork.
Diffstat (limited to 'src/com')
-rw-r--r--src/com/jogamp/opencl/CLWork.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/jogamp/opencl/CLWork.java b/src/com/jogamp/opencl/CLWork.java
index 786a2378..09e45604 100644
--- a/src/com/jogamp/opencl/CLWork.java
+++ b/src/com/jogamp/opencl/CLWork.java
@@ -44,8 +44,8 @@ import com.jogamp.common.nio.NativeSizeBuffer;
*/
public class CLWork {
- protected final int dimension;
- protected final CLKernel kernel;
+ public final int dimension;
+ public final CLKernel kernel;
protected final NativeSizeBuffer groupSize;
protected final NativeSizeBuffer workSize;