2022-08-05 15:15:17 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
|
|
|
|
half2 tint_degrees(half2 param_0) {
|
2023-02-28 14:41:45 +00:00
|
|
|
return param_0 * 57.295779513082323;
|
2022-08-05 15:15:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void degrees_f59715() {
|
2022-11-10 00:32:12 +00:00
|
|
|
half2 arg_0 = half2(1.0h);
|
2022-08-05 15:15:17 +00:00
|
|
|
half2 res = tint_degrees(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 value [[position]];
|
|
|
|
};
|
|
|
|
|
|
|
|
float4 vertex_main_inner() {
|
|
|
|
degrees_f59715();
|
|
|
|
return float4(0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
|
|
float4 const inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment void fragment_main() {
|
|
|
|
degrees_f59715();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void compute_main() {
|
|
|
|
degrees_f59715();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|