blob: d21d1004a256f0684e4fffdce59237a186e7a6fa [file] [log] [blame]
fn smoothstep_a80fff() {
const arg_0 = 2.0;
const arg_1 = 4.0;
const arg_2 = 3.0;
var res = smoothstep(arg_0, arg_1, arg_2);
}
@fragment
fn fragment_main() {
smoothstep_a80fff();
}
@compute @workgroup_size(1)
fn compute_main() {
smoothstep_a80fff();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
smoothstep_a80fff();
return out;
}