summaryrefslogtreecommitdiff
path: root/kernels/builtin_convert_sat.cl
blob: 1485f1dc89bb6b9c4d132872e54b02824185f632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#define DEF(DSTTYPE, SRCTYPE) \
  kernel void builtin_convert_ ## SRCTYPE ## _to_ ## DSTTYPE ## _sat(global SRCTYPE *src, global DSTTYPE *dst) { \
  int i = get_global_id(0); \
  dst[i] = convert_ ## DSTTYPE ## _sat(src[i]); \
}

DEF(char, uchar);
DEF(char, short);
DEF(char, ushort);
DEF(char, int);
DEF(char, uint);
DEF(char, long);
DEF(char, ulong);
DEF(char, float);
DEF(uchar, char);
DEF(uchar, short);
DEF(uchar, ushort);
DEF(uchar, int);
DEF(uchar, uint);
DEF(uchar, long);
DEF(uchar, ulong);
DEF(uchar, float);
DEF(short, ushort);
DEF(short, int);
DEF(short, uint);
DEF(short, long);
DEF(short, ulong);
DEF(short, float);
DEF(ushort, short);
DEF(ushort, int);
DEF(ushort, uint);
DEF(ushort, long);
DEF(ushort, ulong);
DEF(ushort, float);
DEF(int, uint);
DEF(int, long);
DEF(int, ulong);
DEF(int, float);
DEF(uint, int);
DEF(uint, long);
DEF(uint, ulong);
DEF(uint, float);
DEF(long, ulong);
DEF(long, float);
DEF(ulong, long);
DEF(ulong, float);
#undef DEF