summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-10-15 14:57:24 +0200
committerMichael Bien <[email protected]>2010-10-15 14:57:24 +0200
commit09cba4571143544817a45657b04357e4419545f5 (patch)
tree97e0456acb843363b4fe3dc0d9f435f6866a1da3 /src/com/jogamp
parent404428d115cf5bb36b4576016a6c1363072336d3 (diff)
better toString()
Diffstat (limited to 'src/com/jogamp')
-rw-r--r--src/com/jogamp/opencl/CLContext.java4
-rw-r--r--src/com/jogamp/opencl/CLMemory.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/com/jogamp/opencl/CLContext.java b/src/com/jogamp/opencl/CLContext.java
index 837b2ebd..19fdbc1e 100644
--- a/src/com/jogamp/opencl/CLContext.java
+++ b/src/com/jogamp/opencl/CLContext.java
@@ -605,7 +605,9 @@ public class CLContext extends CLObject implements CLResource {
@Override
public String toString() {
return getClass().getSimpleName()+" [id: " + ID
- + " #devices: " + getDevices().length
+ + ", platform: " + getPlatform().getName()
+ + ", profile: " + getPlatform().getProfile()
+ + ", devices: " + getDevices().length
+ "]";
}
diff --git a/src/com/jogamp/opencl/CLMemory.java b/src/com/jogamp/opencl/CLMemory.java
index 416b8019..8b28001e 100644
--- a/src/com/jogamp/opencl/CLMemory.java
+++ b/src/com/jogamp/opencl/CLMemory.java
@@ -241,7 +241,7 @@ public abstract class CLMemory <B extends Buffer> extends CLObject implements CL
@Override
public String toString() {
- return getClass().getSimpleName()+" [id: " + ID+"]";
+ return getClass().getSimpleName()+" [id: " + ID+" buffer: "+buffer+"]";
}
/**