ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/OpenCL/typemap
Revision: 1.17
Committed: Sat May 5 02:45:38 2012 UTC (12 years ago) by root
Branch: MAIN
CVS Tags: rel-1_0, rel-1_01, HEAD
Changes since 1.16: +4 -10 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.16 cl_kernel_arg_address_qualifier T_UV
45     cl_kernel_arg_access_qualifier T_UV
46     cl_kernel_arg_type_qualifier T_UV
47 root 1.12 cl_command_type T_UV
48 root 1.14 cl_mem_migration_flags T_UV
49 root 1.3
50 root 1.9 cl_context_properties * context_properties
51    
52 root 1.10 cl_GLenum T_UV
53     cl_GLint T_IV
54     cl_GLuint T_UV
55    
56     cl_gl_object_type T_UV
57     cl_gl_texture_info T_UV
58     cl_gl_platform_info T_UV
59     cl_gl_context_info T_UV
60    
61 root 1.13 OpenCL::Platform clobj_ni
62 root 1.14 OpenCL::Device clobj
63     OpenCL::SubDevice clobj_ni
64 root 1.13 OpenCL::Context clobj_ni
65     OpenCL::Queue clobj_ni
66 root 1.11 OpenCL::Memory clobj
67     OpenCL::Buffer clobj
68 root 1.13 OpenCL::BufferObj clobj_ni
69 root 1.11 OpenCL::Image clobj
70     OpenCL::Memory_ornull clobj_ornull
71     OpenCL::Buffer_ornull clobj_ornull
72     OpenCL::Image_ornull clobj_ornull
73 root 1.13 OpenCL::Sampler clobj_ni
74     OpenCL::Program clobj_ni
75     OpenCL::Kernel clobj_ni
76 root 1.11 OpenCL::Event clobj
77 root 1.13 OpenCL::UserEvent clobj_ni
78 root 1.3
79 root 1.12 OpenCL::Mapped mapped
80    
81 root 1.3 INPUT
82    
83 root 1.9 context_properties
84 root 1.17 $var = SvCONTEXTPROPERTIES (cv, \"$var\", $arg, 0, 0)
85 root 1.9
86 root 1.11 clobj
87 root 1.17 $var = ($type)SvCLOBJ (cv, \"$var\", $arg, \"${ntype}\")
88 root 1.3
89 root 1.13 clobj_ni
90 root 1.17 $var = ($type)SvCLOBJ_ni (cv, \"$var\", $arg, stash_${(my $x = $ntype) =~ s/OpenCL:://; \lc $x})
91 root 1.13
92 root 1.11 clobj_ornull
93 root 1.17 $var = SvOK ($arg) ? ($type)SvCLOBJ (cv, \"$var\", $arg, \"${\substr $ntype, 0, -7}\") : 0
94 root 1.3
95 root 1.12 mapped
96     $var = SvMAPPED ($arg);
97