diff options
author | Michael Bien <[email protected]> | 2009-10-14 20:43:02 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-10-14 20:43:02 +0200 |
commit | a69ac7eb33e3e963bacf2d47d92875d8e8176d1d (patch) | |
tree | 121f68caafd5aebb5816628280195da4b2e14d2d /src/com/mbien/opencl/CLException.java | |
parent | a6b5518bdd903afb65305c9f272875d87454e485 (diff) |
implemented clBuildProgram(...) and updated JUnit test.
Diffstat (limited to 'src/com/mbien/opencl/CLException.java')
-rw-r--r-- | src/com/mbien/opencl/CLException.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/mbien/opencl/CLException.java b/src/com/mbien/opencl/CLException.java index e8ed771f..4539046d 100644 --- a/src/com/mbien/opencl/CLException.java +++ b/src/com/mbien/opencl/CLException.java @@ -125,7 +125,7 @@ public class CLException extends RuntimeException { return "CL_INVALID_MIP_LEVEL"; default: - return "unknown cause"; + return "unknown cause: error "+error; } } |