blob: 5a1756c8d67c5ee983ca88e81f72bb475d1b3a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
struct op_map_parm_ch {
float gamma;
int bottom;
int top;
int left;
int right;
};
struct op_map_parm {
struct op_map_parm_ch red;
struct op_map_parm_ch green;
struct op_map_parm_ch blue;
};
extern struct op_map_parm_ch op_map_nothing;
extern struct ida_op desc_map;
|