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