blob: cc92a173f82cc06d93c1a53e6a0d5bd505f4c54e [file] [log] [blame]
fn abs_1ce782() {
var res : vec4<u32> = abs(vec4<u32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
abs_1ce782();
return vec4<f32>();
}
@fragment
fn fragment_main() {
abs_1ce782();
}
@compute @workgroup_size(1)
fn compute_main() {
abs_1ce782();
}