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