blob: 1aa07fc374a9af7b81dd11b2efa4c7872a1e0a02 [file] [log] [blame]
enable f16;
fn smoothstep_12c031() {
var res : vec2<f16> = smoothstep(vec2<f16>(2.0h), vec2<f16>(4.0h), vec2<f16>(3.0h));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
smoothstep_12c031();
return vec4<f32>();
}
@fragment
fn fragment_main() {
smoothstep_12c031();
}
@compute @workgroup_size(1)
fn compute_main() {
smoothstep_12c031();
}