blob: 54fc56ab9ec29a449a21241c6d22a680c2f2d902 [file] [log] [blame]
fn abs_1ce782() {
var res : vec4<u32> = abs(vec4<u32>(1u));
}
@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();
}