blob: 73a9c772f1aa83bb9a183953a37207d2354af8d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
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);
|