blob: 0d94183d2e501f343f9776118991d63fffc9d13c [file] [log] [blame]
Alexandre Lision7c6f4a62013-09-05 13:27:01 -04001autogen definitions utils.tpl;
2
3float_type = {
4 name = float ;
5 };
6
7float_type = {
8 name = double ;
9 };
10
11/*----------------------------------*/
12
13io_type = {
14 io_element = short ;
15 format_str = "\"% d\"" ;
16 };
17
18io_type = {
19 io_element = int ;
20 format_str = "\"% d\"" ;
21 };
22
23io_type = {
24 io_element = float ;
25 format_str = "\"% g\"" ;
26 };
27
28io_type = {
29 io_element = double ;
30 format_str = "\"% g\"" ;
31 };
32
33read_op = {
34 op_element = read ;
35 count_name = items ;
36 };
37
38read_op = {
39 op_element = readf ;
40 count_name = frames ;
41 };
42
43write_op = {
44 op_element = write ;
45 count_name = items ;
46 };
47
48write_op = {
49 op_element = writef ;
50 count_name = frames ;
51 };
52