ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/typemap
Revision: 1.5
Committed: Thu Nov 17 02:10:39 2011 UTC (12 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-0_14, rel-0_15
Changes since 1.4: +7 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 cl_bool T_BOOL
2 cl_char T_IV
3 cl_uchar T_UV
4 cl_short T_IV
5 cl_ushort T_UV
6 cl_int T_IV
7 cl_uint T_UV
8 cl_long T_IV
9 cl_ulong T_UV
10 cl_double T_NV
11 cl_float T_NV
12 cl_half T_UV
13
14 cl_platform_info T_IV
15 cl_device_type T_IV
16 cl_device_info T_IV
17 cl_context_info T_IV
18 cl_command_queue_properties T_IV
19 cl_command_queue_info T_IV
20 cl_mem_flags T_IV
21 cl_mem_info T_IV
22 cl_mem_object_type T_IV
23 cl_channel_order T_UV
24 cl_channel_type T_UV
25 cl_event_info T_IV
26 cl_addressing_mode T_IV
27 cl_filter_mode T_IV
28 cl_sampler_info T_IV
29 cl_program_info T_IV
30 cl_program_build_info T_IV
31 cl_kernel_info T_IV
32
33 OpenCL::Platform ptrobj
34 OpenCL::Device ptrobj
35 OpenCL::Context ptrobj
36 OpenCL::Queue ptrobj
37 OpenCL::Memory ptrobj
38 OpenCL::Buffer ptrobj
39 OpenCL::Image ptrobj
40 OpenCL::Image2D ptrobj
41 OpenCL::Image3D ptrobj
42 OpenCL::Memory_ornull ptrobj_ornull
43 OpenCL::Buffer_ornull ptrobj_ornull
44 OpenCL::Image_ornull ptrobj_ornull
45 OpenCL::Image2D_ornull ptrobj_ornull
46 OpenCL::Image3D_ornull ptrobj_ornull
47 OpenCL::Sampler ptrobj
48 OpenCL::Program ptrobj
49 OpenCL::Kernel ptrobj
50 OpenCL::Event ptrobj
51 OpenCL::UserEvent ptrobj
52
53 FUTURE future
54
55 INPUT
56
57 future
58 if (SvOK ($arg))
59 croak (\"$pname argument '$var' is reserved for future extensions, it must be missing or undef in this implementation, in call\");
60
61 ptrobj
62 $var = ($type)SvPTROBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${ntype}\")
63
64 ptrobj_ornull
65 $var = SvOK ($arg) ? ($type)SvPTROBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${\substr $ntype, 0, -7}\") : 0
66