diff options
author | Michael Bien <[email protected]> | 2009-10-01 01:19:17 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-10-01 01:19:17 +0200 |
commit | be4e9559f16e3ac5a5d109b26fbb9d579345f25c (patch) | |
tree | 2e1dddf49650c1d7eade1aea936c0c76b735e5d1 /resources/cl-if.cfg | |
parent | a550876d23b84427667111c5e2700766752b6040 (diff) |
added utility methods and getters to CLPlatform, CLDevice and CLContext.
adapted unit test.
Diffstat (limited to 'resources/cl-if.cfg')
-rw-r--r-- | resources/cl-if.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/cl-if.cfg b/resources/cl-if.cfg index 6d23789d..08e21dcc 100644 --- a/resources/cl-if.cfg +++ b/resources/cl-if.cfg @@ -17,11 +17,11 @@ Ignore CL_GL_.*|cl.*GL.* #custom implementations Ignore clCreateContext CustomJavaCode CL /** Interface to C language function: <br> <code> cl_context clCreateContext(intptr_t * , uint32_t, cl_device_id * , void (*pfn_notify)(const char *, const void *, size_t, void *), void *, int32_t * ); </code> */ -CustomJavaCode CL public long clCreateContext(IntBuffer properties, int arg1, long[] devices, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret); +CustomJavaCode CL public long clCreateContext(IntBuffer properties, int properties_offset, long[] devices, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret, int errcode_offset); Ignore clCreateContextFromType CustomJavaCode CL /** Interface to C language function: <br> <code> cl_context clCreateContextFromType(cl_context_properties *properties, cl_device_type device_type, void (*pfn_notify)(const char *errinfo, const void *private_info, size_t cb, void *user_data), void *user_data, cl_int *errcode_ret) ; </code> */ -CustomJavaCode CL public long clCreateContextFromType(IntBuffer properties, long device_type, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret); +CustomJavaCode CL public long clCreateContextFromType(IntBuffer properties, int properties_offset, long device_type, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret, int errcode_offset); Ignore clBuildProgram #TODO.. |