ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/typemap
Revision: 1.12
Committed: Tue May 1 16:37:23 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.11: +34 -29 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 cl_bool T_BOOL
2 root 1.3 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 root 1.4 cl_double T_NV
11 root 1.3 cl_float T_NV
12     cl_half T_UV
13    
14 root 1.12 cl_bitfield T_UV
15     cl_device_fp_config T_UV
16     cl_device_exec_capabilities T_UV
17     cl_platform_info T_UV
18     cl_device_type T_UV
19     cl_device_info T_UV
20     cl_device_mem_cache_type T_UV
21     cl_device_local_mem_type T_UV
22 root 1.7 cl_device_partition_property_ext T_UV
23 root 1.12 cl_context_info T_UV
24     cl_command_queue_properties T_UV
25     cl_command_queue_info T_UV
26     cl_mem_flags T_UV
27     cl_mem_info T_UV
28     cl_mem_object_type T_UV
29     cl_map_flags T_UV
30     cl_image_info T_UV
31     cl_profiling_info T_UV
32     cl_channel_order T_UV
33     cl_channel_type T_UV
34     cl_event_info T_UV
35     cl_addressing_mode T_UV
36     cl_filter_mode T_UV
37     cl_sampler_info T_UV
38     cl_program_info T_UV
39     cl_program_build_info T_UV
40     cl_build_status T_IV
41     cl_kernel_info T_UV
42     cl_kernel_work_group_info T_UV
43     cl_command_type T_UV
44 root 1.3
45 root 1.9 cl_context_properties * context_properties
46    
47 root 1.10 cl_GLenum T_UV
48     cl_GLint T_IV
49     cl_GLuint T_UV
50    
51     cl_gl_object_type T_UV
52     cl_gl_texture_info T_UV
53     cl_gl_platform_info T_UV
54     cl_gl_context_info T_UV
55    
56 root 1.11 OpenCL::Platform clobj
57     OpenCL::Device clobj
58     OpenCL::Context clobj
59     OpenCL::Queue clobj
60     OpenCL::Memory clobj
61     OpenCL::Buffer clobj
62     OpenCL::BufferObj clobj
63     OpenCL::Image clobj
64     OpenCL::Image2D clobj
65     OpenCL::Image3D clobj
66     OpenCL::Memory_ornull clobj_ornull
67     OpenCL::Buffer_ornull clobj_ornull
68     OpenCL::Image_ornull clobj_ornull
69     OpenCL::Image2D_ornull clobj_ornull
70     OpenCL::Image3D_ornull clobj_ornull
71     OpenCL::Sampler clobj
72     OpenCL::Program clobj
73     OpenCL::Kernel clobj
74     OpenCL::Event clobj
75     OpenCL::UserEvent clobj
76 root 1.3
77 root 1.12 OpenCL::Mapped mapped
78    
79 root 1.5 FUTURE future
80    
81 root 1.3 INPUT
82    
83 root 1.5 future
84     if (SvOK ($arg))
85     croak (\"$pname argument '$var' is reserved for future extensions, it must be missing or undef in this implementation, in call\");
86    
87 root 1.9 context_properties
88     $var = SvCONTEXTPROPERTIES (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, 0, 0)
89    
90 root 1.11 clobj
91     $var = ($type)SvCLOBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${ntype}\")
92 root 1.3
93 root 1.11 clobj_ornull
94     $var = SvOK ($arg) ? ($type)SvCLOBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${\substr $ntype, 0, -7}\") : 0
95 root 1.3
96 root 1.12 mapped
97     $var = SvMAPPED ($arg);
98