1/* Used with the ocl_types.cl test */
2
3// image1d_t
4typedef image1d_t img1d_t;
5
6// image1d_array_t
7typedef image1d_array_t img1darr_t;
8
9// image1d_buffer_t
10typedef image1d_buffer_t img1dbuff_t;
11
12// image2d_t
13typedef image2d_t img2d_t;
14
15// image2d_array_t
16typedef image2d_array_t img2darr_t;
17
18// image3d_t
19typedef image3d_t img3d_t;
20
21// sampler_t
22typedef sampler_t smp_t;
23
24// event_t
25typedef event_t evt_t;
26