blob: 2db983e6d75652358b7911682da4a3e0b091ed88 [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) {
dan sinclair6cc183c2023-03-02 21:28:45 +00006 return param_0 * 57.29577951308232286465;
Ben Clayton5c99ed02022-01-05 20:11:00 +00007}
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