diff options
author | Michael Bien <[email protected]> | 2009-11-23 00:17:19 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-11-23 00:17:19 +0100 |
commit | 2926f30798fccfcaa66f30eb5c55c29336eab949 (patch) | |
tree | efffd943ae67c3e654f61a2e1b2d40c7cb35f4a3 /resources/cl-if.cfg | |
parent | bee7d042a78b76afee1789bd48ab3e67c9a3fe8d (diff) |
added remaining @native tags to method javadoc.
fixed createTagletProps.sh to recognize function names containing numbers.
Diffstat (limited to 'resources/cl-if.cfg')
-rw-r--r-- | resources/cl-if.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/cl-if.cfg b/resources/cl-if.cfg index 43898544..7a1fa360 100644 --- a/resources/cl-if.cfg +++ b/resources/cl-if.cfg @@ -18,17 +18,17 @@ Ignore CL_GL_.*|cl.*GL.* #custom implementations Ignore clCreateContext CustomJavaCode CL -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 /** Interface to C language function: <br> <code> cl_context {@native 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(LongBuffer properties, long[] devices, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret); Ignore clCreateContextFromType CustomJavaCode CL -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 /** Interface to C language function: <br> <code> cl_context {@native 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(LongBuffer properties, long device_type, CreateContextCallback pfn_notify, Object userData, IntBuffer errcode_ret); Ignore clBuildProgram CustomJavaCode CL -CustomJavaCode CL /** Interface to C language function: <br> <code> int32_t clBuildProgram(cl_program, uint32_t, cl_device_id * , const char * , void (*pfn_notify)(cl_program, void *user_data), void * ); </code> */ +CustomJavaCode CL /** Interface to C language function: <br> <code> int32_t {@native clBuildProgram}(cl_program, uint32_t, cl_device_id * , const char * , void (*pfn_notify)(cl_program, void *user_data), void * ); </code> */ CustomJavaCode CL public int clBuildProgram(long program, long[] devices, String options, BuildProgramCallback cb, Object userData); Ignore clEnqueueNativeKernel |