blob: 7e139d1f43f6a5b253af04976a290d37c67bcee2 [file] [log] [blame]
fn smoothStep_5f615b() {
var res : vec4<f32> = smoothStep(vec4<f32>(), vec4<f32>(), vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
smoothStep_5f615b();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
smoothStep_5f615b();
}
[[stage(compute)]]
fn compute_main() {
smoothStep_5f615b();
}