blob: 091464d421694f5147456bb58a135913b6426cae [file] [log] [blame]
fn abs_005174() {
var res : vec3<f32> = abs(vec3<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
abs_005174();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
abs_005174();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
abs_005174();
}