37 lines
672 B
Plaintext
37 lines
672 B
Plaintext
#include <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
void smoothstep_392c19() {
|
|
float2 arg_0 = float2(2.0f);
|
|
float2 arg_1 = float2(4.0f);
|
|
float2 arg_2 = float2(3.0f);
|
|
float2 res = smoothstep(arg_0, arg_1, arg_2);
|
|
}
|
|
|
|
struct tint_symbol {
|
|
float4 value [[position]];
|
|
};
|
|
|
|
float4 vertex_main_inner() {
|
|
smoothstep_392c19();
|
|
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_392c19();
|
|
return;
|
|
}
|
|
|
|
kernel void compute_main() {
|
|
smoothstep_392c19();
|
|
return;
|
|
}
|
|
|