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