diff options
Diffstat (limited to 'make/resources/cl-event-if.cfg')
-rw-r--r-- | make/resources/cl-event-if.cfg | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/make/resources/cl-event-if.cfg b/make/resources/cl-event-if.cfg new file mode 100644 index 00000000..87b55bfd --- /dev/null +++ b/make/resources/cl-event-if.cfg @@ -0,0 +1,17 @@ +Include cl-common.cfg + +Style InterfaceOnly + +import com.jogamp.opencl.llb.impl.CLEventCallback + +ClassJavadoc CLEventBinding /** +ClassJavadoc CLEventBinding * Java bindings to OpenCL events. +ClassJavadoc CLEventBinding * @author Michael Bien, GlueGen, et al. +ClassJavadoc CLEventBinding */ +JavaClass CLEventBinding + +IgnoreNot .*CreateUserEvent.*|.*GetEventInfo.*|.*GetEventProfilingInfo.*|.*SetUserEventStatus.*|clWaitForEvents.*|.*RetainEvent.*|.*ReleaseEvent.*|CL_EVENT_.* + +CustomJavaCode CLEventBinding +CustomJavaCode CLEventBinding /** Interface to C language function: <br> <code> int32_t {@native clSetEventCallback}(cl_event event, cl_int command_exec_callback_type, void (CL_CALLBACK *pfn_event_notify) (cl_event event, cl_int event_command_exec_status, void *user_data), void *user_data); </code> */ +CustomJavaCode CLEventBinding public int clSetEventCallback(long event, int type, CLEventCallback cb); |