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