diff options
author | Michael Bien <[email protected]> | 2011-05-27 14:24:18 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-05-27 14:24:18 +0200 |
commit | 098144aa185f396933c52af6c59201add4978b21 (patch) | |
tree | 3a6675cd0dce7fc93f72f52bfb6414601fa70a56 /resources/cl-context-if.cfg | |
parent | ce775f60ea028ce3c9e6139f83427ea8a86e3d54 (diff) |
renamed binding interfaces so we don't have a conflict with HLB.
Diffstat (limited to 'resources/cl-context-if.cfg')
-rw-r--r-- | resources/cl-context-if.cfg | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/resources/cl-context-if.cfg b/resources/cl-context-if.cfg index 8a12af7d..6095b853 100644 --- a/resources/cl-context-if.cfg +++ b/resources/cl-context-if.cfg @@ -5,19 +5,19 @@ Style InterfaceOnly Import com.jogamp.opencl.llb.impl.CLImageFormatImpl Import com.jogamp.opencl.CLErrorHandler -ClassJavadoc CLContext /** -ClassJavadoc CLContext * Java bindings to OpenCL contexts. -ClassJavadoc CLContext * @author Michael Bien -ClassJavadoc CLContext */ -JavaClass CLContext +ClassJavadoc CLContextBinding /** +ClassJavadoc CLContextBinding * Java bindings to OpenCL contexts. +ClassJavadoc CLContextBinding * @author Michael Bien +ClassJavadoc CLContextBinding */ +JavaClass CLContextBinding IgnoreNot clGetSupportedImageFormats.*|.*GetContextInfo.*|.*RetainContext.*|.*ReleaseContext.*|CL_CONTEXT_.* #custom implementations -CustomJavaCode CLContext -CustomJavaCode CLContext /** 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 CLContext public long clCreateContext(NativeSizeBuffer properties, NativeSizeBuffer devices, CLErrorHandler pfn_notify, IntBuffer errcode_ret); +CustomJavaCode CLContextBinding +CustomJavaCode CLContextBinding /** 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 CLContextBinding public long clCreateContext(NativeSizeBuffer properties, NativeSizeBuffer devices, CLErrorHandler pfn_notify, IntBuffer errcode_ret); -CustomJavaCode CLContext -CustomJavaCode CLContext /** 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 CLContext public long clCreateContextFromType(NativeSizeBuffer properties, long device_type, CLErrorHandler pfn_notify, IntBuffer errcode_ret); +CustomJavaCode CLContextBinding +CustomJavaCode CLContextBinding /** 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 CLContextBinding public long clCreateContextFromType(NativeSizeBuffer properties, long device_type, CLErrorHandler pfn_notify, IntBuffer errcode_ret); |