diff options
author | Michael Bien <[email protected]> | 2010-04-15 21:36:21 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-04-15 21:36:21 +0200 |
commit | bb14f43134a9332c014e969b600e094edadd2fb0 (patch) | |
tree | a63678de5a0b8b5f5c21bd732b159ba151c274f9 /src/com/jogamp/opencl/CLMemory.java | |
parent | 966153e376f9932cea29d8bd891a164115a4049c (diff) |
code review: improved exception messages to be more verbose whenever possible.
began with CLKernel testcase.
Diffstat (limited to 'src/com/jogamp/opencl/CLMemory.java')
-rw-r--r-- | src/com/jogamp/opencl/CLMemory.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/jogamp/opencl/CLMemory.java b/src/com/jogamp/opencl/CLMemory.java index 55a04af9..aac76790 100644 --- a/src/com/jogamp/opencl/CLMemory.java +++ b/src/com/jogamp/opencl/CLMemory.java @@ -147,7 +147,9 @@ public abstract class CLMemory <B extends Buffer> extends CLObject implements CL public void release() { int ret = cl.clReleaseMemObject(ID); context.onMemoryReleased(this); - checkForError(ret, "can not release mem object"); + if(ret != CL_SUCCESS) { + throw newException(ret, "can not release "+this); + } } public void close() { @@ -203,7 +205,7 @@ public abstract class CLMemory <B extends Buffer> extends CLObject implements CL @Override public String toString() { - return "CLMemory [id: " + ID+"]"; + return getClass().getSimpleName()+" [id: " + ID+"]"; } /** |