blob: e48b625db43e268336840b741d42db83dd8e67d1 [file] [log] [blame]
enable f16;
fn smoothstep_12c031() {
var res : vec2<f16> = smoothstep(vec2<f16>(1.0h), vec2<f16>(1.0h), vec2<f16>(1.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();
}