blob: 5847af7f7e44ce287c2127d75fe4e3c6f922d821 [file] [log] [blame]
fn abs_c3321c() {
const arg_0 = vec3(1);
var res = abs(arg_0);
}
@fragment
fn fragment_main() {
abs_c3321c();
}
@compute @workgroup_size(1)
fn compute_main() {
abs_c3321c();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
abs_c3321c();
return out;
}