diff options
author | Michael Bien <[email protected]> | 2010-09-02 22:50:00 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-09-02 22:50:00 +0200 |
commit | 0e3893e7e3e270f8231b89eaf89537cf01a43052 (patch) | |
tree | afec21aeb7809abad9efd5fa326dcfd8fdbbd77e /resources/cl-if.cfg | |
parent | 2388b47f180989abd14a39188b1d4f80f221bdcf (diff) |
CLEvent callbacks for HLB and LLB.
Diffstat (limited to 'resources/cl-if.cfg')
-rw-r--r-- | resources/cl-if.cfg | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/resources/cl-if.cfg b/resources/cl-if.cfg index 6f19e64f..b8deb126 100644 --- a/resources/cl-if.cfg +++ b/resources/cl-if.cfg @@ -6,7 +6,8 @@ Style InterfaceOnly Import java.nio.IntBuffer Import java.nio.LongBuffer Import com.jogamp.opencl.impl.CLImageFormatImpl -import com.jogamp.opencl.impl.BuildProgramCallback; +import com.jogamp.opencl.impl.BuildProgramCallback +import com.jogamp.opencl.impl.CLEventCallback ClassJavadoc CL /** ClassJavadoc CL * Java bindings to OpenCL, the Open Computing Language. @@ -33,6 +34,10 @@ CustomJavaCode CL 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, int deviceCount, PointerBuffer devices, String options, BuildProgramCallback cb); +Ignore clSetEventCallback +CustomJavaCode CL +CustomJavaCode CL public int clSetEventCallback(long event, int type, CLEventCallback listener); + Ignore clEnqueueNativeKernel #TODO.. |