diff options
-rw-r--r-- | test/com/jogamp/opencl/test/util/MiscUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/com/jogamp/opencl/test/util/MiscUtils.java b/test/com/jogamp/opencl/test/util/MiscUtils.java index 5d74eb45..8332c24a 100644 --- a/test/com/jogamp/opencl/test/util/MiscUtils.java +++ b/test/com/jogamp/opencl/test/util/MiscUtils.java @@ -40,9 +40,9 @@ import static org.junit.Assert.*; public class MiscUtils { //decrease this value on systems with few memory. - final static int ONE_MB = 1048576; + public final static int ONE_MB = 1048576; - final static int NUM_ELEMENTS = 10000000; + public final static int NUM_ELEMENTS = 10000000; public static final void fillBuffer(ByteBuffer buffer, int seed) { |