blob: 5ea76a82b7a625cc0211faef4538b12ca6516d3c [file] [log] [blame]
fn smoothstep_aad1db() {
var res : vec3<f32> = smoothstep(vec3<f32>(), vec3<f32>(), vec3<f32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
smoothstep_aad1db();
return vec4<f32>();
}
@fragment
fn fragment_main() {
smoothstep_aad1db();
}
@compute @workgroup_size(1)
fn compute_main() {
smoothstep_aad1db();
}