blob: cb9ce57a47ecf91f06e8d38ff865ae3c9b751ce0 [file] [log] [blame]
Corentin Wallezb32c22c2021-07-26 09:12:57 +00001#include <metal_stdlib>
2
3using namespace metal;
Ben Clayton5c99ed02022-01-05 20:11:00 +00004
5float tint_degrees(float param_0) {
6 return param_0 * 57.295779513082322865;
7}
8
Corentin Wallezb32c22c2021-07-26 09:12:57 +00009void main_1() {
10 float a = 0.0f;
11 float b = 0.0f;
12 a = 42.0f;
13 float const x_11 = a;
Ben Clayton5c99ed02022-01-05 20:11:00 +000014 b = tint_degrees(x_11);
Corentin Wallezb32c22c2021-07-26 09:12:57 +000015 return;
16}
17
18kernel void tint_symbol() {
19 main_1();
20 return;
21}
22