diff options
Diffstat (limited to 'src/com/jogamp/opencl/CLContext.java')
-rw-r--r-- | src/com/jogamp/opencl/CLContext.java | 4 |
1 files changed, 3 insertions, 1 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 + "]"; } |