1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#![allow(non_camel_case_types)]
use super::cl::{cl_command_queue, cl_command_type, cl_context, cl_event, cl_mem, cl_mem_flags};
use super::cl_platform::{cl_int, cl_uint};
use libc::{c_void, intptr_t};
pub const CL_COMMAND_EGL_FENCE_SYNC_OBJECT_KHR: cl_command_type = 0x202F;
pub const CL_COMMAND_ACQUIRE_EGL_OBJECTS_KHR: cl_command_type = 0x202D;
pub const CL_COMMAND_RELEASE_EGL_OBJECTS_KHR: cl_command_type = 0x202E;
pub const CL_INVALID_EGL_OBJECT_KHR: cl_int = -1093;
pub const CL_EGL_RESOURCE_NOT_ACQUIRED_KHR: cl_int = -1092;
pub type CLeglImageKHR = *mut c_void;
pub type CLeglDisplayKHR = *mut c_void;
pub type CLeglSyncKHR = *mut c_void;
pub type cl_egl_image_properties_khr = intptr_t;
pub type clCreateFromEGLImageKHR_fn = Option<
unsafe extern "C" fn(
context: cl_context,
egldisplay: CLeglDisplayKHR,
eglimage: CLeglImageKHR,
flags: cl_mem_flags,
properties: *const cl_egl_image_properties_khr,
errcode_ret: *mut cl_int,
) -> cl_mem,
>;
pub type clEnqueueAcquireEGLObjectsKHR_fn = Option<
unsafe extern "C" fn(
command_queue: cl_command_queue,
num_objects: cl_uint,
mem_objects: *const cl_mem,
num_events_in_wait_list: cl_uint,
event_wait_list: *const cl_event,
event: *mut cl_event,
) -> cl_int,
>;
pub type clEnqueueReleaseEGLObjectsKHR_fn = Option<
unsafe extern "C" fn(
command_queue: cl_command_queue,
num_objects: cl_uint,
mem_objects: *const cl_mem,
num_events_in_wait_list: cl_uint,
event_wait_list: *const cl_event,
event: *mut cl_event,
) -> cl_int,
>;
pub type clCreateEventFromEGLSyncKHR_fn = Option<
unsafe extern "C" fn(
context: cl_context,
sync: CLeglSyncKHR,
display: CLeglDisplayKHR,
errcode_ret: *mut cl_int,
) -> cl_event,
>;
#[cfg_attr(not(target_os = "macos"), link(name = "OpenCL"))]
#[cfg_attr(target_os = "macos", link(name = "OpenCL", kind = "framework"))]
extern "system" {
pub fn clCreateFromEGLImageKHR(
context: cl_context,
display: CLeglDisplayKHR,
image: CLeglImageKHR,
flags: cl_mem_flags,
properties: *const cl_egl_image_properties_khr,
errcode_ret: *mut cl_int,
) -> cl_mem;
pub fn clEnqueueAcquireEGLObjectsKHR(
command_queue: cl_command_queue,
num_objects: cl_uint,
mem_objects: *const cl_mem,
num_events_in_wait_list: cl_uint,
event_wait_list: *const cl_event,
event: *mut cl_event,
) -> cl_int;
pub fn clEnqueueReleaseEGLObjectsKHR(
command_queue: cl_command_queue,
num_objects: cl_uint,
mem_objects: *const cl_mem,
num_events_in_wait_list: cl_uint,
event_wait_list: *const cl_event,
event: *mut cl_event,
) -> cl_int;
pub fn clCreateEventFromEGLSyncKHR(
context: cl_context,
sync: CLeglSyncKHR,
display: CLeglDisplayKHR,
errcode_ret: *mut cl_int,
) -> cl_event;
}