blob: 89041340a443c87e91ef43042b0677f5af86547c [file] [log] [blame]
fn abs_7faa9e() {
var res : vec2<i32> = abs(vec2<i32>(1i));
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
abs_7faa9e();
return vec4<f32>();
}
@fragment
fn fragment_main() {
abs_7faa9e();
}
@compute @workgroup_size(1)
fn compute_main() {
abs_7faa9e();
}