blob: 60b2b6ca3a26b3492914ef05054be772ba543edc [file] [log] [blame]
fn abs_002533() {
var res : vec4<f32> = abs(vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
abs_002533();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
abs_002533();
}
[[stage(compute)]]
fn compute_main() {
abs_002533();
}