blob: 1b224106fd0368eceb1e8f2f017e2734af2eb020 [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)]]
fn compute_main() {
smoothStep_658be3();
}