diff options
author | Michael Bien <[email protected]> | 2010-06-27 23:44:56 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-06-27 23:44:56 +0200 |
commit | 467453f0752f162ce297de0db27d6a4fef67d15f (patch) | |
tree | 005e02f82b122dcfa3c54f7ccf5db0992e49422d /src/com/jogamp/opencl/CLProgram.java | |
parent | be5f1d62838cd8709a1f4f881c08494246a8471f (diff) |
minor refactorings and updates.
Diffstat (limited to 'src/com/jogamp/opencl/CLProgram.java')
-rw-r--r-- | src/com/jogamp/opencl/CLProgram.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/com/jogamp/opencl/CLProgram.java b/src/com/jogamp/opencl/CLProgram.java index c56c04c9..7991b9d6 100644 --- a/src/com/jogamp/opencl/CLProgram.java +++ b/src/com/jogamp/opencl/CLProgram.java @@ -155,16 +155,6 @@ public class CLProgram extends CLObject implements CLResource { return CLUtil.clString2JavaString(buffer, (int)size.get(0)); } -// private int getProgramInfoInt(int flag) { -// -// ByteBuffer bb = ByteBuffer.allocateDirect(4).order(ByteOrder.nativeOrder()); -// -// int ret = cl.clGetProgramInfo(programID, flag, bb.capacity(), bb, null, 0); -// checkForError(ret, ""); -// -// return bb.getInt(); -// } - private int getBuildInfoInt(CLDevice device, int flag) { ByteBuffer buffer = newDirectByteBuffer(4); |