blob: 15260cd8614e889d4b8f2f63edd36b18fb6f680e [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void smoothstep_6e7a74() {
half3 arg_0 = half3(2.0h);
half3 arg_1 = half3(4.0h);
half3 arg_2 = half3(3.0h);
half3 res = smoothstep(arg_0, arg_1, arg_2);
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
smoothstep_6e7a74();
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() {
smoothstep_6e7a74();
return;
}
kernel void compute_main() {
smoothstep_6e7a74();
return;
}