ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/typemap
Revision: 1.15
Committed: Fri May 4 14:49:42 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.14: +1 -0 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 root 1.15 cl_kernel_arg_info T_UV
44 root 1.12 cl_command_type T_UV
45 root 1.14 cl_mem_migration_flags T_UV
46 root 1.3
47 root 1.9 cl_context_properties * context_properties
48    
49 root 1.10 cl_GLenum T_UV
50     cl_GLint T_IV
51     cl_GLuint T_UV
52    
53     cl_gl_object_type T_UV
54     cl_gl_texture_info T_UV
55     cl_gl_platform_info T_UV
56     cl_gl_context_info T_UV
57    
58 root 1.13 OpenCL::Platform clobj_ni
59 root 1.14 OpenCL::Device clobj
60     OpenCL::SubDevice clobj_ni
61 root 1.13 OpenCL::Context clobj_ni
62     OpenCL::Queue clobj_ni
63 root 1.11 OpenCL::Memory clobj
64     OpenCL::Buffer clobj
65 root 1.13 OpenCL::BufferObj clobj_ni
66 root 1.11 OpenCL::Image clobj
67     OpenCL::Memory_ornull clobj_ornull
68     OpenCL::Buffer_ornull clobj_ornull
69     OpenCL::Image_ornull clobj_ornull
70 root 1.13 OpenCL::Sampler clobj_ni
71     OpenCL::Program clobj_ni
72     OpenCL::Kernel clobj_ni
73 root 1.11 OpenCL::Event clobj
74 root 1.13 OpenCL::UserEvent clobj_ni
75 root 1.3
76 root 1.12 OpenCL::Mapped mapped
77    
78 root 1.5 FUTURE future
79    
80 root 1.3 INPUT
81    
82 root 1.5 future
83     if (SvOK ($arg))
84     croak (\"$pname argument '$var' is reserved for future extensions, it must be missing or undef in this implementation, in call\");
85    
86 root 1.9 context_properties
87     $var = SvCONTEXTPROPERTIES (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, 0, 0)
88    
89 root 1.11 clobj
90     $var = ($type)SvCLOBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${ntype}\")
91 root 1.3
92 root 1.13 clobj_ni
93     $var = ($type)SvCLOBJ_ni (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, stash_${(my $x = $ntype) =~ s/OpenCL:://; \lc $x})
94    
95 root 1.11 clobj_ornull
96     $var = SvOK ($arg) ? ($type)SvCLOBJ (${$ALIAS?\q[GvNAME(CvGV(cv))]:\qq[\"$pname\"]}, \"$var\", $arg, \"${\substr $ntype, 0, -7}\") : 0
97 root 1.3
98 root 1.12 mapped
99     $var = SvMAPPED ($arg);
100