diff options
author | Michael Bien <[email protected]> | 2010-05-31 19:51:46 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-05-31 19:51:46 +0200 |
commit | c5b1dc47f398597a127ebb7cdf72ab324b08a174 (patch) | |
tree | 690599a569f5f5a78f190eff45e414b4574759fd /src/com/jogamp/opencl/CLInfoAccessor.java | |
parent | 8a5bbd80a3ffc3154b637e0b6c40342dfacb3576 (diff) |
changes due to gluegen size_t fix. Switched back to PointerBuffer. 32bit systems are now supported again.
Diffstat (limited to 'src/com/jogamp/opencl/CLInfoAccessor.java')
-rw-r--r-- | src/com/jogamp/opencl/CLInfoAccessor.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/com/jogamp/opencl/CLInfoAccessor.java b/src/com/jogamp/opencl/CLInfoAccessor.java index 56f2318d..8db06d38 100644 --- a/src/com/jogamp/opencl/CLInfoAccessor.java +++ b/src/com/jogamp/opencl/CLInfoAccessor.java @@ -1,7 +1,7 @@ package com.jogamp.opencl; import com.jogamp.common.nio.Buffers; -import com.jogamp.common.nio.Int64Buffer; +import com.jogamp.common.nio.PointerBuffer; import com.jogamp.opencl.util.CLUtil; import java.nio.Buffer; import java.nio.ByteBuffer; @@ -23,11 +23,11 @@ abstract class CLInfoAccessor { } }; - protected final static ThreadLocal<Int64Buffer> localPB = new ThreadLocal<Int64Buffer>() { + protected final static ThreadLocal<PointerBuffer> localPB = new ThreadLocal<PointerBuffer>() { @Override - protected Int64Buffer initialValue() { - return Int64Buffer.allocateDirect(1); + protected PointerBuffer initialValue() { + return PointerBuffer.allocateDirect(1); } }; @@ -44,7 +44,7 @@ abstract class CLInfoAccessor { public final String getString(int key) { ByteBuffer buffer = localBB.get(); - Int64Buffer sizeBuffer = localPB.get(); + PointerBuffer sizeBuffer = localPB.get(); int ret = getInfo(key, buffer.capacity(), buffer, sizeBuffer); checkForError(ret, "error while asking for info string"); @@ -56,7 +56,7 @@ abstract class CLInfoAccessor { } - protected abstract int getInfo(int name, long valueSize, Buffer value, Int64Buffer valueSizeRet); + protected abstract int getInfo(int name, long valueSize, Buffer value, PointerBuffer valueSizeRet); } |