blob: 501275c9c8d576ec86fc8693f962d4d3ca7e0639 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
half3 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);
return res;
}
fragment void fragment_main(device packed_half3* tint_symbol_1 [[buffer(0)]]) {
*(tint_symbol_1) = packed_half3(smoothstep_6e7a74());
return;
}
kernel void compute_main(device packed_half3* tint_symbol_2 [[buffer(0)]]) {
*(tint_symbol_2) = packed_half3(smoothstep_6e7a74());
return;
}
struct VertexOutput {
float4 pos;
half3 prevent_dce;
};
struct tint_symbol {
half3 prevent_dce [[user(locn0)]] [[flat]];
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = smoothstep_6e7a74();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
wrapper_result.prevent_dce = inner_result.prevent_dce;
return wrapper_result;
}