blob: e9cb96a2c1b8a68fc19f03600912e43f24fb5e78 [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), workgroup_size(1)]]
fn compute_main() {
abs_002533();
}