2022-08-05 15:15:17 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2023-03-06 18:25:08 +00:00
|
|
|
void degrees_f59715(device half2* const tint_symbol_1) {
|
2022-11-21 18:00:01 +00:00
|
|
|
half2 res = half2(57.3125h);
|
2023-03-06 18:25:08 +00:00
|
|
|
*(tint_symbol_1) = res;
|
2022-08-05 15:15:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 value [[position]];
|
|
|
|
};
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
float4 vertex_main_inner(device half2* const tint_symbol_2) {
|
|
|
|
degrees_f59715(tint_symbol_2);
|
2022-08-05 15:15:17 +00:00
|
|
|
return float4(0.0f);
|
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
vertex tint_symbol vertex_main(device half2* tint_symbol_3 [[buffer(0)]]) {
|
|
|
|
float4 const inner_result = vertex_main_inner(tint_symbol_3);
|
2022-08-05 15:15:17 +00:00
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
fragment void fragment_main(device half2* tint_symbol_4 [[buffer(0)]]) {
|
|
|
|
degrees_f59715(tint_symbol_4);
|
2022-08-05 15:15:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-06 18:25:08 +00:00
|
|
|
kernel void compute_main(device half2* tint_symbol_5 [[buffer(0)]]) {
|
|
|
|
degrees_f59715(tint_symbol_5);
|
2022-08-05 15:15:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|