summaryrefslogtreecommitdiffstats
path: root/src/com/mbien
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-02-21 00:37:34 +0100
committerMichael Bien <[email protected]>2010-02-21 00:37:34 +0100
commitb014104bc4d2c7b05767bf5364b8b972474850d1 (patch)
tree8f5b7a4a99c7eb4ed6f61d1f50753503dc64b863 /src/com/mbien
parent47ce642729bbc1dc5cee7032d3b3d84cb9b82eca (diff)
added custom cl_vendor_ext.h with a set of NV vendor extensions which are not yet in the official headers.
updated CLException with CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR cause.
Diffstat (limited to 'src/com/mbien')
-rw-r--r--src/com/mbien/opencl/CLException.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/mbien/opencl/CLException.java b/src/com/mbien/opencl/CLException.java
index 922da4a5..81e96789 100644
--- a/src/com/mbien/opencl/CLException.java
+++ b/src/com/mbien/opencl/CLException.java
@@ -178,6 +178,9 @@ public class CLException extends RuntimeException {
case CL_INVALID_GLOBAL_WORK_SIZE:
return "CL_INVALID_GLOBAL_WORK_SIZE";
+ case CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR:
+ return "CL_INVALID_GL_SHAREGROUP_REFERENCE_KHR";
+
case CL_PLATFORM_NOT_FOUND_KHR:
return "CL_PLATFORM_NOT_FOUND_KHR";