diff options
author | Michael Bien <[email protected]> | 2011-08-03 16:51:49 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-08-03 16:51:49 +0200 |
commit | f8008024c3541f224705e2c293d68ffa2eafb347 (patch) | |
tree | f2411e2e786f55ccaf55bb2cf3a3c590e26eff44 /src/com | |
parent | b709c6156393cdb48106e8db8626cbfc332c0541 (diff) |
made dimension and kernel public final in CLWork.
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/jogamp/opencl/CLWork.java | 4 |
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; |