blob: 0675fff80c9044ed831de8cf9cc4f70238fffe16 [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();
}