blob: 8edc059f0c69a7990c98387f264d57a3da0dd797 [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();
}