blob: f8b04866e9eb9511c12f9f418403d515c78f4835 [file] [log] [blame]
enable f16;
fn smoothstep_6e7a74() {
var arg_0 = vec3<f16>(1.0h);
var arg_1 = vec3<f16>(1.0h);
var arg_2 = vec3<f16>(1.0h);
var res : vec3<f16> = smoothstep(arg_0, arg_1, arg_2);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
smoothstep_6e7a74();
return vec4<f32>();
}
@fragment
fn fragment_main() {
smoothstep_6e7a74();
}
@compute @workgroup_size(1)
fn compute_main() {
smoothstep_6e7a74();
}